Class StandardXYItemLabelGenerator

    • Constructor Detail

      • StandardXYItemLabelGenerator

        public StandardXYItemLabelGenerator​(java.lang.String formatString)
        Creates an item label generator using the specified number formatters.
        Parameters:
        formatString - the item label format string (null not permitted).
        Since:
        1.0.14
      • StandardXYItemLabelGenerator

        public StandardXYItemLabelGenerator​(java.lang.String formatString,
                                            java.text.NumberFormat xFormat,
                                            java.text.NumberFormat yFormat)
        Creates an item label generator using the specified number formatters.
        Parameters:
        formatString - the item label format string (null not permitted).
        xFormat - the format object for the x values (null not permitted).
        yFormat - the format object for the y values (null not permitted).
      • StandardXYItemLabelGenerator

        public StandardXYItemLabelGenerator​(java.lang.String formatString,
                                            java.text.DateFormat xFormat,
                                            java.text.NumberFormat yFormat)
        Creates an item label generator using the specified formatters.
        Parameters:
        formatString - the item label format string (null not permitted).
        xFormat - the format object for the x values (null not permitted).
        yFormat - the format object for the y values (null not permitted).
      • StandardXYItemLabelGenerator

        public StandardXYItemLabelGenerator​(java.lang.String formatString,
                                            java.text.NumberFormat xFormat,
                                            java.text.DateFormat yFormat)
        Creates an item label generator using the specified formatters (a number formatter for the x-values and a date formatter for the y-values).
        Parameters:
        formatString - the item label format string (null not permitted).
        xFormat - the format object for the x values (null permitted).
        yFormat - the format object for the y values (null not permitted).
        Since:
        1.0.4
      • StandardXYItemLabelGenerator

        public StandardXYItemLabelGenerator​(java.lang.String formatString,
                                            java.text.DateFormat xFormat,
                                            java.text.DateFormat yFormat)
        Creates a label generator using the specified date formatters.
        Parameters:
        formatString - the label format string (null not permitted).
        xFormat - the format object for the x values (null not permitted).
        yFormat - the format object for the y values (null not permitted).
    • Method Detail

      • generateLabel

        public java.lang.String generateLabel​(XYDataset dataset,
                                              int series,
                                              int item)
        Generates the item label text for an item in a dataset.
        Specified by:
        generateLabel in interface XYItemLabelGenerator
        Parameters:
        dataset - the dataset (null not permitted).
        series - the series index (zero-based).
        item - the item index (zero-based).
        Returns:
        The label text (possibly null).
      • clone

        public java.lang.Object clone()
                               throws java.lang.CloneNotSupportedException
        Returns an independent copy of the generator.
        Specified by:
        clone in interface org.jfree.util.PublicCloneable
        Overrides:
        clone in class AbstractXYItemLabelGenerator
        Returns:
        A clone.
        Throws:
        java.lang.CloneNotSupportedException - if cloning is not supported.
      • equals

        public boolean equals​(java.lang.Object obj)
        Tests this object for equality with an arbitrary object.
        Overrides:
        equals in class AbstractXYItemLabelGenerator
        Parameters:
        obj - the other object (null permitted).
        Returns:
        A boolean.