| org.jfree.data.xy.YisSymbolic
YisSymbolic | public interface YisSymbolic (Code) | | Represent a data set where Y is a symbolic values. Each symbolic value is
linked with an Integer.
|
Method Summary | |
public String | getYSymbolicValue(int series, int item) Returns the symbolic value of the data set specified by
series and item parameters.
Parameters: series - the series index (zero-based). Parameters: item - the item index (zero-based). | public String | getYSymbolicValue(Integer val) Returns the symbolic value linked with the specified
Integer .
Parameters: val - value of the integer linked with the symbolic value. | public String[] | getYSymbolicValues() Returns the list of symbolic values. |
getYSymbolicValue | public String getYSymbolicValue(int series, int item)(Code) | | Returns the symbolic value of the data set specified by
series and item parameters.
Parameters: series - the series index (zero-based). Parameters: item - the item index (zero-based). The symbolic value. |
getYSymbolicValue | public String getYSymbolicValue(Integer val)(Code) | | Returns the symbolic value linked with the specified
Integer .
Parameters: val - value of the integer linked with the symbolic value. The symbolic value. |
getYSymbolicValues | public String[] getYSymbolicValues()(Code) | | Returns the list of symbolic values.
The symbolic values. |
|
|