jQuery.wijmo.wijradialgauge Namespace > options type : labels Field |
Sets all of the appearance options of the numeric labels that appear around the edge of the gauge.
Javascript (Usage) | |
---|---|
var value; // Type: gauge_label value = jQuery.wijmo.wijradialgauge.options.labels; |
Javascript (Specification) | |
---|---|
|
// 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" } } }); });