Wijmo UI for the Web
labels Field

Type: wijmo.gauge.gauge_label

Sets all of the appearance options of the numeric labels that appear around the edge of the gauge.

Syntax
Javascript (Usage) 
var value; // Type: gauge_label
value = jQuery.wijmo.wijradialgauge.options.labels;
Javascript (Specification) 
var labels : gauge_label;
Example
// This example sets the color for the labels to purple, and the font to 14 point, bold, Times New Roman.
   $(document).ready(function () {
       $("#radialgauge1").wijradialgauge({
        value: 90,
        labels: {
        style: {
            fill: "purple",
                "font-size": "14pt",
                "font-weight": "bold",
                "font-family": "Times New Roman"
            }
        }
    });
});
Browser Compatibility
7
5
5

See Also

Reference

options type

 

 


© 2013 All Rights Reserved.

Send comments on this topic.