| de.progra.charting.model.DataSet
All known Subclasses: de.progra.charting.model.DefaultDataSet,
DataSet | public interface DataSet (Code) | | An interface used to encapsulate the DataSets in a ChartDataModel.
It's main objective is to store a DataSet to Axis binding.
author: mueller version: 1.0 |
getColumnValueAt | public Object getColumnValueAt(int index)(Code) | | Determines the column value at a specific DataSet index.
Parameters: index - the column index an Object with the column value |
getDataSetLength | public int getDataSetLength()(Code) | | Determines the length of the DataSet
an int equal to the length |
getTitle | public String getTitle()(Code) | | Returns the Title of the DataSet.
a String containing the DataSet's title. |
getValueAt | public Object getValueAt(int index)(Code) | | Returns a value in the DataSet
Parameters: index - the DataSet index an Object with the value. |
getYAxis | public int getYAxis()(Code) | | Returns the axis to which this DataSet is attached.
the axis constant |
setColumnValueAt | public void setColumnValueAt(int index, Object col)(Code) | | Sets the column value
Parameters: index - the column index Parameters: col - the column value |
setTitle | public void setTitle(String title)(Code) | | Sets the DataSet's title.
Parameters: title - the String title for the DataSet |
setValueAt | public void setValueAt(int index, Object val)(Code) | | Stores a value in the DataSet.
Parameters: index - the DataSet index Parameters: val - the value to be stored |
setYAxis | public void setYAxis(int yaxis)(Code) | | Sets the axis this DataSet is attached to.
Parameters: yaxis - the axis constant. |
|
|