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

MarkerSeries2D.Angle Attached Property

Gets or sets the angle which controls the position of series point labels for all 2D series with markers (e.g. Line, Point, etc.).

Namespace: DevExpress.Xpf.Charts

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

NuGet Package: DevExpress.Wpf.Charts

#Declaration

#Returns

Type Description
Double

An integer value specifying the angle, in degrees, for the position of data point labels.

#Remarks

The Angle property affects the position of series point labels relative to the corresponding series points. The angle value set for this property specifies the inclination of the connector line between a series point and its label. The angle is measured in degrees, and counterclockwise from the horizontal.

#Example

The following example demonstrates how to modify the SeriesLabel.ConnectorVisible and SeriesLabel.Indent properties of a Series.Label object in XAML. Also, it illustrates how to set the MarkerSeries2D.Angle property value.

<dxc:PointSeries2D.Label>
    <dxc:SeriesLabel ConnectorVisible="False" Indent="15" dxc:MarkerSeries2D.Angle="90" />
</dxc:PointSeries2D.Label>
See Also