luis17991 / jfreechart-wrapper-for-vaadin

Automatically exported from code.google.com/p/jfreechart-wrapper-for-vaadin
0 stars 0 forks source link

markAsDirty is not working as expected #4

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. mark the JFreeChart component as dirty (markAsDirty())

What is the expected output? What do you see instead?
The chart will be repainted if the dataset has changed

Please provide any additional information below.

this code can solve the issue :

    /**
     * {@inheritDoc}
     */
    @Override
    public void markAsDirty() {
        super.markAsDirty();
        res = null;
    }

Original issue reported on code.google.com by benoit.d...@gmail.com on 18 Sep 2013 at 8:59