New to Telerik UI for WPFStart a free 30-day trial

Virtualizing stack panel that positions its children according to the time interval they are representing.

Definition

Namespace:Telerik.Windows.Controls.Timeline

Assembly:Telerik.Windows.Controls.DataVisualization.dll

Syntax:

C#
public class VirtualizingTimelinePanel : VirtualizingPanel

Inheritance: objectVirtualizingTimelinePanel

Constructors

Initializes a new instance of the VirtualizingTimelinePanel class.

C#
public VirtualizingTimelinePanel()

Fields

PaddingProperty

DependencyProperty

Identifies the Padding dependency property.

C#
public static readonly DependencyProperty PaddingProperty

SliderProperty

DependencyProperty

Identifies the Slider dependency property.

C#
public static readonly DependencyProperty SliderProperty

Properties

Gets the groups.

C#
public TimelineGroupData[] DataGroups { get; }

Padding

Thickness

Gets or sets the padding of this panel.

C#
public Thickness Padding { get; set; }
Property Value:

The padding.

Gets or sets the period end.

C#
public DateTime PeriodEnd { get; set; }
Property Value:

The period end.

Gets or sets the period start.

C#
public DateTime PeriodStart { get; set; }
Property Value:

The period start.

Gets or sets the slider used to control this panel.

C#
public RadSlider Slider { get; set; }
Property Value:

The slider.

Gets or sets the visible period end.

C#
public DateTime VisiblePeriodEnd { get; set; }
Property Value:

The visible period end.

Gets or sets the visible period start.

C#
public DateTime VisiblePeriodStart { get; set; }
Property Value:

The visible period start.

Methods

When overridden in a derived class, positions child elements and determines a size for a FrameworkElement derived class.

C#
protected override Size ArrangeOverride(Size finalSize)
Parameters:finalSizeSize

The final area within the parent that this element should use to arrange itself and its children.

Returns:

Size

The actual size used.

Releases unmanaged resources and performs other cleanup operations before the VirtualizingTimelinePanel is reclaimed by garbage collection.

C#
protected override void Finalize()

When overridden in a derived class, measures the size in layout required for child elements and determines a size for the FrameworkElement-derived class.

C#
protected override Size MeasureOverride(Size availableSize)
Parameters:availableSizeSize

The available size that this element can give to child elements. Infinity can be specified as a value to indicate that the element will size to whatever content is available.

Returns:

Size

The size that this element determines it needs during layout, based on its calculations of child element sizes.

Called when [children changed].

C#
protected virtual void OnChildrenChanged()

Called when [pixels per tick changed].

C#
protected virtual void OnPixelsPerTickChanged(double oldValue, double newValue)
Parameters:oldValuedouble

The old value.

newValuedouble

The new value.