An StackedBarItem items control.
Definition
Namespace:Telerik.Windows.Controls.DataBars
Assembly:Telerik.Windows.Controls.DataVisualization.dll
Syntax:
public class StackedBarItemsControl : FastItemsControl<StackedBarItem, Grid>
Inheritance: objectFastItemsControlBaseFastItemsControl<StackedBarItem, Grid>StackedBarItemsControl
Inherited Members
Constructors
Initializes a new instance of the StackedBarItemsControl class.
public StackedBarItemsControl()
Fields
BarBorderBrushesProperty
DependencyProperty
Identifies the BarBorderBrushes dependency property.
public static readonly DependencyProperty BarBorderBrushesProperty
BarBorderThicknessProperty
DependencyProperty
Identifies the BarBorderThickness dependency property.
public static readonly DependencyProperty BarBorderThicknessProperty
BarBrushesProperty
DependencyProperty
Identifies the BarBrushes dependency property.
public static readonly DependencyProperty BarBrushesProperty
BarHeightPercentProperty
DependencyProperty
Identifies the BarHeightPercent dependency property.
public static readonly DependencyProperty BarHeightPercentProperty
BarStyleProperty
DependencyProperty
Identifies the BarStyle dependency property.
public static readonly DependencyProperty BarStyleProperty
ShowToolTipsProperty
DependencyProperty
Identifies the ShowToolTips dependency property.
public static readonly DependencyProperty ShowToolTipsProperty
Properties
Gets or sets the collection of brushes that are used for the Stroke of the DataBarShapes.
public BrushCollection BarBorderBrushes { get; set; }
Each DataBarShape is assigned a Stroke from the BarBorderBrushes collection. The index of the brush that is assigned corresponds to the index of the data bar shape. For instance if the ItemsSource has 7 items and the BarBorderBrushes collection holds 4 brushes the Stroke of the data bar shape with index 4 is the brush with index 0 and the Stroke of the data bar shape with index 5 is the brush with index 1.
Gets or sets the StrokeThickness of the DataBarShapes.
public double BarBorderThickness { get; set; }
Gets or sets the collection of brushes that are used for the Fill of the DataBarShapes.
public BrushCollection BarBrushes { get; set; }
Each DataBarShape is assigned a Fill from the BarBrushes collection. The index of the brush that is assigned corresponds to the index of the data bar shape. For instance if the ItemsSource has 7 items and the BarBrushes collection holds 4 brushes the Fill of the data bar shape with index 3 is the brush with index 3 and the Fill of the data bar shape with index 4 is the brush with index 0.
Gets or sets the height percent (from 0 to 1) of the contained DataBarShapes.
public double BarHeightPercent { get; set; }
Gets or sets the style that is applied to the DataBarShapes.
public double BarStyle { get; set; }
Gets or sets the ShowToolTips.
public double ShowToolTips { get; set; }
Methods
This method is called whenever items are added or removed.
protected override void OnItemsChanged()
Overrides: