ChartSeriesPointExtensions.GetBubblePoint(ChartTooltipData) Method
Returns a bubble series point.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
public static ChartBubbleSeriesPoint GetBubblePoint(
this ChartTooltipData tooltip
)
Parameters
Name | Type | Description |
---|---|---|
tooltip | ChartTooltipData | A context for a chart tooltip. |
Returns
Type | Description |
---|---|
ChartBubbleSeriesPoint | A bubble series point. |
Remarks
The following example uses the GetBubblePoint
method to customize text for series point tooltips:
<DxChart Data="@ChartsData">
<DxChartTooltip Enabled="true" >
@context.GetBubblePoint().Render((bubblePoint) =>
@<div class="p-3">
<p>Argument: @bubblePoint.Argument</p>
<p>Value: @bubblePoint.Value</p>
<p>Size: @bubblePoint.Size</p>
</div>
)
</DxChartTooltip>
...
</DxChart>
See Also