blazor-devexpress-dot-blazor-ec642295.md
Specifies the tooltip’s context and stores information about the hovered series point.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
public sealed class ChartTooltipData
The following members return ChartTooltipData objects:
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>
Object ChartTooltipData
GetCommonPoint<T, TValue>(Expression<Func<T, TValue>>)
GetRangePoint<T, TValue>(Expression<Func<T, TValue>>)
GetFinancialPoint<T, TValue>(Expression<Func<T, TValue>>)
GetBubblePoint<T, TValue, TSize>(Expression<Func<T, TValue>>, Expression<Func<T, TSize>>)
See Also