public interface

XYSeriesLabelGenerator

org.jfree.chart.labels.XYSeriesLabelGenerator
Known Indirect Subclasses

Class Overview

A generator that creates labels for the series in an XYDataset.

Classes that implement this interface should be either (a) immutable, or (b) cloneable via the PublicCloneable interface (defined in the JCommon class library). This provides a mechanism for the referring renderer to clone the generator if necessary.

Summary

Public Methods
abstract String generateLabel(XYDataset dataset, int series)
Generates a label for the specified series.

Public Methods

public abstract String generateLabel (XYDataset dataset, int series)

Generates a label for the specified series. This label will be used for the chart legend.

Parameters
dataset the dataset (null not permitted).
series the series.
Returns
  • A series label.