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

ChartTooltipData Class

Represents the tooltip’s context and provides information about the hovered series point.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public 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