npm install echarts -S
有时候版本过高会报错 换成 "echarts": "4.2.1"
// 在main.js中引入echarts
import * as echarts from 'echarts'
Vue.prototype.$echarts = echarts
<div ref="chart"></div>
配置项都在官网,附上官网链接:Echarts官网
这个网站有特别多echarts图表 很实用 可以筛选出自己需要的直接拿来用
链接:Make A Pie
今年发现它的官网停止服务啦,整理了一些替代网站:Echarts Demo合集
创建Chart.vue 封装echarts 使用时只用传option
<template>
<div ref="chart" class="chart"></div>
</template>
<script>
export default {
name: 'Chart',
props: {
// 传配置项option
option: {
type: Object,
default() {
return {}
}
}
},
data() {
return {
chart: null
}
},
watch: {
option: {
handler(val) {
// 判断传入的option是否有内容
if (Object.keys(val).length) {
this.$nextTick(() => {
this.drawChart()
})
}
},
immediate: true,
deep: true
}
},
methods: {
drawChart() {
this.chart = this.$echarts.init(this.$refs.chart) // 初始化echarts
this.chart.setOption(this.option) // 设置对应配置项
// 当窗口大小改变 echarts重置大小
window.addEventListener('resize', () => {
this.chart.resize()
})
}
}
}
</script>
<style lang="scss" scoped>
.chart {
width: 100%;
height: 100%;
}
</style>
// 使用组件
<chart class="chart" :option="pieOption" />
// 引入组件
import Chart from "../components/Chart.vue";
components: { Chart }
// 定义option配置
this.pieOption={....}
示例 :
<template>
<div class="home">
<chart class="chart" :option="pieOption" />
</div>
</template>
<script>
import Chart from "../components/Chart.vue";
export default {
name: "Home",
components: { Chart },
data() {
return {
pieOption: {},
};
},
created() {
this.initPie();
},
methods: {
initPie() {
const color = [
"#6080EB",
"rgba(96, 128, 235, 0.42)",
"rgba(96, 128, 235, 0.03)",
];
const xData = [
"2021-11-21",
"2021-11-22",
"2021-11-23",
"2021-11-24",
"2021-11-25",
"2021-11-26",
"2021-11-27",
];
const yData = [1220, 182, 491, 234, 790, 330, 310];
this.pieOption = {
color: color[0],
dataZoom: {
type: "inside",
xAxisIndex: [0],
},
tooltip: {
show: true,
trigger: "axis",
},
grid: {
top: 10,
bottom: 40,
},
xAxis: {
boundaryGap: false,
splitLine: {
show: false,
},
axisTick: {
show: false,
},
axisLine: {
lineStyle: {
color: "#d8d8d8",
},
},
axisLabel: {
color: "rgba(0, 0, 0, 0.65)",
},
data: xData,
},
yAxis: {
splitNumber: 4,
splitLine: {
show: true,
},
axisTick: {
show: false,
},
axisLine: {
show: true,
lineStyle: {
color: "#d8d8d8",
},
},
axisLabel: {
color: "rgba(0, 0, 0, 0.65)",
},
},
series: [
{
type: "line",
showSymbol: false,
smooth: true,
lineStyle: {
color: color[0],
width: 3,
},
areaStyle: {
//区域填充样式
normal: {
color: this.$echarts.graphic.LinearGradient(
0,
0,
0,
1,
[
{
offset: 0,
color: color[1],
},
{
offset: 1,
color: color[2],
},
],
false
),
},
},
data: yData,
},
],
};
},
},
};
</script>
<style lang="scss" scoped>
.home {
width: 100%;
height: 100%;
.chart {
width: 80%;
height: 300px;
margin: 20px auto;
}
}
</style>
backgroundColor 图表默认背景
title 图表标题-----可设置图表主标题和副标题
legend 图例配置
tooltip 提示框
grid 网格-----可设置图表位置以及大小
xAxis x轴
yAxis y轴
series 系列列表。每个系列通过 type 决定自己的图表类型。----可以改变图表类型以及数据
smooth: true, //平滑的折线
ps:需求是折线图的数据是0的点 对应颜色是黑色
series: [
{
name: '每日30天销量分析',
type: 'line',
data: [0, 12, 0, 86, 12, 0, 6],
lineStyle: {
color: '#D70023'
},
symbol: 'circle', // 实心圆点
itemStyle: {
normal: {
color: (e) => {
return this.getColor(e.data) // 主要是这里 用color的回调去根据值返回颜色值
},
lineStyle: {
width: 1, // 设置虚线宽度
type: 'solid' // 虚线'dotted' 实线'solid'
}
}
}
}
]
getColor(data) {
if (data) {
return '#D70023'
} else {
return '#333'
}
},
ps:有些配置需要用的时候直接百度就可以了 感觉有目的的查会比看文档快一些