Method | Description | |
---|---|---|
Add ( string x, double y ) : void |
Adds a new plot
|
|
Contains ( string x ) : bool |
Returns true of the x value exists. Returns false if not.
|
|
Count ( ) : int |
Returns the number of elements in the array
|
|
GetX ( int pos ) : string |
Gets an x value based on its position in the array
|
|
GetY ( int pos ) : double |
Gets an y value based on its position in the array
|
|
Plots ( ) : System |
Constructor
|
|
SetY ( int pos, double value ) : void |
Sets the y value for an existing plot
|
|
XIndexOf ( string x ) : int |
Gets the index (position) of a element x
|
public Add ( string x, double y ) : void | ||
x | string | a string for xValue |
y | double | a double for yValue |
return | void |
public SetY ( int pos, double value ) : void | ||
pos | int | The position of the plot to replace |
value | double | The new y value |
return | void |