wpf-devexpress-dot-xpf-dot-charts-5241f080.md
An interface that should be implemented by any object which can serve as a dock target.
Namespace : DevExpress.Xpf.Charts
Assembly : DevExpress.Xpf.Charts.v25.2.dll
NuGet Package : DevExpress.Wpf.Charts
public interface IDockTarget
Public Interface IDockTarget
The following members return IDockTarget objects:
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.
<dxc:Annotation.ShapePosition>
<dxc:FreePosition HorizontalAlignment="Right"
VerticalAlignment="Top"
DockTarget="{Binding ElementName=defaultPane}"/>
</dxc:Annotation.ShapePosition>
See Also