List of usage examples for org.jfree.chart.labels XYItemLabelGenerator interface-usage
From source file net.sf.mzmine.modules.visualization.scatterplot.scatterplotchart.DiagonalLineLabelGenerator.java
public class DiagonalLineLabelGenerator implements XYItemLabelGenerator { // We use 3 decimal digits, to show ratios such as "0.125x" public static final DecimalFormat labelFormat = new DecimalFormat("0.###"); /**
From source file net.sf.mzmine.modules.visualization.scatterplot.scatterplotchart.ScatterPlotItemLabelGenerator.java
public class ScatterPlotItemLabelGenerator implements XYItemLabelGenerator { /** * @see org.jfree.chart.labels.XYItemLabelGenerator#generateLabel(org.jfree.data.xy.XYDataset, * int, int) */
From source file org.owasp.benchmark.score.report.LegendXYItemLabelGenerator.java
public class LegendXYItemLabelGenerator extends StandardXYItemLabelGenerator implements XYItemLabelGenerator, Cloneable, PublicCloneable { private LegendItemCollection legendItems; public LegendXYItemLabelGenerator(LegendItemCollection legendItems) { super();
From source file net.sf.mzmine.modules.visualization.tic.TICItemLabelGenerator.java
/**
* Item label generator for TIC visualizer
*
* Basic method for annotation is
*
* 1) Check if this data point is local maximum
From source file net.sf.mzmine.modules.visualization.spectra.renderers.SpectraItemLabelGenerator.java
/** * Label generator for spectra visualizer. Only used to generate labels for the * raw data (ScanDataSet) */ public class SpectraItemLabelGenerator implements XYItemLabelGenerator {
From source file net.sf.mzmine.modules.visualization.metamsecorrelate.visual.pseudospectra.PseudoSpectraItemLabelGenerator.java
/** * Label generator for spectra visualizer. Only used to generate labels for the * raw data (ScanDataSet) */ public class PseudoSpectraItemLabelGenerator implements XYItemLabelGenerator {
From source file io.github.mzmine.util.jfreechart.IntelligentItemLabelGenerator.java
/**
* This implementation of XYItemLabelGenerator assumes that the data points in each series are
* sorted in the X-axis order. It places the item labels only on local maxima, or on left-most data
* points in case multiple data points have the same maximal Y value.
*
*/
From source file io.github.mzmine.modules.plots.chromatogram.ChromatogramPlotDataSet.java
/** * Chromatogram data set */ public interface ChromatogramPlotDataSet extends XYDataset, XYItemLabelGenerator, XYToolTipGenerator { String getDescription();
From source file net.sf.maltcms.chromaui.charts.labels.TopKItemsLabelGenerator.java
/** * Creates labels for the top k items with highest value. * * @author nilshoffmann */ public class TopKItemsLabelGenerator implements XYItemLabelGenerator {
From source file io.github.mzmine.modules.plots.msspectrum.MsSpectrumPlotDataSet.java
/** * MS spectrum data set. Implements IntervalXYDataset for centroid spectra support (rendered by * XYBarRenderer). */ public interface MsSpectrumPlotDataSet extends XYDataset, XYItemLabelGenerator, XYToolTipGenerator, IntervalXYDataset {