Package org.jfree.chart.labels
Class SymbolicXYItemLabelGenerator
java.lang.Object
org.jfree.chart.labels.SymbolicXYItemLabelGenerator
- All Implemented Interfaces:
Serializable,Cloneable,XYLabelGenerator,XYToolTipGenerator,org.jfree.util.PublicCloneable
public class SymbolicXYItemLabelGenerator extends Object implements XYLabelGenerator, XYToolTipGenerator, Cloneable, org.jfree.util.PublicCloneable, Serializable
A standard item label generator for plots that use data from an
XYDataset.- Author:
- Anthony Boulestreau
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description SymbolicXYItemLabelGenerator() -
Method Summary
Modifier and Type Method Description Objectclone()Returns an independent copy of the generator.booleanequals(Object o)Tests if this object is equal to another.StringgenerateLabel(XYDataset dataset, int series, int category)Generates a label for the specified item.StringgenerateToolTip(XYDataset data, int series, int item)Generates a tool tip text item for a particular item within a series.
-
Constructor Details
-
SymbolicXYItemLabelGenerator
public SymbolicXYItemLabelGenerator()
-
-
Method Details
-
generateToolTip
Generates a tool tip text item for a particular item within a series.- Specified by:
generateToolTipin interfaceXYToolTipGenerator- Parameters:
data- the dataset.series- the series number (zero-based index).item- the item number (zero-based index).- Returns:
- The tool tip text (possibly
null).
-
generateLabel
Generates a label for the specified item. The label is typically a formatted version of the data value, but any text can be used.- Specified by:
generateLabelin interfaceXYLabelGenerator- Parameters:
dataset- the dataset (nullnot permitted).series- the series index (zero-based).category- the category index (zero-based).- Returns:
- the label (possibly
null).
-
clone
Returns an independent copy of the generator.- Specified by:
clonein interfaceorg.jfree.util.PublicCloneable- Returns:
- A clone.
- Throws:
CloneNotSupportedException- if cloning is not supported.
-
equals
Tests if this object is equal to another.
-