-
- All Known Subinterfaces:
XYZToolTipGenerator
- All Known Implementing Classes:
BoxAndWhiskerXYToolTipGenerator,CustomXYToolTipGenerator,HighLowItemLabelGenerator,IntervalXYToolTipGenerator,StandardXYToolTipGenerator,StandardXYZToolTipGenerator,SymbolicXYItemLabelGenerator
public interface XYToolTipGenerator
Interface for a tooltip generator for plots that use data from anXYDataset.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgenerateToolTip(XYDataset dataset, int series, int item)Generates the tooltip text for the specified item.
-
-
-
Method Detail
-
generateToolTip
String generateToolTip(XYDataset dataset, int series, int item)
Generates the tooltip text for the specified item.- Parameters:
dataset- the dataset (nullnot permitted).series- the series index (zero-based).item- the item index (zero-based).- Returns:
- The tooltip text (possibly
null).
-
-