API Reference
Class
ChartPoints
Creates common ChartPoint sequences for chart series.
Inheritance
- Object
- ChartPoints
Methods
FromValues 2 overloads
FromValues(System.Double[] values) #Creates one-based x/y points from y values.
Parameters
- values System.Double[]
- The y values.
Returns
Chart points with x values starting at one.
FromValues(System.Collections.Generic.IEnumerable{System.Double} values) #Creates one-based x/y points from y values.
Parameters
- values System.Collections.Generic.IEnumerable{System.Double}
- The y values.
Returns
Chart points with x values starting at one.
FromXY(System.Collections.Generic.IEnumerable{System.Double} x, System.Collections.Generic.IEnumerable{System.Double} y) #Creates x/y points from matching x and y value sequences.
Parameters
- x System.Collections.Generic.IEnumerable{System.Double}
- The x values.
- y System.Collections.Generic.IEnumerable{System.Double}
- The y values.
Returns
Chart points using the supplied x and y values.