Wijmo UI for the Web
tickMinor Option
wijmo.gauge.wijradialgauge Namespace > options type : tickMinor Option

Type: wijmo.gauge.gauge_tick

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.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  wijmo.gauge.gauge_tick
    returnsValue = $(".selector").wijradialgauge("option", "tickMinor");
    
    // Set value
    var newValue; // Type:  wijmo.gauge.gauge_tick
    $(".selector").wijradialgauge("option", "tickMinor", newValue);
        
});
var tickMinor : gauge_tick;
Example
// 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
        }
    });
});
See Also

Reference

options type
wijradialgauge jQuery Widget