Class DataEditingEventArgs
Specifies the event arguments available for the editing events in the chart component.
Inheritance
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 | A System.Double representing the new value. |
Remarks
This is a read-only property that provides the updated value of the edited point.
OldValue
Defines the current point old value.
Declaration
public double OldValue { get; }
Property Value
Type | Description |
---|---|
System.Double | A System.Double representing the old value. |
Remarks
This is a read-only property that keeps the original value before the editing occurred.
Point
Defines the current point.
Declaration
public Point Point { get; }
Property Value
Remarks
This is a read-only property providing information about the specific data point being edited.
PointIndex
Defines the current point index.
Declaration
public double PointIndex { get; }
Property Value
Type | Description |
---|---|
System.Double | A System.Double representing the index of the point. |
Remarks
This is a read-only property specifying the position of the point in its series.
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. |
Remarks
This is a read-only property indicating the series from which the edited point belongs.
SeriesIndex
Defines the current series index.
Declaration
public double SeriesIndex { get; }
Property Value
Type | Description |
---|---|
System.Double | A System.Double representing the series index. |
Remarks
This is a read-only property indicating the index of the series associated with the editing event.