Java Code Examples for org.jfree.chart.plot.XYPlot#getDrawingSupplier()

The following examples show how to use org.jfree.chart.plot.XYPlot#getDrawingSupplier() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ProjectionPlotRenderer.java    From mzmine3 with GNU General Public License v2.0 6 votes vote down vote up
public ProjectionPlotRenderer(XYPlot plot, ProjectionPlotDataset dataset) {
  super(false, true);
  this.dataset = dataset;
  this.setSeriesShape(0, dataPointsShape);

  paintsForGroups = new Paint[dataset.getNumberOfGroups()];
  DrawingSupplier drawSupp = plot.getDrawingSupplier();
  for (int groupNumber = 0; groupNumber < dataset.getNumberOfGroups(); groupNumber++) {

    Paint nextPaint = drawSupp.getNextPaint();
    while (isAvoidColor((Color) nextPaint))
      nextPaint = drawSupp.getNextPaint();

    paintsForGroups[groupNumber] = nextPaint;

  }

}
 
Example 2
Source File: ProjectionPlotRenderer.java    From mzmine2 with GNU General Public License v2.0 6 votes vote down vote up
public ProjectionPlotRenderer(XYPlot plot, ProjectionPlotDataset dataset) {
  super(false, true);
  this.dataset = dataset;
  this.setSeriesShape(0, dataPointsShape);

  paintsForGroups = new Paint[dataset.getNumberOfGroups()];
  DrawingSupplier drawSupp = plot.getDrawingSupplier();
  for (int groupNumber = 0; groupNumber < dataset.getNumberOfGroups(); groupNumber++) {

    Paint nextPaint = drawSupp.getNextPaint();
    while (isAvoidColor((Color) nextPaint))
      nextPaint = drawSupp.getNextPaint();

    paintsForGroups[groupNumber] = nextPaint;

  }

}
 
Example 3
Source File: AbstractXYItemRenderer.java    From openstock with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Returns the drawing supplier from the plot.
 *
 * @return The drawing supplier (possibly <code>null</code>).
 */
@Override
public DrawingSupplier getDrawingSupplier() {
    DrawingSupplier result = null;
    XYPlot p = getPlot();
    if (p != null) {
        result = p.getDrawingSupplier();
    }
    return result;
}
 
Example 4
Source File: AbstractXYItemRenderer.java    From ccu-historian with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Returns the drawing supplier from the plot.
 *
 * @return The drawing supplier (possibly <code>null</code>).
 */
@Override
public DrawingSupplier getDrawingSupplier() {
    DrawingSupplier result = null;
    XYPlot p = getPlot();
    if (p != null) {
        result = p.getDrawingSupplier();
    }
    return result;
}
 
Example 5
Source File: AbstractXYItemRenderer.java    From SIMVA-SoS with Apache License 2.0 5 votes vote down vote up
/**
 * Returns the drawing supplier from the plot.
 *
 * @return The drawing supplier (possibly <code>null</code>).
 */
@Override
public DrawingSupplier getDrawingSupplier() {
    DrawingSupplier result = null;
    XYPlot p = getPlot();
    if (p != null) {
        result = p.getDrawingSupplier();
    }
    return result;
}
 
Example 6
Source File: AbstractXYItemRenderer.java    From ECG-Viewer with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Returns the drawing supplier from the plot.
 *
 * @return The drawing supplier (possibly <code>null</code>).
 */
@Override
public DrawingSupplier getDrawingSupplier() {
    DrawingSupplier result = null;
    XYPlot p = getPlot();
    if (p != null) {
        result = p.getDrawingSupplier();
    }
    return result;
}
 
Example 7
Source File: AbstractXYItemRenderer.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Returns the drawing supplier from the plot.
 *
 * @return The drawing supplier (possibly <code>null</code>).
 */
public DrawingSupplier getDrawingSupplier() {
    DrawingSupplier result = null;
    XYPlot p = getPlot();
    if (p != null) {
        result = p.getDrawingSupplier();
    }
    return result;
}
 
Example 8
Source File: AbstractXYItemRenderer.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Returns the drawing supplier from the plot.
 *
 * @return The drawing supplier (possibly <code>null</code>).
 */
public DrawingSupplier getDrawingSupplier() {
    DrawingSupplier result = null;
    XYPlot p = getPlot();
    if (p != null) {
        result = p.getDrawingSupplier();
    }
    return result;
}
 
Example 9
Source File: AbstractXYItemRenderer.java    From opensim-gui with Apache License 2.0 5 votes vote down vote up
/**
 * Returns the drawing supplier from the plot.
 *
 * @return The drawing supplier (possibly <code>null</code>).
 */
public DrawingSupplier getDrawingSupplier() {
    DrawingSupplier result = null;
    XYPlot p = getPlot();
    if (p != null) {
        result = p.getDrawingSupplier();
    }
    return result;
}
 
Example 10
Source File: AbstractXYItemRenderer.java    From buffer_bci with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Returns the drawing supplier from the plot.
 *
 * @return The drawing supplier (possibly <code>null</code>).
 */
@Override
public DrawingSupplier getDrawingSupplier() {
    DrawingSupplier result = null;
    XYPlot p = getPlot();
    if (p != null) {
        result = p.getDrawingSupplier();
    }
    return result;
}
 
Example 11
Source File: AbstractXYItemRenderer.java    From buffer_bci with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Returns the drawing supplier from the plot.
 *
 * @return The drawing supplier (possibly <code>null</code>).
 */
@Override
public DrawingSupplier getDrawingSupplier() {
    DrawingSupplier result = null;
    XYPlot p = getPlot();
    if (p != null) {
        result = p.getDrawingSupplier();
    }
    return result;
}