jQuery.wijmo.wijgauge Namespace > options type : islogarithmic Field |
Default value: false
The islogarithmic option, inherited from the jquery.wijmo.wijgauge.js base class, indicates whether to use logarithmic scaling for gauge label numeric values.
Javascript (Usage) | |
---|---|
var value; // Type: boolean value = jQuery.wijmo.wijgauge.options.islogarithmic; |
Javascript (Specification) | |
---|---|
var islogarithmic : boolean; |
// The following code creates a gauge with the number labels and tick marks arranged as in the following image. $(document).ready(function () { $("#radialgauge1").wijradialgauge({ value: 90, islogarithmic: true }); });