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

BubbleSeriesLabel.Position Property

Gets or sets the position of series labels relative to bubbles. This is a bindable property.

Namespace: DevExpress.Maui.Charts

Assembly: DevExpress.Maui.Charts.dll

NuGet Package: DevExpress.Maui.Charts

#Declaration

C#
public BubbleSeriesLabelPosition Position { get; set; }

#Property Value

Type Default Description
BubbleSeriesLabelPosition Center

The BubbleSeriesLabelPosition enumeration value that specifies the label position.

Available values:

Name Description
Center

Labels are located in the center of bubbles.

Outside

Labels are located outside bubbles.

#Remarks

Use the Position property to specify whether series labels should be displayed in the center of their corresponding data points (bubbles) or outside them. When you set the Position property to Outside, you can also use the Indent property to set the indent between a label and bubble, and the Angle property to set an angle on which a label is rotated around a bubble.

Bubble Series Labels

<dxc:BubbleSeries>
    <dxc:BubbleSeries.Label>
        <dxc:BubbleSeriesLabel TextPattern="{}${W$#.##}B"
                               Position="Outside"
                               Angle="90"
                               Indent="12"/>
    </dxc:BubbleSeries.Label>
</dxc:BubbleSeries>
See Also