TimelineAnnotation
An annotation that allows you to place a custom object at a specific place in your RadTimeline.
Definition
Namespace:Telerik.Windows.Controls.Timeline
Assembly:Telerik.Windows.Controls.DataVisualization.dll
Syntax:
public class TimelineAnnotation : Control
Inheritance: objectTimelineAnnotation
Constructors
Initializes a new instance of the TimelineAnnotation class.
public TimelineAnnotation()
Fields
ContentProperty
DependencyProperty
Identifies the Content dependency property.
public static readonly DependencyProperty ContentProperty
ContentTemplateProperty
DependencyProperty
Identifies the ContentTemplate dependency property.
public static readonly DependencyProperty ContentTemplateProperty
DurationProperty
DependencyProperty
Identifies the Duration dependency property.
public static readonly DependencyProperty DurationProperty
StartDateProperty
DependencyProperty
Identifies the StartDate dependency property.
public static readonly DependencyProperty StartDateProperty
Properties
Gets or sets the content of the TimelineAnnotation.
ContentTemplate
DataTemplate
Gets or sets the DataTemplate used to display the Content the TimelineAnnotation.
public DataTemplate ContentTemplate { get; set; }
A DataTemplate that specifies the visualization of the Content. The default is null.
Gets or sets a TimeSpan object that identifies the span of the TimelineAnnotation on the timeline.
public TimeSpan Duration { get; set; }
The span of the TimelineAnnotation on the timeline.
Gets or sets a DateTime object that identifies the position of the TimelineAnnotation on the timeline.
[TypeConverter(typeof(DateTimeTypeConverter))]
public DateTime StartDate { get; set; }
The DateTime object that identifies the position of the TimelineAnnotation on the timeline.
Methods
Raises the event. This method is invoked whenever
is set to true internally.
protected override void OnInitialized(EventArgs e)
The RoutedEventArgs that contains the event data.