| org.jfree.data.xy.XisSymbolic
XisSymbolic | public interface XisSymbolic (Code) | | Represent a data set where X is a symbolic values. Each symbolic value is
linked with an Integer.
|
Method Summary | |
public String | getXSymbolicValue(int series, int item) Returns the symbolic value of the data set specified by
series and item parameters.
Parameters: series - value of the serie. Parameters: item - value of the item. | public String | getXSymbolicValue(Integer val) Returns the symbolic value linked with the specified
Integer .
Parameters: val - value of the integer linked with the symbolic value. | public String[] | getXSymbolicValues() Returns the list of symbolic values. |
getXSymbolicValue | public String getXSymbolicValue(int series, int item)(Code) | | Returns the symbolic value of the data set specified by
series and item parameters.
Parameters: series - value of the serie. Parameters: item - value of the item. The symbolic value. |
getXSymbolicValue | public String getXSymbolicValue(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. |
getXSymbolicValues | public String[] getXSymbolicValues()(Code) | | Returns the list of symbolic values.
An array of symbolic values. |
|
|