Skip to main content

ChartTooltipData Class

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

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public sealed class ChartTooltipData

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