码迷,mamicode.com
首页 > Web开发 > 详细

在echarts图表外调用echarts的下载功能以及echarts getdataurl图表数据不显示的问题的解决方案

时间:2018-12-12 15:40:10      阅读:448      评论:0      收藏:0      [点我收藏+]

标签:a标签   pre   too   vue   https   html   地址   作用   api   

问题描述:

echarts图表的toolbox里面本身有下载的功能,但有的时候,我们需要在echarts图表外添加一个按钮来实现下载,以下是基于vue,echarts版本4的一个解决方案记录:

解决方法:
1.借助a标签download属性

<a :href="chartImgUrl" download="echart.png">下载</a>

href属性 => 需要下载的内容的url地址
download属性 => 下载文件重命名
注意:
href链接为同源时,download属性才起作用,否则,只是打开链接内容。

2.借助echarts实例getDataURL方法

链接:http://echarts.baidu.com/api.html#echartsInstance.getDataURL

chart.setOption(option);//在此之后,可以调用getDataURL来获取图表url
//this => vue实例
//chartImgUrl => a的href链接的值
this.chartImgUrl = chart.getDataURL({
    pixelRatio: 2,
    backgroundColor: ‘#fff‘
});

3.通过上面的方式,下载下来的图片只有底图,而没有数据的图表,此时,还需要对echarts实例的配置项中的series进行如下设置来关闭动画,然后就OK了

animation: false

参考链接1:https://blog.csdn.net/zuoyiran520081/article/details/77877355
参考链接2:https://www.jianshu.com/p/12257cd84098

在echarts图表外调用echarts的下载功能以及echarts getdataurl图表数据不显示的问题的解决方案

标签:a标签   pre   too   vue   https   html   地址   作用   api   

原文地址:https://www.cnblogs.com/chaoyueqi/p/10108565.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!