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

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