java.lang.Object
org.jfree.chart.labels.AbstractCategoryItemLabelGenerator
org.jfree.chart.labels.StandardCategoryToolTipGenerator
org.jfree.chart.labels.IntervalCategoryToolTipGenerator
- All Implemented Interfaces:
Serializable
,Cloneable
,CategoryToolTipGenerator
,PublicCloneable
A tooltip generator for plots that use data from an
IntervalCategoryDataset
.- See Also:
-
Field Summary
-
Constructor Summary
ConstructorDescriptionCreates a new generator with a default number formatter.IntervalCategoryToolTipGenerator
(String labelFormat, DateFormat formatter) Creates a new generator with the specified date formatter.IntervalCategoryToolTipGenerator
(String labelFormat, NumberFormat formatter) Creates a new generator with the specified number formatter. -
Method Summary
Modifier and TypeMethodDescriptionprotected Object[]
createItemArray
(CategoryDataset dataset, int row, int column) Creates the array of items that can be passed to theMessageFormat
class for creating labels.boolean
Tests this tool tip generator for equality with an arbitrary object.Methods inherited from class org.jfree.chart.labels.StandardCategoryToolTipGenerator
generateToolTip
Methods inherited from class org.jfree.chart.labels.AbstractCategoryItemLabelGenerator
clone, generateColumnLabel, generateLabelString, generateRowLabel, getDateFormat, getLabelFormat, getNumberFormat, hashCode
-
Field Details
-
DEFAULT_TOOL_TIP_FORMAT_STRING
The default format string.- See Also:
-
-
Constructor Details
-
IntervalCategoryToolTipGenerator
public IntervalCategoryToolTipGenerator()Creates a new generator with a default number formatter. -
IntervalCategoryToolTipGenerator
Creates a new generator with the specified number formatter.- Parameters:
labelFormat
- the label format string (null
not permitted).formatter
- the number formatter (null
not permitted).
-
IntervalCategoryToolTipGenerator
Creates a new generator with the specified date formatter.- Parameters:
labelFormat
- the label format string (null
not permitted).formatter
- the date formatter (null
not permitted).
-
-
Method Details
-
createItemArray
Creates the array of items that can be passed to theMessageFormat
class for creating labels.- Overrides:
createItemArray
in classAbstractCategoryItemLabelGenerator
- Parameters:
dataset
- the dataset (null
not permitted).row
- the row index (zero-based).column
- the column index (zero-based).- Returns:
- The items (never
null
).
-
equals
Tests this tool tip generator for equality with an arbitrary object.- Overrides:
equals
in classStandardCategoryToolTipGenerator
- Parameters:
obj
- the object (null
permitted).- Returns:
- A boolean.
-