Package org.jfree.chart.labels
Class IntervalCategoryToolTipGenerator
java.lang.Object
org.jfree.chart.labels.AbstractCategoryItemLabelGenerator
org.jfree.chart.labels.StandardCategoryToolTipGenerator
org.jfree.chart.labels.IntervalCategoryToolTipGenerator
- All Implemented Interfaces:
Serializable
,Cloneable
,CategoryToolTipGenerator
,org.jfree.util.PublicCloneable
public class IntervalCategoryToolTipGenerator extends StandardCategoryToolTipGenerator implements CategoryToolTipGenerator, org.jfree.util.PublicCloneable, Cloneable, Serializable
A tooltip generator for plots that use data from an
IntervalCategoryDataset
.- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description static String
DEFAULT_TOOL_TIP_FORMAT_STRING
The default format string. -
Constructor Summary
Constructors Constructor Description IntervalCategoryToolTipGenerator()
Creates 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
Methods inherited from class org.jfree.chart.labels.StandardCategoryToolTipGenerator
generateToolTip
Methods inherited from class org.jfree.chart.labels.AbstractCategoryItemLabelGenerator
clone, equals, getDateFormat, getLabelFormat, getNumberFormat
Methods inherited from class java.lang.Object
getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.jfree.chart.labels.CategoryToolTipGenerator
generateToolTip
Methods inherited from interface org.jfree.util.PublicCloneable
clone
-
Field Details
-
DEFAULT_TOOL_TIP_FORMAT_STRING
The default format string.- See Also:
- Constant Field Values
-
-
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).
-