toolbox: {
feature: {
saveAsImage: {
pixelRatio: 2,
title:'下载',
icon:'image://https://cache.tdyun.com/upload/information/20200311/54/208549.jpg'
},
myTool1: {
show: true,
title: '自定义扩展方法1',
icon: 'image://https://cache.tdyun.com/upload/information/20200311/54/208549.jpg',
onclick: function (){
alert('myToolHandler1')
}
}
},
$("#button-download").click(function() {
var i = myChart.getDataURL({
type:'png',
backgroundColor:'white'
// 导出的图片分辨率比例,默认为 1。
//pixelRatio: number,
});
console.log(i);
$(this).attr("href",i);
$(this).attr("download","test.png");
});