org.jfree.chart.labels

Class IntervalCategoryToolTipGenerator

public class IntervalCategoryToolTipGenerator extends StandardCategoryToolTipGenerator implements CategoryToolTipGenerator, PublicCloneable, Cloneable, Serializable

A tooltip generator for plots that use data from an IntervalCategoryDataset.
Field Summary
static StringDEFAULT_TOOL_TIP_FORMAT_STRING
The default format string.
Constructor Summary
IntervalCategoryToolTipGenerator()
Creates a new generator with a default number formatter.
IntervalCategoryToolTipGenerator(String labelFormat, NumberFormat formatter)
Creates a new generator with the specified number formatter.
IntervalCategoryToolTipGenerator(String labelFormat, DateFormat formatter)
Creates a new generator with the specified date formatter.
Method Summary
protected Object[]createItemArray(CategoryDataset dataset, int row, int column)
Creates the array of items that can be passed to the MessageFormat class for creating labels.

Field Detail

DEFAULT_TOOL_TIP_FORMAT_STRING

public static final String DEFAULT_TOOL_TIP_FORMAT_STRING
The default format string.

Constructor Detail

IntervalCategoryToolTipGenerator

public IntervalCategoryToolTipGenerator()
Creates a new generator with a default number formatter.

IntervalCategoryToolTipGenerator

public IntervalCategoryToolTipGenerator(String labelFormat, NumberFormat formatter)
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

public IntervalCategoryToolTipGenerator(String labelFormat, DateFormat formatter)
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 Detail

createItemArray

protected Object[] createItemArray(CategoryDataset dataset, int row, int column)
Creates the array of items that can be passed to the MessageFormat class for creating labels.

Parameters: dataset the dataset (null not permitted). row the row index (zero-based). column the column index (zero-based).

Returns: The items (never null).