| java.lang.Object org.jfree.chart.labels.SymbolicXYItemLabelGenerator
Method Summary | |
public Object | clone() Returns an independent copy of the generator. | public boolean | equals(Object obj) Tests if this object is equal to another.
Parameters: obj - the other object. | public String | generateLabel(XYDataset dataset, int series, int category) Generates a label for the specified item. | public String | generateToolTip(XYDataset data, int series, int item) Generates a tool tip text item for a particular item within a series.
Parameters: data - the dataset. Parameters: series - the series number (zero-based index). Parameters: item - the item number (zero-based index). |
equals | public boolean equals(Object obj)(Code) | | Tests if this object is equal to another.
Parameters: obj - the other object. A boolean. |
generateLabel | public String generateLabel(XYDataset dataset, int series, int category)(Code) | | Generates a label for the specified item. The label is typically a
formatted version of the data value, but any text can be used.
Parameters: dataset - the dataset (null not permitted). Parameters: series - the series index (zero-based). Parameters: category - the category index (zero-based). The label (possibly null ). |
generateToolTip | public String generateToolTip(XYDataset data, int series, int item)(Code) | | Generates a tool tip text item for a particular item within a series.
Parameters: data - the dataset. Parameters: series - the series number (zero-based index). Parameters: item - the item number (zero-based index). The tool tip text (possibly null ). |
|
|