Method | Description | |
---|---|---|
SequenceAdapter ( object dataSource, string dataMember, object ordinateData, object abscissaData ) : System |
Constructor. The data source specifiers must be specified here.
|
|
SuggestXAxis ( ) : |
Returns an x-axis that is suitable for drawing the data.
|
|
SuggestYAxis ( ) : |
Returns a y-axis that is suitable for drawing the data.
|
|
WriteData ( System sb, |
Writes data out as text.
|
|
this ( int i ) : |
Returns the ith point.
|
public SequenceAdapter ( object dataSource, string dataMember, object ordinateData, object abscissaData ) : System | ||
dataSource | object | The source containing a list of values to plot. |
dataMember | string | The specific data member in a multimember data source to get data from. |
ordinateData | object | The source containing a list of values to plot on the ordinate axis, or a the name of the column to use for this data. |
abscissaData | object | The source containing a list of values to plot on the abscissa axis, or a the name of the column to use for this data. |
return | System |
public WriteData ( System sb, |
||
sb | System | StringBuilder to write to. |
region | Only write out data in this region if onlyInRegion is true. | |
onlyInRegion | bool | If true, only data in region is written, else all data is written. |
return | void |