somewhat working highcharts component

I made a simple highcharts webix component. It works somewhat well for me, but it still has some strange resizing problems ( while in multiview layouts ).

Anyway, here it is : GitHub - marcpmichel/webix-highcharts: webix highcharts component

Many thanks for sharing your solution !

while in multiview layouts

Hidden panels are detached from the DOM, so it is possible that highchart just can’t size self properly in such state. You can add the onViewShow event handler to the component and call chart.reflow from the handler ( it just a blnd suggestion )

Just found that the bug is not due to multiview, but it’s a Chrome bug. It seems to works fine on firefox.
I improved my demo (with resizers) and fixed a few quirks.

Well, in fact there was a real problem with multiview, and, @maksim, your solution did the trick ! Thanks again !