1. vue
按需引入折线图
/**
* echarts版本 5.3.2
* main.js
*/
// 引入 echarts 核心模块,核心模块提供了 echarts 使用必须要的接口。
import * as echarts from 'echarts/core';
// 引入折线图图表,图表后缀都为 Chart
import { 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,
LineChart,
LabelLayout,
UniversalTransition,
CanvasRenderer
]);
Vue.prototype.$echarts = echarts
2. 组件中使用
<template>
<div class="line-echart-container">
<div ref="lineEchart"></div>
</div>
</template>
<script>
export default {
name: 'LineEchart',
data() {
return {
}
},
methods: {
initOption() {
return {
title: {
text: '标题',
top: 'bottom',
left: 'center',
textStyle: {
fontSize: '12px',
color: 'rgba(177, 177, 177, 1)',
}
},
grid: {
top: 0,
bottom: '25%'
},
xAxis: {
show: false,
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
show: false,
min: 'dataMin', // 取数据在该轴上的最小值作为最小刻度
max: 'dataMax',
type: 'value'
},
series: [
{
type: 'line',
symbol: 'none', //去掉折线图中的节点
areaStyle: { // 区域填充样式
color: 'rgba(255, 234, 234, 1)'
},
lineStyle: {
color: 'rgba(255, 36, 66, 1)',
width: 1,
},
data: [150, 230, 224, 218, 135, 147, 260]
}
]
}
}
},
mounted () {
const myChart = this.$echarts.init(this.$refs.lineEchart)
myChart.setOption(this.initOption())
window.onresize = function() {
myChart.resize()
}
}
}
</script>
<style scoped lang="scss">
.line-echart-container {
> div {
width: 80px;
height: 70px;
}
}
</style>
3. 最终效果图
网友评论