menu

Blazor

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

    Show / Hide Table of Contents

    Class ChartDataPointInfo

    Represents the point data information for a chart.

    Inheritance
    System.Object
    PointInfo
    ChartDataPointInfo
    ChartTooltipInfo
    Inherited Members
    PointInfo.PointIndex
    PointInfo.PointText
    PointInfo.PointX
    PointInfo.PointY
    PointInfo.SeriesIndex
    PointInfo.SeriesName
    PointInfo.StackedTotalValue
    Namespace: Syncfusion.Blazor.Charts
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class ChartDataPointInfo : PointInfo

    Constructors

    ChartDataPointInfo()

    Initializes a new instance of the ChartDataPointInfo class.

    Declaration
    public ChartDataPointInfo()
    Remarks

    This constructor initializes the chart data point information with default values.

    Properties

    Close

    Gets or sets the close value for the point.

    Declaration
    public object Close { get; set; }
    Property Value
    Type Description
    System.Object

    Accepts the value as an object. The default value is null.

    Remarks

    This property is important for financial charts where a single point may represent a period.

    High

    Gets or sets the high value for the point.

    Declaration
    public object High { get; set; }
    Property Value
    Type Description
    System.Object

    Accepts the value as an object. The default value is null.

    Remarks

    Used to specify the highest value of a series of data points in a chart.

    Low

    Gets or sets the low value for the point.

    Declaration
    public object Low { get; set; }
    Property Value
    Type Description
    System.Object

    Accepts the value as an object. The default value is null.

    Remarks

    Represents the lowest value of a data point series in a chart.

    Open

    Gets or sets the open value for the point.

    Declaration
    public object Open { get; set; }
    Property Value
    Type Description
    System.Object

    Accepts the value as an object. The default value is null.

    Remarks

    This is used in open-high-low-close (OHLC) financial charts, indicative of the opening value.

    Text

    Gets or sets the text for the point.

    Declaration
    public string Text { get; set; }
    Property Value
    Type Description
    System.String

    Accepts the value as a string. The default value is null.

    Remarks

    The text serves to annotate a data point, providing additional context or labels.

    Volume

    Gets or sets the volume value for the point.

    Declaration
    public object Volume { get; set; }
    Property Value
    Type Description
    System.Object

    Accepts the value as an object. The default value is null.

    Remarks

    Important for charts displaying traded volumes in stock market data.

    X

    Gets or sets the x value for the point.

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

    Accepts the value as an object. The default value is null.

    Remarks

    Establishes the horizontal position of the data point on a chart.

    Y

    Gets or sets the y value for the point.

    Declaration
    public object Y { get; set; }
    Property Value
    Type Description
    System.Object

    Accepts the value as an object. The default value is null.

    Remarks

    Determines the vertical position of the data point in a Cartesian chart.

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