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

Type: wijmo.gauge.gauge_tick

Sets appearance options for the major tick marks that appear next to the numeric labels around the face of the gauge.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  wijmo.gauge.gauge_tick
    returnsValue = $(".selector").wijlineargauge("option", "tickMajor");
    
    // Set value
    var newValue; // Type:  wijmo.gauge.gauge_tick
    $(".selector").wijlineargauge("option", "tickMajor", newValue);
        
});
var tickMajor : gauge_tick;
Example
$(document).ready(function () {
       $("#radialgauge1").wijradialgauge({
        value: 90,
        tickMajor: {
        position: "inside",
        style: { fill: "purple", stroke: "#1E395B"},
        factor: 2.5,
        marker: 'diamond',
        visible: true,
        offset: 27,
        interval: 20
        }
    });
});
See Also

Reference

options type
wijlineargauge jQuery Widget