Gauge for WPF
Linear Gauge 機能
Gauges for WPF の使用 > Linear Gauge 機能

The LinearGauge control uses a linear pointer to show a value along a linear scale. You can set the value across the linear frame using the Value property to display the value you want to display.
You can also set the Min and Max properties of the Linear Gauge to mark the minimum value and maximum gauge values.

<c1:C1LinearGauge Name="linearGauge" Value="50"  Min="10" Max="100" TextVisibility="All" Width="780" Height="129"/>
linearGauge.Min = 10;
linearGauge.Max = 100;

Further, you can also set the direction of the Linear Gauge using the Direction property to create vertical Linear Gauge. For more information about gauge direction, see Direction.