Class ChartColumnDefinition
Represents a column definition.
Inheritance
System.Object
ChartColumnDefinition
Implements
Namespace: Syncfusion.UI.Xaml.Charts
Assembly: Syncfusion.SfChart.WPF.dll
Syntax
public class ChartColumnDefinition : DependencyObject, ICloneable
Remarks
The width of the row can be defined either in terms of fixed pixels units mode or in auto adjust mode, by using Unit property.
Constructors
ChartColumnDefinition()
Called when instance created for ChartColumnDefinition
Declaration
public ChartColumnDefinition()
Fields
BorderStrokeProperty
The DependencyProperty for BorderStroke property.
Declaration
public static readonly DependencyProperty BorderStrokeProperty
Field Value
Type |
---|
System.Windows.DependencyProperty |
BorderThicknessProperty
The DependencyProperty for BorderThickness property.
Declaration
public static readonly DependencyProperty BorderThicknessProperty
Field Value
Type |
---|
System.Windows.DependencyProperty |
UnitProperty
The DependencyProperty for Unit property.
Declaration
public static readonly DependencyProperty UnitProperty
Field Value
Type |
---|
System.Windows.DependencyProperty |
WidthProperty
The DependencyProperty for Width property.
Declaration
public static readonly DependencyProperty WidthProperty
Field Value
Type |
---|
System.Windows.DependencyProperty |
Properties
BorderStroke
Gets or sets the border stroke.
Declaration
public Brush BorderStroke { get; set; }
Property Value
Type | Description |
---|---|
System.Windows.Media.Brush | The System.Windows.Media.Brush value. |
BorderThickness
Gets or sets the thickness of the column border.
Declaration
public double BorderThickness { get; set; }
Property Value
Type |
---|
System.Double |
Unit
Gets or sets unit of the value to be specified for row width.
Declaration
public ChartUnitType Unit { get; set; }
Property Value
Type | Description |
---|---|
ChartUnitType |
Width
Gets or sets the width of this column.
Declaration
public double Width { get; set; }
Property Value
Type |
---|
System.Double |
Methods
Clone()
Clone the column
Declaration
public DependencyObject Clone()
Returns
Type |
---|
System.Windows.DependencyObject |