| org.krysalis.jcharts.chartData.interfaces.IRadarChartDataSet
All known Subclasses: org.krysalis.jcharts.chartData.RadarChartDataSet,
IRadarChartDataSet | public interface IRadarChartDataSet extends IDataSet(Code) | | Base interface of datasets to be used with radar charts.
author: Rami Hansenne |
getAxisLabel | public String getAxisLabel(int index)(Code) | | Returns the axis label at the specified index.
Parameters: index - String the axis label |
getChartTitle | public String getChartTitle()(Code) | | Returns the chart title.
String the chart title. If this returns NULL, no title will be displayed. |
getDataSetSize | 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 axis
int |
getNumberOfDataSets | public int getNumberOfDataSets()(Code) | | Returns the number of data sets
int |
getValue | public double getValue(int dataset, int index)(Code) | | Returns the value in the data set at the specified position.
Parameters: dataset - Parameters: index - double |
|
|