- All Known Implementing Classes:
StandardCategoryItemLabelGenerator
public interface CategoryItemLabelGenerator
An item label generator for category charts (this is used for tooltips and
data item labels). Note that this generator is used for individual data
items, and is distinct from the
CategoryLabelGenerator which
generates labels for series keys, column keys and row keys.
The StandardCategoryItemLabelGenerator class provides the default
implementation.- Since:
- 1.3
-
Method Summary
Modifier and TypeMethodDescriptiongenerateItemLabel(CategoryDataset3D dataset, Comparable<?> seriesKey, Comparable<?> rowKey, Comparable<?> columnKey) Generates a label for one series in aCategoryDataset3D.
-
Method Details
-
generateItemLabel
String generateItemLabel(CategoryDataset3D dataset, Comparable<?> seriesKey, Comparable<?> rowKey, Comparable<?> columnKey) Generates a label for one series in aCategoryDataset3D.- Parameters:
dataset- the dataset (nullnot permitted).seriesKey- the series key (nullnot permitted).rowKey- the row key (nullnot permitted).columnKey- the column key (nullnot permitted).- Returns:
- The series label (possibly
null).
-