Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ChartFinancialSeriesPoint Class

Specifies an individual point for financial series (DxChartCandlestickSeries and DxChartStockSeries).

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
public abstract class ChartFinancialSeriesPoint :
    ChartSeriesPoint

The following members return ChartFinancialSeriesPoint objects:

#Remarks

A financial point takes four values (the Open, High, Low, and Close values) per argument.

You can use a ChartFinancialSeriesPoint object to customize text for chart tooltips:

Razor
<DxChartTooltip>
    @context.GetFinancialPoint().Render((financialPoint) =>
        @<div class="p-3">
            <p>Open: @financialPoint.OpenValue</p>
            <p>Close: @financialPoint.CloseValue</p>
            <p>High: @financialPoint.HighValue</p>
            <p>Low: @financialPoint.LowValue</p>
        </div>
    )
</DxChartTooltip>

#Inheritance

See Also