当前位置: 首页 > article >正文

在 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,然后在浏览器中打开项目,你应该能够看到一个简单的柱状图。


http://www.kler.cn/a/518685.html

相关文章:

  • 3097. 或值至少为 K 的最短子数组 II
  • 左右互博02-unidbg主动调用外层so函数
  • Linux 环境变量
  • 链式存储结构
  • 【图文详解】lnmp架构搭建Discuz论坛
  • python爬虫入门(一) - requests库与re库,一个简单的爬虫程序
  • Golang 中除了加锁还有哪些安全读写共享变量的方式?
  • 计算机网络-运输层
  • Golang笔记——GPM调度器
  • 《探秘鸿蒙Next:人工智能助力元宇宙高效渲染新征程》
  • vue2和vue3组件之间的通信方式差异
  • 【C++】特殊类设计、单例模式与类型转换
  • 探秘数据仓库新势力:网络建模
  • 基于微信的原创音乐小程序的设计与实现(LW+源码+讲解)
  • 机器人SLAM建图与自主导航
  • 2025年美赛数学建模B题管理可持续旅游
  • vue3中自定一个组件并且能够用v-model对自定义组件进行数据的双向绑定
  • 如何有效利用数据采集HTTP代理
  • ASP.NET代码审计 SQL注入篇(简单记录)
  • 2024年终总结:技术成长与突破之路
  • CCF开源发展委员会开源供应链安全工作组2025年第1期技术研讨会顺利举行
  • FastDFS的安装及使用
  • LabVIEW心音心电同步采集与实时播放
  • [c语言日寄]结构体的使用及其拓展
  • Arcgis国产化替代:Bigemap Pro正式发布
  • OpenHarmony5.0 AVPlayer新特性开发指导(二)