Default value: 10
The logarithmicBase option, inherited from the jquery.wijmo.wijgauge.js base class, indicates the logarithmic base to use if the islogarithmic option is set to true. The logarithmic base is the number to raise to produce the exponent.
Syntax
$(function () {
// Get value
var returnsValue; // Type: number
returnsValue = $(".selector").wijlineargauge("option", "logarithmicBase");
// Set value
var newValue; // Type: number
$(".selector").wijlineargauge("option", "logarithmicBase", newValue);
});
var logarithmicBase : number;
See Also