Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ChartSeriesPointExtensions.GetBubblePoint(ChartTooltipData) Method

Returns a bubble series point.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
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:

Razor
<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