marcomachadosantos / gwt-chronoscope

Automatically exported from code.google.com/p/gwt-chronoscope
GNU Lesser General Public License v2.1
0 stars 0 forks source link

Chart not repainting in IE #79

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
I have a checkbox which has an onchange event. The handler for that event
changes the data used to generate the chart and then calls:

            chronoscope.Chronoscope.createTimeseriesChartById(
                "reading", data_array, chronoscope_width,
                chronoscope_height, function(view) {
                    view.getChart().redraw();
                    largeview=view;
                }
            );

This works properly in Firefox/Chrome. In IE I have to trigger a repaint of
the screen by moving the vertical scrollbar for the browser before the
chart will actually redraw with the modified data.

Is there any way to actually force the chart to redraw in IE?

Original issue reported on code.google.com by Laran.Ev...@gmail.com on 9 Oct 2008 at 5:10

GoogleCodeExporter commented 8 years ago
This should be fixed in recent builds.  Try a recent 2.0-SNAPSHOT.

Original comment by timepedia@gmail.com on 20 Aug 2010 at 8:43