Hi,
I want to know if there will be any performance issues if I render the chart with new CanvasJS.Chart() instead of calling the render method of the chart instance.
For example, if I have created a chart c = new CanvasJS.Chart();
Senario 1 :
I do some changes with c.chart.options….
and then c.render();
vs
Senario 2 :
Instead of making changes in c.chart.options, I do
c = new CanvasJS.Chart() with new options every time I want to update the chart