You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when I use the setData function and then .draw() the chart clears even if I pass the exact same data as what was originally passed to the plot
ex:
dataChart = $.plot($("#stackchart"), data, options); //this draws the graph fine
oldData = dataChart.getData()
dataChart.setData(oldData);
dataChart.draw(); //after set data, this draw clears the graph
The text was updated successfully, but these errors were encountered:
I'm also experiencing this issue, it seems to me if we had access to the stackData function we could resolve this ourselves. the ability to setData and draw would be huge. We could update our graphs based on user legend selection.
when I use the setData function and then .draw() the chart clears even if I pass the exact same data as what was originally passed to the plot
ex:
dataChart = $.plot($("#stackchart"), data, options); //this draws the graph fine
oldData = dataChart.getData()
dataChart.setData(oldData);
dataChart.draw(); //after set data, this draw clears the graph
The text was updated successfully, but these errors were encountered: