前言
基于echarts5.x和vue2实现
记录以便日后查阅
实现效果
代码实现
<template>
<div class="chart-wrap">
<ul class="legend-list">
<li
v-for="(item, index) in yData"
:key="index"
:class="['legend', item.selected ? '': 'un-active']"
@mouseenter="enterHandler(item)"
@mouseleave="leaveHandler(item)"
@click="clickHandler(item)"
>
<i v-if="item.name !== '噪声'" class="rect" :style="{ backgroundColor: item.color }" />
<i v-else class="line" :style="{ backgroundColor: item.color }" />
<span>{{ item.name }}span>
li>
ul>
<div id="chart16" class="chart" />
div>
template>
<script>
export default {
name: 'Index',
data () {
return {
chart: null,
yData: [
{ name: 'PM2.5', value: [58, 29, 50, 26, 41, 44, 27, 44, 32, 32, 29, 45, 32, 28, 50, 25, 37, 22, 25, 56, 40, 32, 40, 24, 54], color: '#F7B500', selected: true },
{ name: 'PM10', value: [64, 63, 68, 62, 55, 61, 70, 71, 60, 78, 73, 63, 82, 59, 81, 82, 55, 81, 88, 64, 66, 50, 61, 76, 70], color: '#06C88C', selected: true },
{ name: '噪声', value: [30, 38, 30, 33, 54, 49, 54, 57, 33, 52, 59, 44, 47, 31, 40, 55, 53, 48, 46, 52, 53, 41, 55, 33, 46], color: '#0091FF', selected: true }
],
xData: ['01:00', '02:00', '03:00', '04:00', '05:00', '06:00', '07:00', '08:00', '09:00', '10:00', '11:00', '12:00', '13:00', '14:00', '15:00', '16:00', '17:00', '18:00', '19:00', '20:00', '21:00', '22:00', '23:00']
}
},
mounted() {
this.createChartHandler()
},
methods: {
createChartHandler () {
this.chart = this.$echarts.init(document.getElementById('chart16'))
this.chart.setOption(this.getChartOption(this.yData, this.xData))
window.addEventListener('resize', () => {
setTimeout(() => {
this.chart.resize()
})
})
},
getChartOption (yData, xData) {
return {
color: yData.map(i => i.color),
tooltip: {
trigger: 'axis',
extraCssText:
'color:#fff;background: rgba(0, 38, 118, 0.5);border:none; box-shadow: 0px 0px 8px 1px rgba(0, 145, 255, 0.5);border-radius: 2px;z-index:99',
axisPointer: {
type: 'cross'
},
formatter: function (params) {
const axisLabel = params[0].axisValueLabel
return `${axisLabel}
${params[0].color};margin-right:15px">${params[0].seriesName}:${params[0].value}
${params[1].color};margin-right:15px">${params[1].seriesName}:${params[1].value}%
${params[2].color};margin-right:15px">${params[2].seriesName}:${params[2].value}%`
},
},
grid: {
top: '5%',
left: '10%',
right: '15%',
bottom: '10%',
containLabel: false
},
legend: {
show: false,
data: yData.map(i => i.name)
},
xAxis: [
{
type: 'category',
axisTick: {
alignWithLabel: true
},
axisLabel: {
textStyle: {
fontSize: 12,
color: '#fff'
}
},
data: xData
}
],
yAxis: [
{
type: 'value',
min: 0,
max: 200,
interval: 40,
position: 'right',
axisLine: {
lineStyle: {
color: yData[0].color
}
},
axisLabel: {
textStyle: {
fontSize: 10,
color: '#fff'
},
formatter: '{value} μg/m³'
}
},
{
show: false,
type: 'value',
name: 'PM10',
min: 0,
max: 200,
position: 'right',
offset: 0,
axisLine: {
lineStyle: {
color: yData[1].color
}
},
axisLabel: {
textStyle: {
fontSize: 10,
color: '#fff'
},
formatter: '{value} μg/m³'
}
},
{
type: 'value',
name: '噪声',
min: 0,
max: 100,
interval: 20,
position: 'left',
axisLine: {
lineStyle: {
color: yData[2].color
}
},
nameTextStyle: {
color: '#fff',
fontSize: 12
},
axisLabel: {
textStyle: {
fontSize: 10,
color: '#fff'
},
formatter: '{value} dB'
}
}
],
series: [
{
name: 'PM2.5',
type: 'bar',
data: yData[0].value
},
{
name: 'PM10',
type: 'bar',
yAxisIndex: 1,
data: yData[1].value
},
{
name: '噪声',
type: 'line',
yAxisIndex: 2,
data: yData[2].value
}
]
}
},
enterHandler (item) {
if (!this.chart) return
this.chart.dispatchAction({
type: 'highlight',
seriesName: item.name
})
},
leaveHandler (item) {
if (!this.chart) return
this.chart.dispatchAction({
type: 'downplay',
seriesName: item.name
})
},
clickHandler (item) {
if (!this.chart) return
item.selected = !item.selected
this.chart.dispatchAction({
type: 'legendToggleSelect',
name: item.name
})
}
}
}
script>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- 101
- 102
- 103
- 104
- 105
- 106
- 107
- 108
- 109
- 110
- 111
- 112
- 113
- 114
- 115
- 116
- 117
- 118
- 119
- 120
- 121
- 122
- 123
- 124
- 125
- 126
- 127
- 128
- 129
- 130
- 131
- 132
- 133
- 134
- 135
- 136
- 137
- 138
- 139
- 140
- 141
- 142
- 143
- 144
- 145
- 146
- 147
- 148
- 149
- 150
- 151
- 152
- 153
- 154
- 155
- 156
- 157
- 158
- 159
- 160
- 161
- 162
- 163
- 164
- 165
- 166
- 167
- 168
- 169
- 170
- 171
- 172
- 173
- 174
- 175
- 176
- 177
- 178
- 179
- 180
- 181
- 182
- 183
- 184
- 185
- 186
- 187
- 188
- 189
- 190
- 191
- 192
- 193
- 194
- 195
- 196
- 197
- 198
- 199
- 200
- 201
- 202
- 203
- 204
- 205
- 206
- 207
- 208
- 209