# 二.grid
查看代码详情
<template>
<WebPie :config="getOptions" :data="data"></WebPie>
</template>
<script>
export default {
data() {
return {
data: [],
};
},
async created() {
let res = await this.$api.getPolar(1);
if (res.data) {
this.data = res.data.map((item) => ({ ...item, value: item.descript }));
}
},
methods: {
getOptions(data) {
return {
color: ["#3398DB"],
tooltip: {
trigger: "axis",
axisPointer: {
type: "shadow",
},
},
grid: {},
xAxis: [
{
type: "category",
data: ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
axisTick: {
alignWithLabel: true,
},
},
],
yAxis: [
{
type: "value",
},
],
series: [
{
name: "直接访问",
type: "bar",
barWidth: "60%",
data: [10, 52, 200, 334, 390, 330, 220],
},
],
};
},
},
};
</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
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