Base class for all ItemsControls used in Bullet graph. Allows custom logic for populating the ItemsSource and also AutoRange updates.
Definition
Namespace:Telerik.Windows.Controls.BulletGraph
Assembly:Telerik.Windows.Controls.DataVisualization.dll
Syntax:
public abstract class BulletGraphContainerBase : ItemsControl
Inheritance: objectBulletGraphContainerBase
Derived Classes:
Constructors
protected BulletGraphContainerBase()
Fields
ChildrenSourceProperty
DependencyProperty
Identifies the ChildrenSource dependency property.
public static readonly DependencyProperty ChildrenSourceProperty
RangeProperty
DependencyProperty
Identifies the Range dependency property.
public static readonly DependencyProperty RangeProperty
Properties
Gets or sets the children source.
public IEnumerable ChildrenSource { get; set; }
The children source.
Methods
Called when [children source changed].
protected virtual void OnChildrenSourceChanged(IEnumerable oldValue, IEnumerable newValue)
Called when [children source collection changed].
protected virtual void OnChildrenSourceCollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
The sender.
eNotifyCollectionChangedEventArgsThe NotifyCollectionChangedEventArgs instance containing the event data.
Called when [children source item changed].
protected virtual void OnChildrenSourceItemChanged(object sender, PropertyChangedEventArgs e)
The sender.
ePropertyChangedEventArgsThe PropertyChangedEventArgs instance containing the event data.
Called when [range changed].
protected virtual void OnRangeChanged()
Sets the range.
Updates the panel.
protected void UpdatePanel()