Wijmo UI for the Web
tickMajor Field

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
Javascript (Usage) 
var value; // Type: gauge_tick
value = jQuery.wijmo.wijradialgauge.options.tickMajor;
Javascript (Specification) 
var tickMajor : gauge_tick;
Example
// This example renders the major tick marks as slightly larger purple filled diamonds with blue outlines, at an interval
// of once every 20 numbers
$(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
        }
    });
});
Browser Compatibility
7
5
5

See Also

Reference

options type

 

 


© 2013 All Rights Reserved.

Send comments on this topic.