Example usage for org.jfree.chart PaintMap PaintMap

List of usage examples for org.jfree.chart PaintMap PaintMap

Introduction

In this page you can find the example usage for org.jfree.chart PaintMap PaintMap.

Prototype

public PaintMap() 

Source Link

Document

Creates a new (empty) map.

Usage

From source file:iDynoOptimizer.MOEAFramework26.src.org.moeaframework.analysis.diagnostics.PaintHelper.java

/**
 * Constructs a new paint helper with no assigned paints.
 */
public PaintHelper() {
    super();

    paintMap = new PaintMap();
    nextPaintIndex = 0;
}

From source file:net.sourceforge.processdash.ev.ui.chart.RangeXYItemRenderer.java

public RangeXYItemRenderer() {
    super();/*from ww  w  . j  a  v  a2s  .c  o m*/
    this.line = new Line2D.Double(0.0, 0.0, 0.0, 0.0);
    this.paintMap = new PaintMap();
    this.strokeMap = new StrokeMap();
}

From source file:net.sourceforge.processdash.ui.lib.chart.StandardDiscItemRenderer.java

public StandardDiscItemRenderer() {
    this.discPaintMap = new PaintMap();
    this.baseDiscPaint = Color.gray;
    this.labelPaintMap = new PaintMap();
    this.labelPadding = 5;
    this.minLabelChars = 4;
    this.outlinePaintMap = new PaintMap();
    this.baseOutlinePaint = null;
    this.outlineStrokeMap = new StrokeMap();
    this.baseOutlineStroke = Plot.DEFAULT_OUTLINE_STROKE;
}