LinearGauge for ASP.NET Web Forms
Concepts

C1LinearGauge uses a linear pointer to show a value along a linear scale. The value is represented by a Value property and the range is defined by the Min and Max properties. The C1LinearGauge control appears similar to a typical thermometer:

 

Creating and using a C1LinearGauge control typically involves the following steps:

  1. Create the C1LinearGauge control and set its main properties: C1Gauge.MinC1Gauge.Max, and C1LinearGauge.Orientation.
  2. Adding C1Gauge.TickMajor and C1Gauge.TickMinor decorators to show the scale and GaugeLabel to customize the label.
  3. Optionally adding GaugelRange decorators to highlight parts of the scale. Ranges are typically used to indicate ranges that are too low, acceptable, or too high. Ranges can also be dynamic, moving automatically when the C1Gauge.Value property changes.
  4. Optionally customizing gauge elements with templates.
  5. Setting the C1Gauge.Value property to display the value you want to show.
See Also