469470471472473474475
public void setShapeOutlineStroke(Stroke stroke) { if (stroke == null) { throw new NullPointerException("Null 'stroke' argument"); } this.shapeOutlineStroke = stroke; notifyListeners(new LegendChangeEvent(this)); }
489490491492493494495
* * @param paint the paint. */ public void setShapeOutlinePaint(Paint paint) { this.shapeOutlinePaint = paint; notifyListeners(new LegendChangeEvent(this)); }
499500501502503504505
* * @param flag the new value of the flag. */ public void setDisplaySeriesShapes(boolean flag) { this.displaySeriesShapes = flag; notifyListeners(new LegendChangeEvent(this)); }
529530531532533534535
* * @param factor the factor. */ public void setShapeScaleX(double factor) { this.shapeScaleX = factor; notifyListeners(new LegendChangeEvent(this)); }
549550551552553554555
* * @param factor the factor. */ public void setShapeScaleY(double factor) { this.shapeScaleY = factor; notifyListeners(new LegendChangeEvent(this)); }
559560561562563564565
* * @param flag the new value of the flag. */ public void setDisplaySeriesLines(boolean flag) { this.displaySeriesLines = flag; notifyListeners(new LegendChangeEvent(this)); }
592593594595596597598
public void setRenderingOrder(LegendRenderingOrder order) { if (order == null) { throw new IllegalArgumentException("Null 'order' argument."); } this.renderingOrder = order; notifyListeners(new LegendChangeEvent(this)); }
616617618619620621622
* * @param arcWidth the new arc width. */ public void setBoundingBoxArcWidth(int arcWidth) { this.boundingBoxArcWidth = arcWidth; notifyListeners(new LegendChangeEvent(this)); }
639640641642643644645
* * @param arcHeight the new arc height. */ public void setBoundingBoxArcHeight(int arcHeight) { this.boundingBoxArcHeight = arcHeight; notifyListeners(new LegendChangeEvent(this)); }
670671672673674675676
* * @param width the new width. */ public void setPreferredWidth(double width) { this.preferredWidth = width; notifyListeners(new LegendChangeEvent(this)); }