List of usage examples for org.jfree.chart.labels CategoryToolTipGenerator interface-usage
From source file org.squale.squaleweb.util.graph.RepartitionToolTipGenerator.java
/** */ public class RepartitionToolTipGenerator implements CategoryToolTipGenerator { /** * @see org.jfree.chart.labels.CategoryToolTipGenerator#generateToolTip(org.jfree.data.category.CategoryDataset,
From source file lucee.runtime.chart.CategoryToolTipGeneratorImpl.java
public class CategoryToolTipGeneratorImpl implements CategoryToolTipGenerator { private int labelFormat; public CategoryToolTipGeneratorImpl(int labelFormat) { this.labelFormat = labelFormat;
From source file ch.unibe.iam.scg.archie.ui.charts.HistogramTooltipGenerator.java
/**
*
* <p>
* Custom tooltip generator for the age histogram chart. This basically reverts
* all negative values so that all tooltips in the age histogram have positive
* values, even the ones on the negative (left) side.
From source file gchisto.jfreechart.extensions.ChangingCategoryDatasetWithTTG.java
/** * * @author tony */ public interface ChangingCategoryDatasetWithTTG extends ChangingCategoryDataset, CategoryToolTipGenerator { }
From source file org.openfaces.component.chart.impl.generators.DynamicCategoryGenerator.java
/** * @author Ekaterina Shliakhovetskaya */ public class DynamicCategoryGenerator implements CategoryToolTipGenerator, CategoryURLGenerator, Serializable { private transient final GridChartView view; private transient final ChartViewValueExpression dynamicProperty;
From source file guineu.modules.visualization.intensityboxplot.IntensityBoxPlotTooltipGenerator.java
/** * */ class IntensityBoxPlotTooltipGenerator implements CategoryToolTipGenerator, XYToolTipGenerator { public String generateToolTip(CategoryDataset dataset, int row, int column) {
From source file org.angnysa.yaba.swing.SimulationTooltipGenerator.java
public class SimulationTooltipGenerator implements CategoryToolTipGenerator { private TransactionService service; private NumberFormat totalFormat = NumberFormat.getCurrencyInstance(); private NumberFormat diffFormat = TransactionAmountFormatFactory.getFormat();
From source file guineu.modules.visualization.intensityplot.IntensityPlotTooltipGenerator.java
/** * */ class IntensityPlotTooltipGenerator implements CategoryToolTipGenerator, XYToolTipGenerator { /**
From source file net.sf.mzmine.modules.visualization.intensityplot.IntensityPlotTooltipGenerator.java
/** * */ class IntensityPlotTooltipGenerator implements CategoryToolTipGenerator, XYToolTipGenerator { /**
From source file com.googlecode.logVisualizer.chart.perDayConsumption.ConsumptionToolTipGenerator.java
final class ConsumptionToolTipGenerator implements CategoryToolTipGenerator { public String generateToolTip(final CategoryDataset dataset, final int row, final int column) { final ConsumptionDataset data = (ConsumptionDataset) dataset; final Consumable c = data.getConsumable(data.getRowKey(row).toString()); if (c != null) {