ScalingSet can be used to dynamically add units to the scale label values.
Type: String
Namespace: Visifire.Gauges
Assembly:
|
Silverlight: |
SLVisifire.Gauges(in SLVisifire.Gauges.dll) |
|
WPF: |
WPFVisifire.Gauges(in WPFVisifire.Gauges.dll) |
This attribute applies to:
Example 1:
Suppose you would like the ScaleLabels to take KB, MB, GB depending on the Value.
1024 = 1KB
1024K = 1MB
1024M = 1GB
The scale set string is: "1024,KB;1024,MB;1024,GB"
|
Max value in Scale |
After Scaling |
|
6000000000 |
5.6GB |
Syntax:
<vg:Gauge.LinearScales>
<vg:LinearScale ScalingSet="1024,KB;1024,MB;1024,GB"/>
</vg:Gauge.LinearScales>
Below is the gauge after setting ScalingSet property in LinearScale.
