Wijmo UI for the Web
tickMinor Field

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
Javascript (Usage) 
var value; // Type: gauge_tick
value = jQuery.wijmo.wijradialgauge.options.tickMinor;
Javascript (Specification) 
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
        }
    });
});
Browser Compatibility
7
5
5

See Also

Reference

options type

 

 


© 2013 All Rights Reserved.

Send comments on this topic.