在 Vue 项目中快速引入和使用 ECharts

ECharts 是一个强大的数据可视化库,能够帮助我们轻松创建各种图表。本文将详细介绍如何在 Vue 项目中快速引入和使用 ECharts,并使用 Vue 的选项式 API 来实现一个简单的柱状图组件。

1. 安装 ECharts

首先,我们需要通过 npm 或 yarn 安装 ECharts:

复制代码
npm install echarts --save

//或者

yarn add echarts

2. 创建一个使用 ECharts 的组件

我们将创建一个简单的柱状图组件,命名为 BarChart.vue

2.1 完整代码

复制代码
<template>
  <div ref="barChart" style="width: 100%; height: 250px"></div>
</template>

<script>
import * as echarts from "echarts";

export default {
  name: "BarChart",
props: {
    chartData: {
      type: Object,
      required: true
    }
  },

  mounted() {
  if (this.chartData && Object.keys(this.chartData).length > 0) {
    this.createChart(this.chartData);
  } else {
    console.warn("chartData is empty or not provided.");
  }
},
watch: {
  chartData: {
    handler(newVal) {
      if (newVal && Object.keys(newVal).length > 0) {
        this.createChart(newVal);
      }
    },
    deep: true // 深度监听对象的变化
  }
},
  methods: {
    createChart(listByOutbounddata) {
  const chart = echarts.init(this.$refs.barChart);
      const option = {
        title: {
          text: "",
        },
        tooltip: {},
        legend: {
          data: ["出库(万)", "入库(万)"],
          top: 10,
          left: "center",
          textStyle: {
            color: "#ccc",
          },
        },
        // color: ["#009491"],
        grid: {
          left: "0%",
          right: "0%",
          bottom: "0%",
          top: "20%",
          containLabel: true,
        },
        xAxis: {
          axisLabel: {
            textStyle: {
              color: "#fff",
              fontSize: "12",
            },
            lineStyle: {
              color: "#000",
            },
            interval: 0,
            rotate: 40,
          },
          type: "category",
          data: listByOutbounddata.map((item) => item.date),
          axisTick: {
            alignWithLabel: true,
          },
        },
        yAxis: {
          axisLabel: {
            textStyle: {
              color: "#fff",
              fontSize: "12",
            },
            lineStyle: {
              color: "#999",
            },
            interval: 0,
          },
          splitLine: {
            show: true,
            lineStyle: {
              color: "#000",
            },
          },
        },
        series: [
          {
            name: "出库(万)",
            type: "bar",
            barWidth: "15px",
            label: {
              normal: {
                show: true,
                position: "top",
                color: "#fff",
              },
            },
            itemStyle: {
              color: "#5ece9c",
              barBorderRadius: 2,
            },
            zlevel: 2,
            data: listByOutbounddata.map((item) => item.todayOutboundQuantity),
          },

          {
            name: "入库(万)",
            type: "bar",
            barWidth: "15px",
            label: {
              normal: {
                show: true,
                position: "top",
                color: "#fff",
              },
            },
            itemStyle: {
              color: "#299de8",
              barBorderRadius: 2,
            },
            zlevel: 2,
            data: listByOutbounddata.map((item) => item.todayInboundQuantity),
          },
        ],
      };
      chart.setOption(option);
    },
  },
};
</script>

3. 引入组件并使用

App.vue 或者其他需要使用这个图表的组件中,引入并使用 BarChart 组件。

复制代码
<template>
  <div id="app">
    <BarChart  :chartData="listByOutbounddata"  />
  </div>
</template>

<script>
import BarChart from './components/BarChart.vue';

export default {
  name: 'App',
  components: {
    BarChart,
  },
 data() {
    return {
        listByOutbounddata:[], //后台请求的值
   }
 }
};
</script>

<style>
</style>

4. 运行项目

确保你已经在项目根目录下运行了 npm run serve 或者 yarn serve,然后在浏览器中打开项目,你应该能够看到一个简单的柱状图。

相关推荐
秃头网友小李3 天前
前端难点:keep-alive 缓存什么?RouterView 的 key 为什么要带 scopeId?
前端·vue.js
徐小夕3 天前
JitWord 3.0 正式发布,高精度Word异构解析+复杂组件兼容,打造web端协同Word编辑器
前端·vue.js·算法
奋斗吧程序媛3 天前
补充一个小知识点:有关@click.native
前端·vue.js
英勇无比的消炎药3 天前
一行命令背后:TinyRobot CLI 如何重构 AI 对话接入的效率范式
vue.js·aigc
jay神4 天前
基于 FastAPI + Vue 的宠物领养管理系统
前端·vue.js·python·毕业设计·fastapi·宠物
一杯奶茶¥4 天前
水果销售网站 CRM客户信息管理系统 超市管理系 酒店管理系统 健身房管理系统 在线音乐网站 校园招聘系统
java·vue.js·spring boot·mysql·spring·java项目
英勇无比的消炎药4 天前
一站式搞定品牌风格:TinyRobot 主题定制从入门到精通
vue.js
尽欢i4 天前
Vue3 customRef 封神教程:防抖、本地存储、自动埋点一套搞定,模板干干净净
前端·javascript·vue.js
因_崔斯汀4 天前
Vue 模板编译:HTML 是怎么变成 JS 的?
前端·vue.js
英勇无比的消炎药4 天前
样式随心定制:TinyRobot 样式覆写与 CSS 变量实战解析
vue.js