使用npm安装echarts插件
打开cmd,将目录切换到项目根路径,安装echarts
npm install echarts
安装之后在项目中会有
node_modules
包,里面会有echarts包和echarts依赖的包
引入
import * as echarts from 'echarts'
使用:
<template>
<view>
<view><l-echart class="chart" ref="chart" @finished="init"></l-echart></view>
</view>
</template>
<script setup>
import { onMounted, reactive,ref } from "vue"
import * as echarts from 'echarts'
let chart = ref(null); // 获取dom
const state = reactive({
option:{},
})
state.option = {
legend:{
show:true,
data:[]
},
tooltip: {
trigger: 'axis',
axisPointer: {
type: 'cross'
}
},
grid: {
left: '3%',
right: '8%',
top: '15%',
bottom:'5%',
containLabel: true
},
xAxis: {
type: 'category',
data: [1,2, 3, 4, 5, 6, 7,8,9,10,11,12,13,1,4,15,16,17,18,19,20,21,22,23,24],
axisLabel: {
// inside: true,
// color: '#fff'
},
axisTick: {
show: false
},
axisLine: {
show: true,
lineStyle:{
color: '#83bff6'
}
},
z: 10
},
yAxis: {
type: 'value',
axisLine: {
show: true,
lineStyle:{
color: '#83bff6'
}
},
axisTick: {
show: false
},
// axisLabel: {
// color: '#999'
// },
splitLine:{
show:true,
lineStyle:{
type: 'dashed',
color: '#83bff6'
}
}
},
series: [
{
data: [100, 110, 113, 126, 143, 158, 165,167,152,102,,],
type: "bar",
itemStyle: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
{ offset: 0, color: '#83bff6' },
{ offset: 0.5, color: '#188df0' },
{ offset: 1, color: '#188df0' }
])
},
emphasis: {
itemStyle: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
{ offset: 0, color: '#2378f7' },
{ offset: 0.7, color: '#2378f7' },
{ offset: 1, color: '#83bff6' }
])
}
},
areaStyle: {
show: true,
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
{
offset: 0,
color: '#188df0'
},
{
offset: 1,
color: '#fff'
}
])
},
}
],
color:['#83bff6']
}
// 组件能被调用必须是组件的节点已经被渲染到页面上
onMounted(() => {
chart.value.init(echarts, chart => {
chart.setOption(state.option);
});
})
</script>
<style>
.chart{
width: 100%;
height: 300px;
}
</style>