Package org.jfree.chart.event

Examples of org.jfree.chart.event.PlotChangeEvent


                "Invalid 'percent' (" + percent + ") argument.");
        }

        if (this.interiorGap != percent) {
            this.interiorGap = percent;
            notifyListeners(new PlotChangeEvent(this));
        }

    }
View Full Code Here


        }

        // make the change...
        if (this.interiorGap != percent) {
            this.interiorGap = percent;
            notifyListeners(new PlotChangeEvent(this));
        }

    }
View Full Code Here

        }

        // make the change (if necessary)...
        if (this.radius != percent) {
            this.radius = percent;
            notifyListeners(new PlotChangeEvent(this));
        }

    }
View Full Code Here

        }

        // make the change...
        if (!this.axisLabelFont.equals(font)) {
            this.axisLabelFont = font;
            notifyListeners(new PlotChangeEvent(this));
        }

    }
View Full Code Here

        }

        // make the change...
        if (!this.axisLabelPaint.equals(paint)) {
            this.axisLabelPaint = paint;
            notifyListeners(new PlotChangeEvent(this));
        }

    }
View Full Code Here

        }

        // make the change...
        if (!this.plotLinePaint.equals(paint)) {
            this.plotLinePaint = paint;
            notifyListeners(new PlotChangeEvent(this));
        }

    }
View Full Code Here

        }

        // make the change...
        if (this.axisLabelGap!=percent) {
            this.axisLabelGap = percent;
            notifyListeners(new PlotChangeEvent(this));
        }

    }
View Full Code Here

     * @param flag  the new show axis labels flag.
     */
    public void setShowAxisLabels(boolean flag) {
        if (this.showAxisLabels != flag) {
            this.showAxisLabels = flag;
            notifyListeners(new PlotChangeEvent(this));
        }
    }
View Full Code Here

     */
    public void setNotify(boolean notify) {
        this.notify = notify;
        // if the flag is being set to true, there may be queued up changes...
        if (notify) {
            notifyListeners(new PlotChangeEvent(this));
        }
    }
View Full Code Here

     * Sends a {@link PlotChangeEvent} to all registered listeners.
     *
     * @since 1.0.10
     */
    protected void fireChangeEvent() {
        notifyListeners(new PlotChangeEvent(this));
    }
View Full Code Here

TOP

Related Classes of org.jfree.chart.event.PlotChangeEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.