| java.lang.Object org.krysalis.jcharts.chartData.AxisDataSeries org.krysalis.jcharts.chartData.ScatterPlotDataSeries
Method Summary | |
public void | toHTML(HTMLGenerator htmlGenerator) Returns the total number data dimensions in all of the IAxisChartDataSets contained in
this collection. |
ScatterPlotDataSeries | public ScatterPlotDataSeries(IScatterPlotDataSet iScatterPlotDataSet, String xAxisTitle, String yAxisTitle, String chartTitle)(Code) | | Constructor
Parameters: xAxisTitle - if this is NULL, no title will be displayed Parameters: yAxisTitle - if this is NULL, no title will be displayed Parameters: chartTitle - if this is NULL, no title will be displayed |
toHTML | public void toHTML(HTMLGenerator htmlGenerator)(Code) | | Returns the total number data dimensions in all of the IAxisChartDataSets contained in
this collection. For example, if this contains two IAxisChartDataSets and each one
contains 3 dimensions ( 3 lines and 3 sets of points ), this should return six. This
provides a means to avoid looping the contents of the series each time i need the value.
// * @return int
public int getTotalNumberOfDataSets()
{
return this.totalNumberOfDataSets;
}
/*********************************************************************************************
Enables the testing routines to display the contents of this Object.
Parameters: htmlGenerator - |
|
|