256257258259260261262263
* @param anchor the new anchor value. */ public void setAnchor(int anchor) { if (isValidAnchor(anchor)) { this.anchor = anchor; notifyListeners(new LegendChangeEvent(this)); } }
121122123124125126127
* * @param text the new legend text. */ public void setLegendText(String text) { this.legendText = text; notifyListeners(new LegendChangeEvent(this)); }