Angular CircularGauge - TwoColorNeedle
An object that defines a gauge indicator of the twoColorNeedle type.
jQuery
$(function() {
$("#circularGaugeContainer").dxCircularGauge({
value: 40,
valueIndicator: { // or subvalueIndicator
type: "twoColorNeedle",
// ...
// The rest of the indicator options go here
// ...
}
});
});<div id="circularGaugeContainer"></div>
Angular
<dx-circular-gauge [value]="40">
<dxo-value-indicator <!-- or dxo-subvalue-indicator -->
type="twoColorNeedle"
<!-- ... -->
<!-- The rest of the indicator options go here -->
<!-- ... -->>
</dxo-value-indicator>
</dx-circular-gauge>
import { DxCircularGaugeModule } from "devextreme-angular";
// ...
export class AppComponent {
// ...
}
@NgModule({
imports: [
// ...
DxCircularGaugeModule
],
// ...
})ASP.NET MVC Controls
@(Html.DevExtreme().CircularGauge()
.ID("circularGauge")
.Value(40)
.ValueIndicator(vi => vi // or .SubvalueIndicator
.Type(GaugeIndicatorType.TwoColorNeedle)
// ...
// The rest of the indicator options go here
// ...
)
)beginAdaptingAtRadius
Specifies a radius small enough for the indicator to begin adapting.
When adapting, the indicator adjusts its parts and surroundings proportionally to the changing widget size. The adjustments affect the incidator's indent from the center, the offset from the scale, and the spindle's size and gap.
indentFromCenter
Specifies the distance between the needle and the center of a gauge for the indicator of a needle-like type.
palette
Sets the palette to be used to colorize indicators differently.
This option accepts either the name of a predefined palette or an array of colors. The array can include the following colors:
- Hexadecimal colors
- RGB colors
- RGBA colors
- Predefined/cross-browser color names
- Predefined SVG colors
Use the VizPalette enum to specify this option when the widget is used as an ASP.NET MVC Control. This enum accepts the following values: Default, SoftPastel, HarmonyLight, Pastel, Bright, Soft, Ocean, Vintage, Violet, Carmine, DarkMoon, SoftBlue, DarkViolet, and GreenMist.
secondColor
Specifies the second color for the indicator of the twoColorNeedle type.
When you use a twoColorNeedle indicator, define the colors for it using the color and secondColor options. The color option sets the color for the base of the needle. The secondColor option sets the color for the tip of the needle.
In addition, you can specify the ratio between the main and the second color using the secondFraction option.
secondFraction
Specifies the length of a twoNeedleColor type indicator tip as a percentage.
spindleGapSize
Specifies the inner diameter in pixels, so that the spindle has the shape of a ring.
Set this property to 0 so that the spindle has the shape of a circle.