alexa
menu

Blazor

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

    Show / Hide Table of Contents

    Class PointEventArgs

    Specifies the event arguments available to click on point.

    Inheritance
    object
    BaseEventArgs
    PointEventArgs
    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 PointEventArgs : BaseEventArgs

    Properties

    IsRightClick

    Defines whether the point is clicked by right click or not.

    Declaration
    public bool IsRightClick { get; }
    Property Value
    Type Description
    bool

    true, if the point is clicked by right click; Otherwise, false.

    Remarks

    Use this property to check if the click action was triggered by the right mouse button.

    PageX

    Gets the X-coordinate of the point on the page.

    Declaration
    public double PageX { get; }
    Property Value
    Type Description
    double

    Returns a double value.

    Remarks

    This read-only property provides the horizontal position of the click event relative to the entire page.

    PageY

    Gets the Y-coordinate of the point on the page.

    Declaration
    public double PageY { get; }
    Property Value
    Type Description
    double

    Returns a double value.

    Remarks

    This read-only property provides the vertical position of the click event relative to the entire page.

    Point

    Gets the point that was clicked.

    Declaration
    public Point Point { get; }
    Property Value
    Type Description
    Point

    A Point object representing the clicked data point.

    Remarks

    This read-only property identifies the specific chart data point that was subjected to a click event.

    PointIndex

    Defines the point index.

    Declaration
    public double PointIndex { get; }
    Property Value
    Type Description
    double

    Returns a double value.

    Remarks

    This read-only property provides the position of the clicked point within its series.

    Series

    Defines the current series.

    Declaration
    public ChartSeries Series { get; }
    Property Value
    Type Description
    ChartSeries

    The ChartSeries containing the point.

    Remarks

    This read-only property provides context about the series from which the clicked point originates.

    SeriesIndex

    Defines the series index.

    Declaration
    public double SeriesIndex { get; }
    Property Value
    Type Description
    double

    Returns a double value.

    Remarks

    This read-only property identifies the series associated with the clicked point.

    X

    Gets the X-coordinate of the clicked location.

    Declaration
    public double X { get; }
    Property Value
    Type Description
    double

    Returns a double value.

    Remarks

    This property reflects the horizontal position of the mouse pointer when the click occurred.

    Y

    Gets the Y-coordinate of the clicked location.

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

    Returns a double value.

    Remarks

    This property reflects the vertical position of the mouse pointer when the click occurred.

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