Class IntervalXYToolTipGenerator

java.lang.Object
org.jfree.chart.labels.AbstractXYItemLabelGenerator
org.jfree.chart.labels.IntervalXYToolTipGenerator
All Implemented Interfaces:
Serializable, Cloneable, XYToolTipGenerator, PublicCloneable

A tooltip generator for datasets that implement the IntervalXYDataset interface.
See Also:
  • Field Details

  • Constructor Details

    • IntervalXYToolTipGenerator

      Creates a new tooltip generator using default number formatters.
    • IntervalXYToolTipGenerator

      public IntervalXYToolTipGenerator(String formatString, NumberFormat xFormat, NumberFormat yFormat)
      Creates a new tooltip 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).
    • IntervalXYToolTipGenerator

      public IntervalXYToolTipGenerator(String formatString, DateFormat xFormat, NumberFormat yFormat)
      Creates a new tool tip 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).
    • IntervalXYToolTipGenerator

      public IntervalXYToolTipGenerator(String formatString, NumberFormat xFormat, DateFormat yFormat)
      Creates a new tool tip 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).
    • IntervalXYToolTipGenerator

      public IntervalXYToolTipGenerator(String formatString, DateFormat xFormat, DateFormat yFormat)
      Creates a new tool tip 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 Details