In (Android WebView HTML5 canvas error) i posted a question regarding plotting graphs using Graph.js library. The problem i have now is that if i call the function to plot t
I was having the same problem. I was able to solve it by setting option:
responsive: false, maintainAspectRatio: true, showScale: false,
And in css, set the width of the container div the same as the canvas:
#canvasContainer { width: 300px; } canvas { width: 300px; }