通过 toBase64Image() 函数显示空白 PNG 图片
如果使用 toBase64Image() 函数显示一幅空白图像,你需要使用以下方法正确处理
animation: { duration: 2000, onComplete: function (animation) { this.toBase64Image(); } }
这样一来,你还可以使用另一个修复方法。对附加回调调用 save64Img(myChart.toBase64Image()),并将其设置为以下内容
myLine = { onAnimationComplete: function () { save64Img(myChart.toBase64Image()); } }
广告