Skip to main content

WaterfallSeries2D.LabelPosition Attached Property

Gets or sets the waterfall series label position. This property is attached to the SeriesLabel class.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v23.2.dll

NuGet Package: DevExpress.Wpf.Charts

Declaration

Returns

Type Description
WaterfallLabelPosition

The enumeration value that specifies the label position.

Remarks

Refer to the WaterfallLabelPosition enumeration for a list of available label positions.

Example

This example illustrates how to specify the series label position for a Waterfall chart.

Use the WaterfallSeries2D.LabelPosition property to change the series label position. The WaterfallLabelPosition enumeration lists the available values.

<dxc:WaterfallSeries2D LabelsVisibility="True">
    <dxc:WaterfallSeries2D.Label>
        <dxc:SeriesLabel dxc:WaterfallSeries2D.LabelPosition="Center"/>
    </dxc:WaterfallSeries2D.Label>
</dxc:WaterfallSeries2D>
See Also