Class ChartStepLineSegment
Represents Step line chart type segment.
Implements
Inherited Members
Namespace: Syncfusion.Windows.Chart
Assembly: Syncfusion.Chart.Wpf.dll
Syntax
public sealed class ChartStepLineSegment : ChartSegment, IDisposable
Remarks
Class instance is created automatically by WPF Chart building system.
Fields
PointsProperty
Identifies the Points dependency property.
Declaration
public static readonly DependencyProperty PointsProperty
Field Value
Type |
---|
System.Windows.DependencyProperty |
StepXProperty
Identifies the StepX dependency property.
Declaration
public static readonly DependencyProperty StepXProperty
Field Value
Type |
---|
System.Windows.DependencyProperty |
StepYProperty
Identifies the StepY dependency property.
Declaration
public static readonly DependencyProperty StepYProperty
Field Value
Type |
---|
System.Windows.DependencyProperty |
X1Property
Identifies the X1 dependency property.
Declaration
public static readonly DependencyProperty X1Property
Field Value
Type |
---|
System.Windows.DependencyProperty |
X2Property
Identifies the X2 dependency property.
Declaration
public static readonly DependencyProperty X2Property
Field Value
Type |
---|
System.Windows.DependencyProperty |
Y1Property
Identifies the Y1 dependency property.
Declaration
public static readonly DependencyProperty Y1Property
Field Value
Type |
---|
System.Windows.DependencyProperty |
Y2Property
Identifies the Y2 dependency property.
Declaration
public static readonly DependencyProperty Y2Property
Field Value
Type |
---|
System.Windows.DependencyProperty |
Properties
Points
Gets or sets the segment's points. This is a dependency property.
Declaration
public PointCollection Points { get; set; }
Property Value
Type | Description |
---|---|
System.Windows.Media.PointCollection | The points. |
StepX
Gets or sets the step X. This is a dependency property.
Declaration
public double StepX { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The step X. |
StepY
Gets or sets the step Y. This is a dependency property.
Declaration
public double StepY { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The step Y. |
X1
Gets or sets the x1. This is a dependency property.
Declaration
public double X1 { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The x1 value. |
X2
Gets or sets the x2. This is a dependency property.
Declaration
public double X2 { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The x2 value. |
Y1
Gets or sets the y1. This is a dependency property.
Declaration
public double Y1 { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The y1 value. |
Y2
Gets or sets the y2. This is a dependency property.
Declaration
public double Y2 { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The y2 value. |
Methods
Dispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Declaration
public override void Dispose()
Overrides
Draw3DSegment(IChartTransformer)
Draw3s the D 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 with respect to chart type.
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. |