BubbleSeriesLabel.Position Property
Gets or sets the position of series labels relative to bubbles.
Namespace: DevExpress.XamarinForms.Charts
Assembly: DevExpress.XamarinForms.Charts.dll
NuGet Package: DevExpress.XamarinForms.Charts
Declaration
public BubbleSeriesLabelPosition Position { get; set; }
Property Value
Type | Description |
---|---|
BubbleSeriesLabelPosition | 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.
<dxc:BubbleSeries>
<dxc:BubbleSeries.Label>
<dxc:BubbleSeriesLabel TextPattern="{}${W$#.##}B"
Position="Outside"
Angle="90"
Indent="12"/>
</dxc:BubbleSeries.Label>
</dxc:BubbleSeries>