org.jfree.chart.labels
Class StandardCategoryToolTipGenerator
- CategoryToolTipGenerator, Cloneable, PublicCloneable, Serializable
boolean | equals(Object obj) - Tests this generator for equality with an arbitrary object.
|
String | generateToolTip(CategoryDataset dataset, int row, int column) - Generates the tool tip text for an item in a dataset.
|
StandardCategoryToolTipGenerator
public StandardCategoryToolTipGenerator(String labelFormat,
DateFormat formatter)
Creates a new generator with the specified date formatter.
labelFormat
- the label format string (null
not
permitted).formatter
- the date formatter (null
not permitted).
StandardCategoryToolTipGenerator
public StandardCategoryToolTipGenerator(String labelFormat,
NumberFormat formatter)
Creates a new generator with the specified number formatter.
labelFormat
- the label format string (null
not
permitted).formatter
- the number formatter (null
not permitted).
generateToolTip
public String generateToolTip(CategoryDataset dataset,
int row,
int column)
Generates the tool tip text for an item in a dataset. Note: in the
current dataset implementation, each row is a series, and each column
contains values for a particular category.
- generateToolTip in interface CategoryToolTipGenerator
dataset
- the dataset (null
not permitted).row
- the row index (zero-based).column
- the column index (zero-based).
- The tooltip text (possibly
null
).