alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    Show / Hide Table of Contents

    Class DataEditingEventArgs

    Specifies the event arguments available for the editing events in the chart component.

    Inheritance
    object
    BaseEventArgs
    DataEditingEventArgs
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    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
    double

    A 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
    double

    A 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
    double

    A 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
    double

    A double representing the series index.

    Remarks

    This is a read-only property indicating the index of the series associated with the editing event.

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