mobilecontrols-devexpress-dot-xamarinforms-dot-charts-7a51b8c9.md
Stores range bar series label settings.
Namespace : DevExpress.XamarinForms.Charts
Assembly : DevExpress.XamarinForms.Charts.dll
NuGet Package : DevExpress.XamarinForms.Charts
public class RangeBarSeriesLabel :
BarSeriesLabelBase
The following members return RangeBarSeriesLabel objects:
You can add labels to data point markers to show point values as text on a chart.
To enable labels for a range bar series, set the RangeBarSeries.Label property to the RangeBarSeriesLabel object, and use this object’s properties to change the label settings:
TextPattern - Formats series label text.
Kind - Specifies which range bar values (minimum, maximum, or both) labels should display.
Position, Indent - Specify how labels are positioned relative to bars.
Style - Provides access to the SeriesLabelStyle object that stores label appearance settings (TextStyle).
Visible - Allows you to show or hide labels for the series.
<dxc:RangeBarSeries>
<dxc:RangeBarSeries.Label>
<dxc:RangeBarSeriesLabel TextPattern="{}{V$0.#}"
Kind="TwoLabels"
Position="Outside"
Indent="5">
<dxc:RangeBarSeriesLabel.Style>
<dxc:SeriesLabelStyle>
<dxc:SeriesLabelStyle.TextStyle>
<dxc:TextStyle Color="DarkBlue" Size="8"/>
</dxc:SeriesLabelStyle.TextStyle>
</dxc:SeriesLabelStyle>
</dxc:RangeBarSeriesLabel.Style>
</dxc:RangeBarSeriesLabel>
</dxc:RangeBarSeries.Label>
</dxc:RangeBarSeries>
Object ChartElement StyledElement SeriesLabel BarSeriesLabelBase RangeBarSeriesLabel
See Also