Example usage for org.jfree.chart StrokeMap StrokeMap

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

Introduction

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

Prototype

public StrokeMap() 

Source Link

Document

Creates a new (empty) map.

Usage

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

public RangeXYItemRenderer() {
    super();/*from  ww  w. jav  a  2 s.  co  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;
}