scale
Specifies the gauge's scale options.
To divide a scale, set its startValue and endValue properties. The scale's major and minor ticks will be calculated automatically. Major ticks will be shown by default. To show minor ticks, set their visible property to true. You can set custom major and minor tick intervals, show custom major and minor ticks, and format tick labels. These and other scale options are available in the scale configuration object.
allowDecimals
Specifies whether to allow decimal values on the scale. When false, the scale contains integer values only.
customMinorTicks
Specifies an array of custom minor ticks.
If you need to show minor ticks, set the visible property to true. If you need to display a custom ticks set, you can configure it using the customMinorTicks property. Assign an array of custom tick values to this property.
customTicks
Specifies an array of custom major ticks.
If you set the start and end scale values, major ticks will automatically be calculated and displayed. If you need to add intermediate (minor) ticks between the major ticks, set the visible property of the minorTick configuration object to true. If you need to display a custom ticks set, you can configure it using the customTicks property. Assign an array of custom major tick values to this property.
hideFirstLabel

Use the hideFirstOrLast option instead.
Specifies whether or not to hide the first scale label.
hideFirstTick

Use the hideFirstOrLast option instead.
Specifies whether or not to hide the first major tick on the scale.
hideLastLabel

Use the hideFirstOrLast option instead.
Specifies whether or not to hide the last scale label.
hideLastTick

Use the hideFirstOrLast option instead.
Specifies whether or not to hide the last major tick on the scale.
horizontalOrientation
Specifies the orientation of scale ticks. Applies only if the geometry.orientation option is "vertical".
This option specifies the orientation of scale ticks relative to an invisible scale line.
When using the widget as an ASP.NET MVC Control, specify this option using the HorizontalAlignment
enum. This enum accepts the following values: Left
, Center
and Right
.
label
Specifies common options for scale labels.
Scale labels represent textual values for major scale ticks. The label object exposes properties that allow you to specify custom text for scale labels and properties to change the text font.
majorTick

Use the tick option instead.
Specifies options of the gauge's major ticks.
Major ticks are calculated automatically based on the scale's startValue and endValue property values. They are visible by default. You can set a custom major tick interval or add custom major ticks using the tickInterval and customTickValues properties respectively. To specify the visibility of major ticks, use the visible and showCalculatedTicks properties. You can also specify the length, width and color of the major ticks using corresponding properties.
minorTick
Specifies options of the gauge's minor ticks.
Major and minor ticks are calculated automatically based on the scale's startValue and endValue property values. Major ticks are made visible by default. You can make minor tick visible as well, using their visible property. In addition, you can set a custom minor tick interval or add custom minor ticks using the tickInterval and customTickValues properties respectively. You can also specify the length, width and color of the minor ticks using corresponding properties.
minorTickInterval
Specifies an interval between minor ticks.
You can also add custom minor ticks by manually assigning an array of their values to the customTicks property.
tick
Specifies options of the gauge's major ticks.
Major ticks are calculated automatically based on the scale's startValue and endValue property values. They are visible by default. You can set a custom major tick interval or a custom major ticks set using the tickInterval and customTicks properties respectively. To specify the visibility of major ticks, use the visible property. You can also specify the length, width and color of the major ticks using corresponding properties.
tickInterval
Specifies an interval between major ticks.
If this property is not set, major ticks are arranged automatically.
verticalOrientation
Specifies the orientation of scale ticks. Applies only if the geometry.orientation option is "horizontal".
This option specifies the orientation of scale ticks relative to an invisible scale line.
When using the widget as an ASP.NET MVC Control, specify this option using the VerticalAlignment
enum. This enum accepts the following values: Top
, Center
and Bottom
.