| java.lang.Object org.krysalis.jcharts.chartData.AxisDataSeries
All known Subclasses: org.krysalis.jcharts.chartData.ScatterPlotDataSeries, org.krysalis.jcharts.chartData.DataSeries,
totalNumberOfDataSets | protected int totalNumberOfDataSets(Code) | | |
AxisDataSeries | public AxisDataSeries(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 |
addIAxisPlotDataSet | public void addIAxisPlotDataSet(IAxisPlotDataSet iAxisPlotDataSet)(Code) | | Adds the passed IAxisPlotDataSet to the series
Parameters: iAxisPlotDataSet - |
getChartTitle | public String getChartTitle()(Code) | | Returns the chart title.
String the chart title. If this returns NULL, no title will be displayed. |
getIAxisPlotDataSet | public IAxisPlotDataSet getIAxisPlotDataSet(ChartType chartType)(Code) | | Returns the IAxisPlotDataSet for the passed chart type constant. Will return NULL if
if no data set exists for the passed type.
Parameters: chartType - IAxisPlotDataSet |
getIAxisPlotDataSetIterator | public Iterator getIAxisPlotDataSetIterator()(Code) | | Returns an Iterator over a List of IAxisPlotDataSet Objects
Iterator over a List of IAxisPlotDataSet Objects |
getSizeOfEachDataSet | public int getSizeOfEachDataSet()(Code) | | Returns number of elements in each data set dimension, so i can validate a that all
IAxisPlotDataSets on a ComboChart have the same number of elements, as well as the
number of Axis Labels equal the number of data elements other charts.
int |
getTotalNumberOfDataSets | public int getTotalNumberOfDataSets()(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.
int |
getXAxisTitle | public String getXAxisTitle()(Code) | | Returns the x-axis title
String |
getYAxisTitle | public String getYAxisTitle()(Code) | | Returns the y-axis title
String |
size | public int size()(Code) | | Returns the number of IAxisPlotDataSet Objects in this series
int |
toHTML | public void toHTML(HTMLGenerator htmlGenerator)(Code) | | Enables the testing routines to display the contents of this Object.
Parameters: htmlGenerator - |
|
|