Closed GypsyyCode closed 3 years ago
Yeah, thanks for bringing this up.
We'll need to discuss this and get back to you.
Implemented in 5.0.5.
moveDOM()
(accepts element id or reference as a parameter). Can be used to move whole chart to some other container within DOM.ExportingMenu
was interfering with functionality of form elements on the same page (e.g. select).width
/height
settings using percent values was not working properly.Make sure you clear your browser cache after upgrading. And feel free to contact us again if you are still experiencing this issue.
In my application I'm using vuejs3 and am4charts. To take advantage of the vue setup hook, which is called before or while the dom is rendered, i'm using a lot of
chart.moveHtmlContainer('chartdiv')
after the charts and series and everything are created and then set the data. I created the charts like thatcreate(undefined, XYChart)
But in version 5 I can't create a Root element without a htmltag or html element and I can't create a chart without a root element.
Im looking for some kind of setup and render later solution. Will there be a way to do it like I did it in version 4?