Back to Devexpress

BubbleSeriesLabel.Position Property

maui-devexpress-dot-maui-dot-charts-dot-bubbleserieslabel.md

latest2.1 KB
Original Source

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

csharp
public BubbleSeriesLabelPosition Position { get; set; }

Property Value

TypeDefaultDescription
BubbleSeriesLabelPositionCenter

The BubbleSeriesLabelPosition enumeration value that specifies the label position.

|

Available values:

NameDescription
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.

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

See Also

BubbleSeriesLabel Class

BubbleSeriesLabel Members

DevExpress.Maui.Charts Namespace