Class ChartAnnotationDescriptor
Represents a definition of a ChartAnnotation instance. Used together with a ChartAnnotationsProvider instance to provide dynamic chart annotation generation, depending on the data specified.
Inheritance
Namespace: Telerik.Windows.Controls.ChartView
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public class ChartAnnotationDescriptor : DependencyObject
Constructors
ChartAnnotationDescriptor()
Declaration
public ChartAnnotationDescriptor()
Fields
StyleProperty
Identifies the Style dependency property.
Declaration
public static readonly DependencyProperty StyleProperty
Field Value
System.Windows.DependencyProperty
|
Properties
Style
Gets or sets the Style of the annotations that are to be created.
Declaration
public Style Style { get; set; }
Property Value
System.Windows.Style
|
Methods
CreateAnnotationCore(Object)
Core entry point for creating the ChartAnnotation type defined by this descriptor. Allows inheritors to provide custom implementation.
Declaration
protected virtual ChartAnnotation CreateAnnotationCore(object context)
Parameters
System.Object
context
The context (the view model) for which a ChartAnnotation needs to be created. |
Returns
ChartAnnotation
|