alexa
menu

Blazor

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

    Show / Hide Table of Contents

    Class PointXY

    Represents the selected point X, Y, SeriesIndex, and PointIndex values.

    Inheritance
    object
    PointXY
    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 PointXY
    Remarks

    This class provides a flexible way to manage selected point data.

    Constructors

    PointXY()

    Declaration
    public PointXY()

    Properties

    PointIndex

    Gets or sets the reference to the point index.

    Declaration
    public int? PointIndex { get; set; }
    Property Value
    Type Description
    int?

    Accepts the value as an integer. The default value is 0.

    Remarks

    The point index specifies the position of the data point within its series.

    SeriesIndex

    Gets or sets the reference to the series index.

    Declaration
    public int? SeriesIndex { get; set; }
    Property Value
    Type Description
    int?

    Accepts the value as an integer. The default value is 0.

    Remarks

    The series index helps to identify which series a specific data point belongs to.

    X

    Gets or sets the X value of the point.

    Declaration
    public object X { get; set; }
    Property Value
    Type Description
    object

    An object representing the X coordinate value of the point. The default value is null.

    Remarks

    This property specifies the horizontal position of a data point within the chart's coordinate system.

    Y

    Gets or sets the Y value of the point.

    Declaration
    public double Y { get; set; }
    Property Value
    Type Description
    double

    A double representing the Y coordinate value of the point. The default value is 0.

    Remarks

    This property determines the vertical position of a data point within the chart's coordinate system.

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