Skip to main content
You are viewing help content for pre-release software. This document and the features it describes are subject to change. .

ChartTooltipData Class

Specifies the tooltip’s context and stores information about the hovered series point.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

Declaration

public sealed class ChartTooltipData

The following members return ChartTooltipData objects:

Remarks

The ChartTooltipData specifies context for the ChartTooltipData component.

<DxChartTooltip>
    @context.GetRangePoint().Render((rangePoint) => 
        @<div class="p-3">
            <p>Max: @rangePoint.EndValue</p>
            <p>Min: @rangePoint.StartValue</p>
        </div>
    )
</DxChartTooltip>

Inheritance

Object
ChartTooltipData
See Also