594595596597598599600
* @param margin * the new margin. */ public void setMargin(final double margin) { this.margin = margin; this.notifyListeners(new RendererChangeEvent(this)); }
12871288128912901291129212931294
if (paint == null) { throw new IllegalArgumentException("Null 'paint' argument."); } this.getDrawingAssets().setColor(Plot.COLOR_ITEM_LABEL_BASE, paint); if (notify) { this.notifyListeners(new RendererChangeEvent(this)); } }
610611612613614615616
* @since 1.0.2 */ public void setNegativeItemLabelPositionFallback( final ItemLabelPosition position) { this.negativeItemLabelPositionFallback = position; this.notifyListeners(new RendererChangeEvent(this)); }
639640641642643644645
* @since 1.0.2 */ public void setPositiveItemLabelPositionFallback( final ItemLabelPosition position) { this.positiveItemLabelPositionFallback = position; this.notifyListeners(new RendererChangeEvent(this)); }
13261327132813291330133113321333
*/ public void setBaseItemLabelsVisible(final Boolean visible, final boolean notify) { this.baseItemLabelsVisible = visible.booleanValue(); if (notify) { this.notifyListeners(new RendererChangeEvent(this)); } }
652653654655656657658
* @param use * the flag. */ public void setUseYInterval(final boolean use) { this.useYInterval = use; this.notifyListeners(new RendererChangeEvent(this)); }
13581359136013611362136313641365
if (position == null) { throw new IllegalArgumentException("Null 'position' argument."); } this.baseNegativeItemLabelPosition = position; if (notify) { this.notifyListeners(new RendererChangeEvent(this)); } }
13911392139313941395139613971398
if (paint == null) { throw new IllegalArgumentException("Null 'paint' argument."); } this.getDrawingAssets().setColor(Plot.COLOR_SERIES_OUTLINE_BASE, paint); if (notify) { this.notifyListeners(new RendererChangeEvent(this)); } }
14231424142514261427142814291430
} this.getDrawingAssets().setStroke(Plot.STROKE_SERIES_OUTLINE_BASE, stroke); if (notify) { this.notifyListeners(new RendererChangeEvent(this)); } }
14511452145314541455145614571458
* notify listeners? */ public void setBasePaint(final Color paint, final boolean notify) { this.getDrawingAssets().setColor(Plot.COLOR_SERIES_BASE, paint); if (notify) { this.notifyListeners(new RendererChangeEvent(this)); } }