Class StandardCategoryItemLabelGenerator

java.lang.Object
org.jfree.chart.labels.AbstractCategoryItemLabelGenerator
org.jfree.chart.labels.StandardCategoryItemLabelGenerator
All Implemented Interfaces:
Serializable, Cloneable, CategoryItemLabelGenerator, PublicCloneable
Direct Known Subclasses:
IntervalCategoryItemLabelGenerator

public class StandardCategoryItemLabelGenerator extends AbstractCategoryItemLabelGenerator implements CategoryItemLabelGenerator, Cloneable, PublicCloneable, Serializable
A standard label generator that can be used with a CategoryItemRenderer.
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      For serialization.
      See Also:
    • DEFAULT_LABEL_FORMAT_STRING

      public static final String DEFAULT_LABEL_FORMAT_STRING
      The default format string.
      See Also:
  • Constructor Details

    • StandardCategoryItemLabelGenerator

      public StandardCategoryItemLabelGenerator()
      Creates a new generator with a default number formatter.
    • StandardCategoryItemLabelGenerator

      public StandardCategoryItemLabelGenerator(String labelFormat, NumberFormat formatter)
      Creates a new generator with the specified number formatter.
      Parameters:
      labelFormat - the label format string (null not permitted).
      formatter - the number formatter (null not permitted).
    • StandardCategoryItemLabelGenerator

      public StandardCategoryItemLabelGenerator(String labelFormat, NumberFormat formatter, NumberFormat percentFormatter)
      Creates a new generator with the specified number formatter.
      Parameters:
      labelFormat - the label format string (null not permitted).
      formatter - the number formatter (null not permitted).
      percentFormatter - the percent formatter (null not permitted).
    • StandardCategoryItemLabelGenerator

      public StandardCategoryItemLabelGenerator(String labelFormat, DateFormat formatter)
      Creates a new generator with the specified date formatter.
      Parameters:
      labelFormat - the label format string (null not permitted).
      formatter - the date formatter (null not permitted).
  • Method Details