Skip to main content
A newer version of this page is available. .

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.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Charts, 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 property of a Series.Label object in XAML. Also, it illustrates how to set the MarkerSeries2D.Angle property value.

View Example

<dxc:PointSeries2D.Label>
    <dxc:SeriesLabel TextPattern="{}{V:f1}" 
                     dxc:MarkerSeries2D.Angle="90" 
                     ConnectorVisible="False"/>
</dxc:PointSeries2D.Label>
See Also