| java.lang.Object org.jfree.chart.labels.AbstractCategoryItemLabelGenerator org.jfree.chart.labels.StandardCategoryToolTipGenerator
All known Subclasses: org.jfree.chart.labels.BoxAndWhiskerToolTipGenerator, org.jfree.chart.labels.IntervalCategoryToolTipGenerator,
Method Summary | |
public boolean | equals(Object obj) Tests this generator for equality with an arbitrary object.
Parameters: obj - the object (null permitted). | public String | generateToolTip(CategoryDataset dataset, int row, int column) Generates the tool tip text for an item in a dataset. |
DEFAULT_TOOL_TIP_FORMAT_STRING | final public static String DEFAULT_TOOL_TIP_FORMAT_STRING(Code) | | The default format string.
|
StandardCategoryToolTipGenerator | public StandardCategoryToolTipGenerator()(Code) | | Creates a new generator with a default number formatter.
|
StandardCategoryToolTipGenerator | public StandardCategoryToolTipGenerator(String labelFormat, NumberFormat formatter)(Code) | | Creates a new generator with the specified number formatter.
Parameters: labelFormat - the label format string (null not permitted). Parameters: formatter - the number formatter (null not permitted). |
StandardCategoryToolTipGenerator | public StandardCategoryToolTipGenerator(String labelFormat, DateFormat formatter)(Code) | | Creates a new generator with the specified date formatter.
Parameters: labelFormat - the label format string (null not permitted). Parameters: formatter - the date formatter (null not permitted). |
equals | public boolean equals(Object obj)(Code) | | Tests this generator for equality with an arbitrary object.
Parameters: obj - the object (null permitted). A boolean. |
generateToolTip | public String generateToolTip(CategoryDataset dataset, int row, int column)(Code) | | 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.
Parameters: dataset - the dataset (null not permitted). Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). The tooltip text (possibly null ). |
|
|