【echarts】echarts图例支持自定义图标以及点击后方法调用

echarts官网:https://echarts.apache.org/handbook/zh/get-started/

以这个图为例,自带有图标和交互,但是如何在后面增加自定义图标呢?

首先我是在vue前端框架里面使用这个echarts的,会有一个vue-echarts工具,方便我们来使用它

因此首先需要下载echarts和vue-echarts的包,然后在main.js项目中引入它:

vue-echarts:https://gitcode.com/ecomfe/vue-echarts/blob/HEAD/README.zh-Hans.md?utm_source=csdn_github_accelerator&isLogin=1

我用的是版本是:

"echarts":"^5.5.0"

"vue-echarts":"^6.6.9"

javascript 复制代码
import ECharts from 'vue-echarts'
import 'echarts'
Vue.config.productionTip = false
// 全局注册组件(也可以使用局部注册)
Vue.component('v-chart', ECharts)

看上面的图列,可以知道我们要调整的部分就是这个部分toolbox

javascript 复制代码
toolbox: {
          feature: {
            dataView: { show: true, readOnly: false },
            magicType: { show: true, type: ["line", "bar"] },
            restore: { show: true },
            saveAsImage: { show: true }
          }
        },

在这个内部增加自定义的配置:

javascript 复制代码
toolbox: {
          feature: {
            dataView: { show: true, readOnly: false },
            magicType: { show: true, type: ["line", "bar"] },
            restore: { show: true },
            // saveAsImage: { show: true },
            // 自定义下载
            myTool: {
                show: true,
                title: '下载数据',
                icon: 'image://../icons/icon-download.png',
                onclick: this.myToolHandler
            },
          }
        },

其中icon: 'image://../icons/icon-download.png'就是指定自定义图标的地址:格式是image://+url

onclick方法是点击这个图标,对应相应方法

title:是鼠标停留在这个图标上的时候,显示的文字

javascript 复制代码
    myToolHandler() {
      alert("下载成功!")
    }

这样就实现了一个自定义图标,演示是这样的:

完整示例代码 :基于https://echarts.apache.org/examples/zh/editor.html?c=mix-line-bar

javascript 复制代码
<template>
  <div>
    <!-- 图表 -->
    <v-chart ref="chart" :option="option" style="height: 400px"></v-chart>
  </div>
</template>
<script>
export default {
  name: "databoardMain",
  mounted() {
    window.addEventListener("resize", this.handleResize);
  },
  beforeDestroy() {
    window.removeEventListener("resize", this.handleResize);
  },
  data() {
    return {
      option: {
        tooltip: {
          trigger: "axis",
          axisPointer: {
            type: "cross",
            crossStyle: {
              color: "#999"
            }
          }
        },
        toolbox: {
          feature: {
            dataView: { show: true, readOnly: false },
            magicType: { show: true, type: ["line", "bar"] },
            restore: { show: true },
            // saveAsImage: { show: true },
            // 自定义下载
            myTool: {
                show: true,
                title: '下载数据',
                icon: 'image://../icons/icon-download.png',
                onclick: this.myToolHandler
            },
          }
        },
        legend: {
          data: ["Evaporation", "Precipitation", "Temperature"]
        },
        xAxis: [
          {
            type: "category",
            data: ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
            axisPointer: {
              type: "shadow"
            }
          }
        ],
        yAxis: [
          {
            type: "value",
            name: "Precipitation",
            min: 0,
            max: 250,
            interval: 50,
            axisLabel: {
              formatter: "{value} ml"
            }
          },
          {
            type: "value",
            name: "Temperature",
            min: 0,
            max: 25,
            interval: 5,
            axisLabel: {
              formatter: "{value} °C"
            }
          }
        ],
        series: [
          {
            name: "Evaporation",
            type: "bar",
            tooltip: {
              valueFormatter: function(value) {
                return value + " ml";
              }
            },
            data: []
          },
          {
            name: "Precipitation",
            type: "bar",
            tooltip: {
              valueFormatter: function(value) {
                return value + " ml";
              }
            },
            data: []
          },
          {
            name: "Temperature",
            type: "line",
            yAxisIndex: 1,
            tooltip: {
              valueFormatter: function(value) {
                return value + " °C";
              }
            },
            data: []
          }
        ]
      }
    };
  },
  created() {
    this.init();
  },
  methods: {
    async init() {
      //初始化数据
      //data数据可以来自后台接口
      this.option.series[0].data = [11,22,11,23,12,22,11]
      this.option.series[1].data = [12,12,12,12,16,17,18];
      this.option.series[2].data = [11,11,12,21,22,25,15];
      this.option = { ...this.option };
    },
    handleResize() {
      this.$refs.chart.resize();
    },
    myToolHandler() {
      alert("下载成功!")
    }
  }
};
</script>
相关推荐
10年前端老司机2 小时前
什么!纯前端也能识别图片中的文案、还支持100多个国家的语言
前端·javascript·vue.js
摸鱼仙人~2 小时前
React 性能优化实战指南:从理论到实践的完整攻略
前端·react.js·性能优化
程序员阿超的博客3 小时前
React动态渲染:如何用map循环渲染一个列表(List)
前端·react.js·前端框架
magic 2453 小时前
模拟 AJAX 提交 form 表单及请求头设置详解
前端·javascript·ajax
小小小小宇7 小时前
前端 Service Worker
前端
只喜欢赚钱的棉花没有糖8 小时前
http的缓存问题
前端·javascript·http
小小小小宇8 小时前
请求竞态问题统一封装
前端
loriloy8 小时前
前端资源帖
前端
源码超级联盟8 小时前
display的block和inline-block有什么区别
前端
GISer_Jing8 小时前
前端构建工具(Webpack\Vite\esbuild\Rspack)拆包能力深度解析
前端·webpack·node.js