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 StringDEFAULT_TOOL_TIP_FORMAT_STRINGThe 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
generateToolTipMethods inherited from class org.jfree.chart.labels.AbstractCategoryItemLabelGenerator
clone, equals, getDateFormat, getLabelFormat, getNumberFormatMethods inherited from class java.lang.Object
getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.jfree.chart.labels.CategoryToolTipGenerator
generateToolTipMethods 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 (nullnot permitted).formatter- the number formatter (nullnot permitted).
-
IntervalCategoryToolTipGenerator
Creates a new generator with the specified date formatter.- Parameters:
labelFormat- the label format string (nullnot permitted).formatter- the date formatter (nullnot permitted).
-