Back to Devexpress

FreePosition.VerticalAlignment Property

wpf-devexpress-dot-xpf-dot-charts-dot-freeposition.md

latest2.4 KB
Original Source

FreePosition.VerticalAlignment Property

Gets or sets how the annotation will be located vertically.

Namespace : DevExpress.Xpf.Charts

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

NuGet Package : DevExpress.Wpf.Charts

Declaration

csharp
public AnnotationVerticalAlignment VerticalAlignment { get; set; }
vb
Public Property VerticalAlignment As AnnotationVerticalAlignment

Property Value

TypeDescription
AnnotationVerticalAlignment

A AnnotationVerticalAlignment object specifying vertical alignment.

|

Available values:

NameDescription
Top

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

| | Center |

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

| | Bottom |

The annotation is aligned to the bottom 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.

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

See Also

FreePosition Class

FreePosition Members

DevExpress.Xpf.Charts Namespace