Class ChartColumnSegment
Represents column chart type segment.
Inheritance
Implements
Inherited Members
Namespace: Syncfusion.Windows.Chart
Assembly: Syncfusion.Chart.Wpf.dll
Syntax
public class ChartColumnSegment : ChartSegment, IDisposable
Remarks
Class instance is created automatically by WPF Chart building system.
Constructors
ChartColumnSegment(IChartDataPoint, IChartDataPoint, ChartIndexedDataPoint, ChartSeries)
Initializes a new instance of the ChartColumnSegment class.
Declaration
public ChartColumnSegment(IChartDataPoint bottomLeftPnt, IChartDataPoint topRightPnt, ChartIndexedDataPoint correspondingPoint, ChartSeries series)
Parameters
Type | Name | Description |
---|---|---|
IChartDataPoint | bottomLeftPnt | The bottom left PNT. |
IChartDataPoint | topRightPnt | The top right PNT. |
Syncfusion.Windows.Chart.ChartIndexedDataPoint | correspondingPoint | The corresponding point. |
ChartSeries | series | The series. |
Fields
HeightProperty
Identifies the Height dependency property.
Declaration
public static readonly DependencyProperty HeightProperty
Field Value
Type |
---|
System.Windows.DependencyProperty |
LayerBrushProperty
Identifies the LayerBrush dependency property.
Declaration
public static readonly DependencyProperty LayerBrushProperty
Field Value
Type |
---|
System.Windows.DependencyProperty |
WidthProperty
Identifies the Width dependency property.
Declaration
public static readonly DependencyProperty WidthProperty
Field Value
Type |
---|
System.Windows.DependencyProperty |
XProperty
Identifies the X dependency property.
Declaration
public static readonly DependencyProperty XProperty
Field Value
Type |
---|
System.Windows.DependencyProperty |
YProperty
Identifies the Y dependency property.
Declaration
public static readonly DependencyProperty YProperty
Field Value
Type |
---|
System.Windows.DependencyProperty |
Properties
Height
Gets or sets the height of segment. This is a dependency property.
Declaration
public double Height { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The height value. |
LayerBrush
Gets or sets the Layer brush. This is a dependency property.
Declaration
public Brush LayerBrush { get; set; }
Property Value
Type | Description |
---|---|
System.Windows.Media.Brush | The Brush value. |
Width
Gets or sets the width of segment. This is a dependency property.
Declaration
public double Width { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The width value. |
X
Gets or sets the X co-ordinate of segment. This is a dependency property.
Declaration
public double X { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The X value. |
Y
Gets or sets the Y co-ordinate of segment. This is a dependency property.
Declaration
public double Y { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The Y value. |
Methods
Dispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Declaration
public override void Dispose()
Overrides
Draw3DSegment(IChartTransformer)
Draws the 3D segment.
Declaration
public override void Draw3DSegment(IChartTransformer transformer)
Parameters
Type | Name | Description |
---|---|---|
Syncfusion.Windows.Chart.IChartTransformer | transformer | The transformer |
Overrides
Update(IChartTransformer)
Updates the real coordinates of segment.
Declaration
public override void Update(IChartTransformer transformer)
Parameters
Type | Name | Description |
---|---|---|
Syncfusion.Windows.Chart.IChartTransformer | transformer | Instance of class that implements Syncfusion.Windows.Chart.IChartTransformer interface. |