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
| <template>
| <div>
| <Echart
| :options="options"
| id="bottomLeftChart"
| height="480px"
| width="100%"
| ></Echart>
| </div>
| </template>
|
| <script>
| import Echart from "@/common/echart";
| export default {
| data() {
| return {
| options: {},
| };
| },
| components: {
| Echart,
| },
| props: {
| cdata: {
| type: Object,
| default: () => ({}),
| },
| },
| watch: {
| cdata: {
| handler(newData) {
| this.options = {
| title: {
| text: "",
| },
| tooltip: {
| trigger: "axis",
| backgroundColor: "rgba(255,255,255,0.1)",
| axisPointer: {
| type: "shadow",
| label: {
| show: true,
| backgroundColor: "#7B7DDC",
| },
| },
| },
| legend: {
| data: [
| "稼动率",
| ],
| textStyle: {
| color: "#fff",
| fontSize: 14,
| },
| top: "0%",
| right:"5%"
| },
| grid: {
| x: "6%",
| width: "95%",
| bottom:"10%"
| },
| xAxis: {
| data: newData.category,
| splitLine: {
| show: true,
| lineStyle: {
| color: ["#273169"],
| },
| },
| axisLine: {
| lineStyle: {
| color: "#B4B4B4",
| },
| },
| axisTick: {
| show: false,
| },
| },
| calculable: true,
| yAxis: [
| {
| min: 60, // 刻度最小值
| max: 100, // 刻度最大值(需要动态获取最大值,并且能被3整除(向下取整再乘回来))
| splitNumber: 10, // 横线数
| interval: 10, // 刻度间隔
| axisLine: {
| lineStyle: {
| color: "#B4B4B4",
| },
| },
| splitLine: {
| show: true,
| lineStyle: {
| color: ["#273169"],
| },
| },
| axisLabel: {
| formatter: "{value} ",
| },
| name: "单位(%)",
| nameTextStyle: {
| color: "#ffffff",
| nameLocation: "start",
| },
| },
| {
|
| axisLine: {
| lineStyle: {
| color: "#B4B4B4",
| },
| },
| axisLabel: {
| formatter: "{value} ",
| },
| },
| ],
| series: [
| {
| name: "稼动率",
| type: "line",
| barWidth: 10,
| areaStyle: {
| color: {
| type: "linear",
| x: 0,
| y: 0,
| x2: 0,
| y2: 1,
| colorStops: [
| {
| offset: 0,
| color: "rgba(255, 255, 0,0.5)",
| },
| {
| offset: 0.6, //这是于下方线的距离,设置1就不留空隙
| color: "rgba(255, 255, 0,0.1)",
| },
| ],
| global: false,
| },
| },
| itemStyle: {
| normal: {
| barBorderRadius: 2,
| color: new this.$echarts.graphic.LinearGradient(0, 0, 0, 1, [
| { offset: 0, color: "#ffff00" },
| { offset: 1, color: "#ffff00" },
| ]),
| label: {
| show: false, //开启显示
| position: 'top', //在上方显示
| textStyle: { //数值样式
| color: 'white',
| fontSize: 14
| }
| }
| },
| },
| data: newData.actionData,
| },
| ],
| };
| },
| immediate: true,
| deep: true,
| },
| },
| };
| </script>
|
|