Skip to main content
A newer version of this page is available. .

ChartTooltipData.Point Property

Returns a series point used to compose the tooltip text.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public ChartSeriesPoint Point { get; }

Property Value

Type Description
ChartSeriesPoint

A series point that a user hovers over with the mouse cursor.

Remarks

The markup below shows how to format text in a tooltip:

<DxChartTooltip>
    <div class="p-3">
        <p class="text-align-center"><b>@context.Point.SeriesName</b></p>
        <p>City: @context.Point.Argument</p>
        <p>Amount: @context.Point.Value</p>
    </div>
</DxChartTooltip>
See Also