- All Known Implementing Classes:
StandardXYZLabelGenerator
public interface XYZLabelGenerator
A label generator for XYZ charts, used to create labels for the chart
legend. The (
StandardXYZLabelGenerator
) class provides the default
implementation.- Since:
- 1.2
-
Method Summary
Modifier and TypeMethodDescription<S extends Comparable<S>>
StringgenerateSeriesLabel
(XYZDataset<S> dataset, S seriesKey) Generates a label for one series in aXYZDataset
.
-
Method Details
-
generateSeriesLabel
Generates a label for one series in aXYZDataset
.- Type Parameters:
S
- The type of the series keys in the dataset.- Parameters:
dataset
- the dataset (null
not permitted).seriesKey
- the series key (null
not permitted).- Returns:
- The series label (possibly
null
).
-