New to Telerik UI for WinFormsStart a free 30-day trial

Properties

Updated over 6 months ago
PropertyDescription
RangeEndSpecifies the gauge's end.
RangeStartSpecifies the gauge's start.
ValueSpecifies the gauge's value
VerticalSet or Get Gauge Orientation
XmlSerializationInfoGets the serialization info for RadRadialGauge used by Save/Load layout methods to persist grid settings to/from XML. By default, or when set to null the ComponentXmlSerializationInfo provided by GetDefaultXmlSerializationInfo() will be used.

Events

EventDescription
ValueChangedThe ValueChanged event fires when the value is modified.
OrientationChangedThe OrientationChanged event fires when the orientation of the gauges is changed.

The ValueChanged event fires when the Value of the control is changed. For example you can use this event to alert the user that the current value is close to the maximum:

ValueChanged Event

C#
void radLinearGauge2_ValueChanged(object sender, EventArgs e)
{
    if ( radLinearGauge2.Value > radLinearGauge2.RangeEnd - 10)
    {
        RadMessageBox.Show("Detected value that is close to the maximum!");
    }
}

See Also

In this article
See Also
Not finding the help you need?
Contact Support