1098109911001101110211031104
if (paint == null) { this.tickLabelPaintMap.remove(category); } else { this.tickLabelPaintMap.put(category, paint); } this.notifyListeners(new AxisChangeEvent(this)); }
1111111211131114111511161117
* the margin as a percentage of the axis length (for example, * 0.05 is five percent). */ public void setUpperMargin(final double margin) { this.upperMargin = margin; this.notifyListeners(new AxisChangeEvent(this)); }
340341342343344345346
public void setSubLabelFont(final Font font) { if (font == null) { throw new IllegalArgumentException("Null 'font' argument."); } this.subLabelFont = font; this.notifyListeners(new AxisChangeEvent(this)); }
356357358359360361362
if (paint == null) { throw new IllegalArgumentException("Null 'paint' argument."); } this.getPlot().getDrawingAssets().setColor(Plot.COLOR_SUB_LABEL, paint); this.notifyListeners(new AxisChangeEvent(this)); }
1373137413751376137713781379
* @param formatter * the date formatter (<code>null</code> permitted). */ public void setDateFormatOverride(final DateFormat formatter) { this.dateFormatOverride = formatter; this.notifyListeners(new AxisChangeEvent(this)); }
1386138713881389139013911392
* the date (<code>null</code> not permitted). */ public void setMaximumDate(final Date maximumDate) { this.setRange(new DateRange(this.getMinimumDate(), maximumDate), true, false); this.notifyListeners(new AxisChangeEvent(this)); }
1398139914001401140214031404
* @param date * the date (<code>null</code> not permitted). */ public void setMinimumDate(final Date date) { this.setRange(new DateRange(date, this.getMaximumDate()), true, false); this.notifyListeners(new AxisChangeEvent(this)); }
1483148414851486148714881489
public void setTickMarkPosition(final DateTick.MarkPosition position) { if (position == null) { throw new IllegalArgumentException("Null 'position' argument."); } this.tickMarkPosition = position; this.notifyListeners(new AxisChangeEvent(this)); }
151615171518151915201521152215231524
this.tickUnit = unit; if (turnOffAutoSelection) { this.setAutoTickUnitSelection(false, false); } if (notify) { this.notifyListeners(new AxisChangeEvent(this)); } }
15331534153515361537153815391540
* the timeline. */ public void setTimeline(final Timeline timeline) { if (this.timeline != timeline) { this.timeline = timeline; this.notifyListeners(new AxisChangeEvent(this)); } }