Class ChartPointWithIndex
Contains chart point and index of point.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Forms.Chart
Assembly: Syncfusion.Chart.Base.dll
Syntax
public class ChartPointWithIndex
Constructors
ChartPointWithIndex(ChartPoint, Int32)
Initializes a new instance of the ChartPointWithIndex class.
Declaration
public ChartPointWithIndex(ChartPoint point, int index)
Parameters
Type | Name | Description |
---|---|---|
ChartPoint | point | The point. |
System.Int32 | index | The index of point. |
Properties
Index
Specifies the index of the ChartPoint.
Declaration
public int Index { get; set; }
Property Value
Type |
---|
System.Int32 |
Point
Specifies the ChartPoint.
Declaration
public ChartPoint Point { get; set; }
Property Value
Type |
---|
ChartPoint |