First rough information from Sebi:
so regarding SwatGauge attributes:
// comma separated values of pointer fields
filterValues
// comma separated values of pointer colors
pointerColors
// comma separated values of pointer sizes
pointerSizes
// semicolon separated values of ranges, with comma separated values for range options for each range
ranges
// The Type of Gauge: either linear or radial
GaugeType
Some other attributes:
minorUnit
majorUnit
startAngle
endAngle
max
minwith
example values:
minorUnit: 5, // minor unit
majorUnit: 10, // major unit
startAngle: -30, // start angle for radial gauge
endAngle: 210, // end angle for radial gauge
max: 100,
min: 0,
pointerSizes: '0.15,0.1', // this will supply pointer sizes
pointerColors: 'red,green,orange,blue', // this will supply colors for pointers, in fieldvalues order (word or hex value)
also the control is based on https://demos.telerik.com/kendo-ui/radial-gauge/index kendoui
https://www.telerik.com/kendo-angular-ui/components/gauges/lineargauge/
ranges example: https://www.telerik.com/kendo-angular-ui/components/gauges/lineargauge/scale-ranges/
Back to Documentation
Back to Home Page