AxisYCoordinate Class
The settings that define the annotation anchor point Y-axis coordinate.
Namespace: DevExpress.Xpf.Charts
Assembly: DevExpress.Xpf.Charts.v23.1.dll
NuGet Package: DevExpress.Wpf.Charts
Declaration
Related API Members
The following members return AxisYCoordinate objects:
Remarks
If the Annotation.AnchorPoint property is specified as PaneAnchorPoint, define a required pane to which an annotation is anchored using the PaneAnchorPoint.Pane property. Assign the required AxisXCoordinate and AxisYCoordinate objects to the PaneAnchorPoint.AxisXCoordinate and PaneAnchorPoint.AxisYCoordinate properties.
Example
This example shows how to anchor an annotation to a pane.
- Specify the PaneAnchorPoint.Pane property to define a pane to which the annotation should be anchored.
Define the axes and their values to specify the annotation’s anchor point. To do this, use the PaneAnchorPoint.AxisXCoordinate and PaneAnchorPoint.AxisYCoordinate properties.
If the PaneAnchorPoint.Pane and AxisCoordinate.Axis properties are unspecified, the default pane and primary axes are used to display the annotation. You can leave the Pane and Axis properties undefined if you plot the annotation on the default pane with primary axes.
<dxc:Annotation.AnchorPoint>
<dxc:PaneAnchorPoint Pane="{Binding ElementName=defaultPane}">
<dxc:PaneAnchorPoint.AxisXCoordinate>
<dxc:AxisXCoordinate Axis="{Binding ElementName=xAxis}"
AxisValue="2.85"/>
</dxc:PaneAnchorPoint.AxisXCoordinate>
<dxc:PaneAnchorPoint.AxisYCoordinate>
<dxc:AxisYCoordinate Axis="{Binding ElementName=yAxis}"
AxisValue="-30"/>
</dxc:PaneAnchorPoint.AxisYCoordinate>
</dxc:PaneAnchorPoint>
</dxc:Annotation.AnchorPoint>
Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the AxisYCoordinate class.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.