<template>
<div id="box2" style="width:100%;height:100%">
</div>
</template>
<script>
import * as echarts from 'echarts';
export default {
name:'App',
methods: {
myEcharts(){
var myChart = echarts.init(document.getElementById('box2'));
// 绘制图表
myChart.setOption({
backgroundColor: "rgba(2, 12, 44, 1)", //背景色
grid: {
top: '30',
left: '1%',
right: '1%',
bottom: '8%',
containLabel: true,
},
xAxis: [{
type: 'category',
boundaryGap: true,
axisLine: {
show: false,
},
axisLabel: {
textStyle: {
color: '#959FA9',
fontSize: 14
},
},
axisTick: {
show: false,
},
data: ['第一季度', '第二季度', '第三季度', '第四季度'],
}],
yAxis: [{
type: 'value',
axisTick: {
show: false,
},
splitLine: {
show: true,
lineStyle: {
type: 'dashed',
color: 'rgba(226, 226, 226, 0.3)',
width: 1
}
},
axisLine: {
show: false,
lineStyle: {
color: 'rgb(2,185,208)',
},
},
axisLabel: {
textStyle: {
color: '#959FA9',
fontSize: 14
},
},
}],
series: [{
name: '车型1',
type: 'line',
smooth: true,
symbol: 'circle',
showAllSymbol: true,
symbolSize: 12,
label: {
show: true,
position: 'top',
},
itemStyle: {
normal: {
color: "#fff443",
}
},
data: [25, 30, 60, 80]
}
]
}),
// 图表自适配
window.addEventListener('resize',function(){
myChart.resize()
})
}
},
mounted() {
this.myEcharts()
},
}
</script>
折线图未封装
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 普通项目中常用的可视化图表,可能也就折线图,柱型图和饼图,如果每次都需要重新配置一遍图表参数,也会很心累,以下是我...
- 安装echarts 在上一篇中折腾了一下G2后又回到了echarts的怀抱,没别的,案例多 折线图 ComChar...