Class
IndicatorValueChangedEventArgs

Event arguments for the ValueChanged event of GaugeIndicator.

Definition

Namespace:Telerik.UI.Xaml.Controls.DataVisualization

Assembly:Telerik.WinUI.Controls.dll

Syntax:

cs-api-definition
public class IndicatorValueChangedEventArgs : EventArgs

Inheritance: objectEventArgsIndicatorValueChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

IndicatorValueChangedEventArgs(double, double)

Initializes a new instance of the IndicatorValueChangedEventArgs class.

Declaration

cs-api-definition
public IndicatorValueChangedEventArgs(double newValue, double oldValue)

Parameters

newValue

double

The new value.

oldValue

double

The old value.

Properties

NewValue

Gets the new indicator value.

Declaration

cs-api-definition
public double NewValue { get; }

Property Value

double

OldValue

Gets the old indicator value.

Declaration

cs-api-definition
public double OldValue { get; }

Property Value

double