Example usage for org.jfree.chart.labels StandardXYToolTipGenerator subclass-usage

List of usage examples for org.jfree.chart.labels StandardXYToolTipGenerator subclass-usage

Introduction

In this page you can find the example usage for org.jfree.chart.labels StandardXYToolTipGenerator subclass-usage.

Usage

From source file visual.ChartToolTip.java

/**
 *
 * @author jlewis
 */
public class ChartToolTip extends StandardXYToolTipGenerator {

From source file MWC.GUI.JFreeChart.DatedToolTipGenerator.java

/** custom class which shows the date in a tooltip
 *
 */
public final class DatedToolTipGenerator extends StandardXYToolTipGenerator {
    /**
      * 

From source file gda.plots.SimpleXYToolTipGenerator.java

/**
 * Extends StandardXYToolTipGenerator to provide more information for the ToolTips associated with data points in lines.
 */
public class SimpleXYToolTipGenerator extends StandardXYToolTipGenerator {
    /**
     * Generates a tool tip text item for a particular item within a series.

From source file net.sourceforge.processdash.ev.ui.chart.EVXYToolTipGenerator.java

public abstract class EVXYToolTipGenerator extends StandardXYToolTipGenerator {
    private static final String DEFAULT_TOOLTIP_FORMAT = "{0}: ({1}, {2})";

    public EVXYToolTipGenerator(DateFormat xFormat, NumberFormat yFormat) {
        super(DEFAULT_TOOLTIP_FORMAT, xFormat, yFormat);
    }