Property | Type | Description | |
---|---|---|---|
annotations | List |
||
points | List |
Property | Type | Description | |
---|---|---|---|
Deserialize | void | ||
Serialize | void |
Method | Description | |
---|---|---|
AddPoints ( |
Adds points to the plot.
|
|
AddSeries ( IPointSeries series, bool nameSeries = true, bool colorSeries = true ) : void |
Adds a new series to the plot. This function automatically selects a new color for the series, such that no color should be taken twice.
|
|
GetSeries ( int index ) : IPointSeries |
Gets the specified series as an IPointSeries.
|
|
SetXRange ( double min, double max ) : void |
Sets the x-range (min and max) in one statement.
|
|
SetYRange ( double min, double max ) : void |
Sets the y-range (min and max) in one statement.
|
|
XYPlotValue ( ) : System |
Creates a new instance.
|
Method | Description | |
---|---|---|
InitializeBoundaries ( ) : void |
Initializes the values MinX, MaxX, MinY and MaxY.
|
Method | Description | |
---|---|---|
Deserialize ( |
||
Serialize ( |
public abstract AddPoints ( |
||
m | The given matrix. | |
return | void |
public AddSeries ( IPointSeries series, bool nameSeries = true, bool colorSeries = true ) : void | ||
series | IPointSeries | The series to add. |
nameSeries | bool | Should the series be named? |
colorSeries | bool | Should the series be colored automatically? |
return | void |
public GetSeries ( int index ) : IPointSeries | ||
index | int | The 0-based index of the series. |
return | IPointSeries |
public SetXRange ( double min, double max ) : void | ||
min | double | The minimum for the x-axis. |
max | double | The maximum for the x-axis. |
return | void |
public SetYRange ( double min, double max ) : void | ||
min | double | The minimum for the y-axis. |
max | double | The maximum for the y-axis. |
return | void |