Watch a chart "crash" with two simple lines

Take a chart like this one:
http://demo.vaadin.com/charts/#BasicColumn

and add this line of code:
y.setType(AxisType.LOGARITHMIC);

Now if you try to bring up this chart, only the title and legend show. If you brought it up inside a Window and then close the Window, you’ll forever see the red “busy” indictator and the app is effectively hung.

It took me nearly a day of debugging to figure out that it’s the combination of
y.setMin(0); and
y.setType(AxisType.LOGARITHMIC);
that causes this. Nasty :frowning:

Has anyone come across this bug? If not, I will file one. We were hoping to release our app by new year, but not any more, I guess :frowning:

Please file a ticket; it’s not something I’ve seen before.