Home Forums Chart Support Data only Loads after window is resized Reply To: Data only Loads after window is resized

#29000

**** UPDATE ****

In combination with your advise and another solution I managed to make it work thanks to you.

So first problem was, as you pointed out, I was not rendering data after retrieving it so I used chart.render(); after getting data.

The next issue was, that only one graph was showing up instead of two. That was caused by me trying to render two graphs with one chart.render(); function instead of two. +++SOLUTION+++. So I called my two graphs chart1 and chart2, and I used this

chart1.render();
chart2.render();

to update graphs and now both graphs are working without the need of resizing window.
.

Thank you for your help, I am very pleased to choose this package, not only that it is very nice package, but support is very good too. Thank you to you and your team.

  • This reply was modified 4 years ago by Saulius.