dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
11 lines (9 loc) • 339 B
JavaScript
define(["dojo/_base/declare", "dojox/widget/_Invalidating"], function(declare, _Invalidating){
return declare("dojox.dgauges.IndicatorBase", _Invalidating, {
// summary:
// The base class for indicators. Basically, an indicator is used to render a value.
// value: Number
// The value of this indicator.
value: null
});
});