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
If I update the value of ymax using graph instance and try to redraw the graph, ymax value will update in the instance but graph won't redraw the new ymax value.
let graph = Morris.Line(configuration); graph.options.ymax = 1000; graph.redraw(); console.log(graph.options.ymax) // gives 1000 but graph wont update
The text was updated successfully, but these errors were encountered:
If I update the value of ymax using graph instance and try to redraw the graph, ymax value will update in the instance but graph won't redraw the new ymax value.
let graph = Morris.Line(configuration);
graph.options.ymax = 1000;
graph.redraw();
console.log(graph.options.ymax) // gives 1000 but graph wont update
The text was updated successfully, but these errors were encountered: