jQuery.wijmo.wijradialgauge Namespace > options type : tickMinor Field |
Sets appearance options for the minor tick marks that appear between the numeric labels around the face of the gauge, indicating numeric values between the major tick marks.
Javascript (Usage) | |
---|---|
var value; // Type: gauge_tick value = jQuery.wijmo.wijradialgauge.options.tickMinor; |
Javascript (Specification) | |
---|---|
|
// This example renders the minor tick marks as purple crosses, at an interval of once every 2 numbers $(document).ready(function () { $("#radialgauge1").wijradialgauge({ value: 90, tickMinor: { position: "inside", style: { fill: "#1E395B", stroke: "purple"}, factor: 2, marker: 'cross', visible: true, offset: 30, interval: 2 } }); });