Class ChartIndexedValues
ChartIndexedValues collects and sorts the X values of series.
Inheritance
System.Object
ChartIndexedValues
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 sealed class ChartIndexedValues
Properties
Count
Gets the count of indexed values.
Declaration
public int Count { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The count. |
Item[Int32]
Gets the System.Double at the specified index.
Declaration
public double this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index |
Property Value
Type |
---|
System.Double |
Methods
GetIndex(Double)
Gets the indexed value by real value.
Declaration
public double GetIndex(double value)
Parameters
Type | Name | Description |
---|---|---|
System.Double | value | The value. |
Returns
Type | Description |
---|---|
System.Double | Returns the Index. |
GetValue(Double)
Gets the real value by indexed value.
Declaration
public double GetValue(double index)
Parameters
Type | Name | Description |
---|---|---|
System.Double | index | The index. |
Returns
Type | Description |
---|---|
System.Double | Returns double value for the given index. |