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

FreePosition.HorizontalAlignment Property

Gets or sets how the annotation will be located horizontally.

Namespace: DevExpress.Xpf.Charts

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

NuGet Package: DevExpress.Wpf.Charts

Declaration

public AnnotationHorizontalAlignment HorizontalAlignment { get; set; }

Property Value

Type Description
AnnotationHorizontalAlignment

A AnnotationVerticalAlignment object specifying horizontal alignment.

Available values:

Name Description
Left

The annotation is aligned to the left edge of a parent element.

Center

The annotation is aligned to the center of the horizontal within a parent element.

Right

The annotation is aligned to the right edge of a parent element.

Example

This example demonstrates how to customize the annotation layout when the Annotation.ShapePosition property is specified as the FreePosition type.

To do this, dock the annotation to the required element using the FreePosition.DockTarget property. Then, specify the FreePosition.VerticalAlignment and FreePosition.HorizontalAlignment properties, to configure the annotation position.

View Example

<dxc:Annotation.ShapePosition>
    <dxc:FreePosition HorizontalAlignment="Right" 
                      VerticalAlignment="Top" 
                      DockTarget="{Binding ElementName=defaultPane}"/>
</dxc:Annotation.ShapePosition>
See Also