org.jfree.chart.labels
public interface CategoryItemLabelGenerator
To assist with cloning charts, classes that implement this interface should also implement the org.jfree.util.PublicCloneable interface.
Method Summary | |
---|---|
String | generateColumnLabel(CategoryDataset dataset, int column)
Generates a label for the specified row.
|
String | generateLabel(CategoryDataset dataset, int row, int column)
Generates a label for the specified item. |
String | generateRowLabel(CategoryDataset dataset, int row)
Generates a label for the specified row.
|
Parameters: dataset the dataset (null
not permitted). column the column index (zero-based).
Returns: The label.
Parameters: dataset the dataset (null
not permitted). row the row index (zero-based). column the column index (zero-based).
Returns: The label (possibly null
).
Parameters: dataset the dataset (null
not permitted). row the row index (zero-based).
Returns: The label.