I am using Chart.js. I am trying to convert the chart to an image by getting a base 64 string. The tutorial (http://www.chartjs.org/docs/) devotes an entire 1 line on the to
You can also use the toBase64Image() method setting animation: false
var options = { bezierCurve : false, animation: false };
Updated Fiddle