代码
<template>
<div class="echarts1" ref="echarts">
</div>
</template>
<script>
import {FontChart} from '@/utils/utils'
export default {
name: 'echarts1',
components: {},
props: {
id: {
type: String,
default() {
return ''
}
}
},
data() {
return {
status: '',
xdata: [],
ydata: []
}
},
watch: {},
mounted() {
this.drawLine()
},
methods: {
drawLine() {
var that = this
window.addEventListener('resize', this.drawLine)
let myChart = this.$echarts.init(this.$refs.echarts)
var xdata = ['普工/技工', '物流仓储', '质控/安防', '教育培训', '房产中介', '客户服务']
var ydata = [10, 20, 30, 40, 50, 60]
var option = {
grid: {
left: '3%',
right: '8%',
bottom: '1%',
top: '5%',
containLabel: true
},
tooltip: {
trigger: 'axis',
axisPointer: {
type: 'none'
},
formatter: function (params) {
return params[0].name + ' : ' + params[0].value
}
},
xAxis: {
show: true,
splitLine: {
show: true,
textStyle: {
color: '#02275f'
},
lineStyle: {
color: '#022760',
type: 'dashed',
}
},
axisLine: {
show: false,
textStyle: {
color: '#333'
},
lineStyle: {
color: '#8c8c8c',
type: 'dashed',
}
},
axisTick: {
show: false
},
axisLabel: {
show: true,
textStyle: {
color: 'rgba(219, 231, 255, 0.6)'
},
},
type: 'value'
},
yAxis: [{
type: 'category',
inverse: true,
boundaryGap: true,
axisLabel: {
show: true,
textStyle: {
color: 'rgba(179, 216, 221, 1)',
fontSize: FontChart(14)
}
},
splitLine: {
show: false
},
axisTick: {
show: false
},
axisLine: {
show: false
},
data: xdata
}],
series: [{
// name: '值',
type: 'bar',
zlevel: 1,
itemStyle: {
normal: {
barBorderRadius: [0, 0, 0, 0],
color: new this.$echarts.graphic.LinearGradient(0, 0, 1, 0, [{
offset: 0,
color: 'rgba(0, 162, 255, 1)'
}, {
offset: 1,
color: 'rgba(0, 221, 255, 1)'
}]),
},
},
"label": {
"normal": {
"show": true,
"position": "right",
"distance": 0,
"padding": [0, 0, 0, 5],
"textStyle": {
"color": "#d2d7e0", //柱子对应数值颜色
"fontSize": FontChart(14)
}
}
},
barWidth: '40%',
data: ydata
}
]
}
myChart.clear()
myChart.resize()
myChart.setOption(option)
},
}
}
</script>
<style lang="scss" scoped>
.echarts1 {
position: relative;
width: 100%;
height: 100%;
}
</style>