使用toBase64Image() 函数显示空白PNG图片
如果使用toBase64Image() 函数显示空白图片,则需要使用以下操作才能正确使用
animation: { duration: 2000, onComplete: function (animation) { this.toBase64Image(); } }
通过上述操作,你还可以使用另一个修复方法。通过附加回调调用save64Img(myChart.toBase64Image()),然后像这样设置它
myLine = { onAnimationComplete: function () { save64Img(myChart.toBase64Image()); } }
广告