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

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

Introduction

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

Usage

From source file it.eng.spagobi.engines.chart.bo.charttypes.utils.MyCategoryToolTipGenerator.java

public class MyCategoryToolTipGenerator extends StandardCategoryToolTipGenerator {

    boolean enableFreeTip = false;
    HashMap<String, String> categoriesToolTips = null;
    HashMap<String, String> serieToolTips = null;
    HashMap<String, String> seriesCaption = null;

From source file org.cyberoam.iview.charts.CustomCategoryDataset.java

class CustomToolTipGeneratorForStacked extends StandardCategoryToolTipGenerator {
    private String formatString = null;

    CustomToolTipGeneratorForStacked() {
        formatString = super.getLabelFormat();
    }

From source file org.cyberoam.iview.charts.CustomCategoryAxis.java

/**
 * This class is used in Bar3D to generate tooltip for chart.
 * @author Narendra Shah
 *
 */
class CustomToolTipGenerator extends StandardCategoryToolTipGenerator {