Echarts 相关用例



  • Echarts 自定义保存为图片按钮的样式及icon

toolbox: {
    feature: {
    saveAsImage: {
        pixelRatio: 2,
        title:'下载',
        icon:'image://<?php echo base_url();?>common/images/icon-top.png'
        }
    }
},


  • Echarts 自定义按钮实现保存图片

$("#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");
});





猜你喜欢

转载自blog.51cto.com/13523022/2114720
今日推荐