在vue3 中使用echarts
vue3 中按需引入 echarts5
·
在vue3 中使用echarts
第一步:安装Echarts
npm install echarts --save
有淘宝镜像的可以选择 (安装速度快)
cnpm install echarts --save
第二步:新建一个js文件 => echarts.js
// 引入 echarts 核心模块,核心模块提供了 echarts 使用必须要的接口。
import * as echarts from "echarts/core";
/** 引入柱状图and折线图图表,图表后缀都为 Chart */
import { BarChart, LineChart } from "echarts/charts";
// 引入提示框,标题,直角坐标系,数据集,内置数据转换器组件,组件后缀都为 Component
import {
TitleComponent,
TooltipComponent,
GridComponent,
DatasetComponent,
TransformComponent,
} from "echarts/components";
// 标签自动布局,全局过渡动画等特性
import { LabelLayout, UniversalTransition } from "echarts/features";
// 引入 Canvas 渲染器,注意引入 CanvasRenderer 或者 SVGRenderer 是必须的一步
import { CanvasRenderer } from "echarts/renderers";
// 注册必须的组件
echarts.use([
TitleComponent,
TooltipComponent,
GridComponent,
DatasetComponent,
TransformComponent,
BarChart,
LabelLayout,
UniversalTransition,
CanvasRenderer,
LineChart,
]);
// 导出
export default echarts;
第三步:把自己创建好的js文件全局引入到main.js中
import { createApp } from 'vue'
import App from './App.vue'
import router from "./router/index"
import echarts from './utils/echarts';
const app = createApp(App)
app.config.globalProperties.$echarts = echarts
app.use(router)
app.use(pinia)
app.mount('#app')
这里需要注意:(你想要按需引入的图表后缀都是Chart 开头就是官网上面的图例 看下图)
按需引入时:import { LineChart } from “echarts/charts” (注意 开头一定要大写!!!)
第四步:在setup中使用Echarts
因为setup中没有this,而且这时候还没有渲染.所以,在setup中,也可以使用provide/inject把echarts引入进来.
在根组件里引入echarts,一般是App.vue
App.vue
<script setup>
import * as echarts from "echarts";
import { provide } from "vue";
provide("echarts", echarts);
</script>
<template>
<router-view></router-view>
</template>
<style>
body {
margin: 0px;
}
</style>
之后在需要的页面中inject
(这种方法可以统一管理引入的echarts)
<template>
<div>
<div id="main"></div>
<div id="maychar"></div>
</div>
</template>
<script lang="js">
import { defineComponent, onMounted, inject } from "vue"; // 主要
export default defineComponent({
setup() {
onMounted(() => {
change();
changetype();
});
let echarts = inject("echarts"); // 主要
// 基本柱形图
const change = () => {
const chartBox = echarts.init(document.getElementById("main")); // 主要
const option = {
xAxis: {
data: ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
},
yAxis: {},
series: [
{
type: "bar",
data: [23, 24, 18, 25, 27, 28, 25],
},
],
};
chartBox.setOption(option);
// 根据页面大小自动响应图表大小
window.addEventListener("resize", function () {
chartBox.resize();
});
};
// 折线图
const changetype = () => {
// 获取组件实例
const machart = echarts.init(document.getElementById("maychar"));
// 设置配置项
const option = {
xAxis: {
data: ["A", "B", "C", "D", "E"],
},
yAxis: {},
series: [
{
data: [10, 22, 28, 43, 49],
type: "line",
stack: "x",
},
{
data: [5, 4, 3, 5, 10],
type: "line",
stack: "x",
},
],
};
// 复制
machart.setOption(option);
// 根据页面大小自动响应图表大小
window.addEventListener("resize", function () {
machart.resize();
});
};
return {
changetype,
};
},
});
</script>
<style lang="scss" scoped>
#main {
min-width: 31.25rem;
min-height: 31.25rem;
// max-height: 500px;
}
#maychar {
max-height: 500px;
// max-height: 400px;
height: 500px;
}
</style>
效果如下:
更多推荐
已为社区贡献5条内容
所有评论(0)