encodle / gflot

Automatically exported from code.google.com/p/gflot
0 stars 0 forks source link

Plot rendering in IE #56

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Copying and pasting any example from http://gflot2.appspot.com/
2. Creating even the smiplest plot, with one data series.

Plot is added to page, but without a border, what's the smallest problem, but 
there's no lines on it. Only axises.

IE 8.0.7601.17514CO, Windows 7 32bit, Ent. edition

If I open any example on gflot2.appsopt.com in IE it works fine, but any of 
them doesn't work in my app, this problem is only in IE, in Chrome and Firefox 
everything's in order.

Original issue reported on code.google.com by szczerba...@gmail.com on 23 Oct 2012 at 12:46

GoogleCodeExporter commented 8 years ago
Can you try adding those lines like in 
http://code.google.com/p/gflot/source/browse/trunk/examples/src/main/java/com/go
oglecode/gflot/examples/client/examples/DefaultActivity.java :

Scheduler.get().scheduleDeferred( new ScheduledCommand()
{
  @Override
  public void execute()
  {
    // trick under IE6 to force a dom reconstruction
    PopupPanel pop = new PopupPanel();
    pop.show();
    pop.hide();
  }
} );

Original comment by nmr.morel on 23 Oct 2012 at 7:13

GoogleCodeExporter commented 8 years ago

Original comment by nmr.morel on 19 Jan 2013 at 4:46