| java.lang.Object org.krysalis.jcharts.chartData.DataSet org.krysalis.jcharts.chartData.RadarChartDataSet
RadarChartDataSet | final public class RadarChartDataSet extends DataSet implements IRadarChartDataSet(Code) | | The chart dataset of a radar chart
author: Rami Hansenne |
Constructor Summary | |
public | RadarChartDataSet(String chartTitle, double[][] data, String[] legendLabels, Paint[] paints, String[] axisLabels, RadarChartProperties chartTypeProperties) Constructor
Parameters: chartTitle - if the title is NULL, no title will be drawn Parameters: data - the data sets to be displayed in the chart. Parameters: legendLabels - if this is: NULL there will be no Legend. |
RadarChartDataSet | public RadarChartDataSet(String chartTitle, double[][] data, String[] legendLabels, Paint[] paints, String[] axisLabels, RadarChartProperties chartTypeProperties) throws ChartDataException(Code) | | Constructor
Parameters: chartTitle - if the title is NULL, no title will be drawn Parameters: data - the data sets to be displayed in the chart. Parameters: legendLabels - if this is: NULL there will be no Legend. Otherwise, there must be anone to one mapping of labels to data sets. Parameters: paints - paints to use for the data sets. There must be an one to one mapping oflabels to data sets. Parameters: axisLabels - Parameters: chartTypeProperties - properties Object specific to the type of chart you are rendering. throws: ChartDataException - if data is not in correct form. |
getAxisLabel | public String getAxisLabel(int index)(Code) | | Returns the x-axis label corresponding to the passed index
Parameters: index - String |
getChartTitle | public String getChartTitle()(Code) | | Returns the chart title.
String the chart title. If this returns NULL, no title will be displayed. |
getDataSetSize | final public int getDataSetSize()(Code) | | Returns the number of values per data set
int |
getNumberOfAxisLabels | public int getNumberOfAxisLabels()(Code) | | Returns the number of labels on the x-axis
int |
getNumberOfDataSets | final public int getNumberOfDataSets()(Code) | | Returns the number of data sets
int |
toHTML | public void toHTML(HTMLGenerator htmlGenerator)(Code) | | Enables the testing routines to display the contents of this Object.
Parameters: htmlGenerator - |
|
|