menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class DataEditingEventArgs - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    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

    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
    Type Description
    Point

    A Point object representing the edited point.

    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.

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved