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

Type: wijmo.gauge.gauge_tick

A value that provides information for the minor tick.

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