Class DataEditingEventArgs
Specifies the event arguments available for the editing events in the chart component.
Inheritance
System.Object
Syncfusion.Blazor.Charts.BaseEventArgs
DataEditingEventArgs
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class DataEditingEventArgs : BaseEventArgs
Properties
NewValue
Defines the current point new value.
Declaration
public double NewValue { get; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
OldValue
Defines the current point old value.
Declaration
public double OldValue { get; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
Point
Defines the current point.
Declaration
public Point Point { get; }
Property Value
Type | Description |
---|---|
Point | A Point object that represents the current point. |
PointIndex
Defines the current point index.
Declaration
public double PointIndex { get; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
Series
Defines the current chart series.
Declaration
public ChartSeries Series { get; }
Property Value
Type | Description |
---|---|
ChartSeries | A ChartSeries object that represents the current chart series. |
SeriesIndex
Defines the current series index.
Declaration
public double SeriesIndex { get; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |