Annotation.AnchorDataPoint Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the data point to which an annotation is anchored.
public:
virtual property System::Web::UI::DataVisualization::Charting::DataPoint ^ AnchorDataPoint { System::Web::UI::DataVisualization::Charting::DataPoint ^ get(); void set(System::Web::UI::DataVisualization::Charting::DataPoint ^ value); };
[System.ComponentModel.TypeConverter(typeof(System.Web.UI.DataVisualization.Charting.AnchorPointValueConverter))]
public virtual System.Web.UI.DataVisualization.Charting.DataPoint AnchorDataPoint { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Web.UI.DataVisualization.Charting.AnchorPointValueConverter))>]
member this.AnchorDataPoint : System.Web.UI.DataVisualization.Charting.DataPoint with get, set
Public Overridable Property AnchorDataPoint As DataPoint
Property Value
A DataPoint object to which an annotation is anchored.
- Attributes
Remarks
The annotation is anchored to the X and Y values of the specified data point, and automatically uses the same axes coordinates as the data point.
To automatically position the annotation relative to the anchor point, make sure its X and Y properties are set to NaN. The AnchorAlignment property can be used to change the annotation's automatic position alignment to the anchor point. The AnchorOffsetX and AnchorOffsetY properties can be used to add extra spacing.
When you use this property, make sure the AnchorX and AnchorY properties are set to NaN, as they have precedence.
Set this value to null
to disable annotation anchoring to a data point.