1. 程式人生 > >自定義按鈕 匯出echarts圖

自定義按鈕 匯出echarts圖

var myChart = echarts.init(document.getElementById('test'));
var i = myChart.getDataURL({
    type:'png',
    backgroundColor:'white'
    // 匯出的圖片解析度比例,預設為 1。
    //pixelRatio: number,
 });
 var $a = document.createElement('a');
 $a.setAttribute("href", i);
 $a.setAttribute("download","test.png");
 $a.click();