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

RangeBarSeriesLabel.Position Property

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

Namespace: DevExpress.Maui.Charts

Assembly: DevExpress.Maui.Charts.dll

NuGet Package: DevExpress.Maui.Charts

#Declaration

C#
public RangeBarSeriesLabelPosition Position { get; set; }

#Property Value

Type Default Description
RangeBarSeriesLabelPosition Outside

A value that specifies the label position.

Available values:

Name Description
Outside

Labels are displayed outside bars.

RangeBarSeriesLabelPosition.Outside

Inside

Labels are displayed inside bars.

RangeBarSeriesLabelPosition.Inside

#Remarks

Use the Position property to specify whether series labels should be displayed inside or outside their corresponding bars. The Indent property allows you to set the indent between a label and bar edge.

Range Bar Series Labels

<dxc:RangeBarSeries>
    <dxc:RangeBarSeries.Label>
        <dxc:RangeBarSeriesLabel TextPattern="{}{V$0.#}"
                                 Kind="TwoLabels"
                                 Position="Outside"
                                 Indent="5">
        </dxc:RangeBarSeriesLabel>
    </dxc:RangeBarSeries.Label>
</dxc:RangeBarSeries>
See Also