X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/docs/api/Ext.chart.axis.Gauge.html diff --git a/docs/api/Ext.chart.axis.Gauge.html b/docs/api/Ext.chart.axis.Gauge.html new file mode 100644 index 00000000..a8a269f6 --- /dev/null +++ b/docs/api/Ext.chart.axis.Gauge.html @@ -0,0 +1,67 @@ +
Hierarchy
Ext.chart.axis.AbstractExt.chart.axis.Gauge
Gauge Axis is the axis to be used with a Gauge series. The Gauge axis
+displays numeric data from an interval defined by the minimum
, maximum
and
+step
configuration properties. The placement of the numeric data can be changed
+by altering the margin
option that is set to 10
by default.
A possible configuration for this axis would look like:
+ +axes: [{
+ type: 'gauge',
+ position: 'gauge',
+ minimum: 0,
+ maximum: 100,
+ steps: 10,
+ margin: 7
+}],
+
+(optional) the offset positioning of the tick marks and labels in pixels. Default's 10.
+(optional) the offset positioning of the tick marks and labels in pixels. Default's 10.
+(required) the maximum value of the interval to be displayed in the axis.
+(required) the maximum value of the interval to be displayed in the axis.
+(required) the minimum value of the interval to be displayed in the axis.
+(required) the minimum value of the interval to be displayed in the axis.
+