Package org.jfree.chart.labels
Class StandardCategoryLabelGenerator
java.lang.Object
org.jfree.chart.labels.AbstractCategoryItemLabelGenerator
org.jfree.chart.labels.StandardCategoryLabelGenerator
- All Implemented Interfaces:
Serializable,Cloneable,CategoryLabelGenerator,org.jfree.util.PublicCloneable
- Direct Known Subclasses:
IntervalCategoryLabelGenerator
public class StandardCategoryLabelGenerator extends AbstractCategoryItemLabelGenerator implements CategoryLabelGenerator, Cloneable, org.jfree.util.PublicCloneable, Serializable
A standard label generator that can be used with a
CategoryItemRenderer.- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_LABEL_FORMAT_STRINGThe default format string. -
Constructor Summary
Constructors Constructor Description StandardCategoryLabelGenerator()Creates a new generator with a default number formatter.StandardCategoryLabelGenerator(String labelFormat, DateFormat formatter)Creates a new generator with the specified date formatter.StandardCategoryLabelGenerator(String labelFormat, NumberFormat formatter)Creates a new generator with the specified number formatter. -
Method Summary
Modifier and Type Method Description StringgenerateLabel(CategoryDataset dataset, int row, int column)Generates the label for an item in a dataset.Methods inherited from class org.jfree.chart.labels.AbstractCategoryItemLabelGenerator
clone, equals, getDateFormat, getLabelFormat, getNumberFormatMethods inherited from class java.lang.Object
getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.jfree.util.PublicCloneable
clone
-
Field Details
-
DEFAULT_LABEL_FORMAT_STRING
The default format string.- See Also:
- Constant Field Values
-
-
Constructor Details
-
StandardCategoryLabelGenerator
public StandardCategoryLabelGenerator()Creates a new generator with a default number formatter. -
StandardCategoryLabelGenerator
Creates a new generator with the specified number formatter.- Parameters:
labelFormat- the label format string (nullnot permitted).formatter- the number formatter (nullnot permitted).
-
StandardCategoryLabelGenerator
Creates a new generator with the specified date formatter.- Parameters:
labelFormat- the label format string (nullnot permitted).formatter- the date formatter (nullnot permitted).
-
-
Method Details
-
generateLabel
Generates the label for an item in a dataset. Note: in the current dataset implementation, each row is a series, and each column contains values for a particular category.- Specified by:
generateLabelin interfaceCategoryLabelGenerator- Parameters:
dataset- the dataset (nullnot permitted).row- the row index (zero-based).column- the column index (zero-based).- Returns:
- The label (possibly
null).
-