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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
| var FChart = {
| _xAxis: [],
| _series: [],
| _currentPage: 1,
| _pageSize: 100,
| _progress: 0,
| _size: 200,
| /**
| * 创建折线图
| */
| genLineChart: function (chart, xAxis, series, merge, option, onYformatter) {
| var that = this;
|
| this._xAxis = xAxis;
| this._series = series;
|
| var fontSize = this.fGetChartFontSize();
| if (option == undefined) {
| option = {
| animationEasing: 'elasticOut',
| animationDelayUpdate: function (idx) {
| return idx * 5;
| },
| // title: {
| // text: '在线监测数据',
| // textStyle:{
| // fontSize: fontSize
| // }
| // },
| toolbox: {
| bottom: 0,
| feature: {
| dataZoom: {},
| magicType: {
| type: ['line', 'bar'],
| },
| // dataView: {},
| // saveAsImage: {
| // pixelRatio: 2
| // },
| restore: {},
| },
| },
| tooltip: {
| textStyle: {
| fontSize: fontSize,
| },
| },
| legend: {
| type: 'scroll',
| data: [],
| left: 0,
| textStyle: {
| fontSize: fontSize,
| color: 'white',
| },
| },
| xAxis: {
| name: '时间',
| data: that._xAxis,
| axisLabel: {
| textStyle: {
| fontSize: fontSize,
| },
| color: '#ffffff',
| textBorderColor: '#fff',
| },
| axisTick: {
| lineStyle: {
| color: 'white',
| },
| intervel: 0,
| inside: false,
| },
|
| nameTextStyle: {
| color: '#ffffff',
| },
| axisLine: {
| lineStyle: {
| color: '#ffffff',
| },
| },
| },
| yAxis: {
| name: '浓度(μg/m³)',
| axisLabel: {
| textStyle: {
| fontSize: fontSize,
| },
| formatter: function (value) {
| var texts = [];
| if (typeof onYformatter === 'function') {
| texts.push(onYformatter(value));
| } else {
| texts.push(value);
| }
| return texts;
| },
| },
| axisLine: {
| show: true,
| lineStyle: {
| color: 'white',
| },
| },
| axisTick: {
| show: true,
| lineStyle: {
| color: 'white',
| },
| },
| minInterval: 1,
| },
| series: [],
| };
| }
| if (this._series != undefined) {
| option.series = [];
| option.legend.data = [];
| for (let i = 0; i < this._series.length; i++) {
| const e = this._series[i];
| if (e.show) {
| option.series.push(e);
| option.legend.data.push(e.name);
| }
| }
| }
|
| chart.setOption(option, {
| notMerge: merge == true ? false : true,
| });
| var wH = $(window).height();
| var wW = $(window).width();
|
| var minW = 700;
| var minH = 280;
|
| var width = wW * 0.3 > minW ? wW * 0.3 : minW;
| var height = wH * 0.35 > minH ? wH * 0.35 : minH;
| chart.resize({
| width: width,
| height: height,
| });
|
| return option;
| },
|
| /**
| * 切换图例
| */
| lineChartOnLegend: function (chart, xAxis, series, option, progress, size) {
| this._xAxis = xAxis;
| this._series = series;
|
| // option.xAxis.data = this._xAxis;
| // if (this._series != undefined) {
| // option.series = [];
| // option.legend.data = [];
| // for (let i = 0; i < this._series.length; i++) {
| // const e = this._series[i];
| // if (e.show) {
| // option.series.push(e);
| // option.legend.data.push(e.name);
| // }
| // }
| // }
|
| // chart.setOption(option, { notMerge: true });
| // return option;
| return this.lineChartOnPage2({
| chart: chart,
| option: option,
| progress: progress == undefined ? FChart._progress : progress,
| size: size == undefined ? FChart._size : size,
| });
| },
|
| /**
| * 折线图分页切换
| */
| lineChartOnPage: function ({
| chart,
| option,
| currentPage = 1,
| pageSize = 100,
| }) {
| this._currentPage = currentPage;
| this._pageSize = pageSize;
|
| var xAxis = this._xAxis;
| var series = this._series;
|
| option.series = [];
| option.xAxis.data = [];
| option.legend.data = [];
|
| for (let i = pageSize * (currentPage - 1); i < xAxis.length; i++) {
| if (i > pageSize * currentPage - 1) {
| break;
| }
| option.xAxis.data.push(xAxis[i]);
| }
|
| for (let i = 0; i < series.length; i++) {
| const e = series[i];
| if (e.show) {
| var s = Util.deepCopy(e);
| s.data = [];
| for (let y = pageSize * (currentPage - 1); y < e.data.length; y++) {
| if (y > pageSize * currentPage - 1) {
| break;
| }
| const f = e.data[y];
| s.data.push(f);
| }
| option.series.push(s);
| option.legend.data.push(s.name);
| }
| }
|
| chart.setOption(option, {
| notMerge: true,
| });
| },
|
| lineChartOnPage2: function ({ chart, option, progress = 0, size = 200 }) {
| this._progress = progress;
| this._size = size;
|
| var xAxis = this._xAxis;
| var series = this._series;
|
| option.series = [];
| option.xAxis.data = [];
| option.legend.data = [];
|
| var len = xAxis.length - size + 1;
| len = len > 0 ? len : xAxis.length;
| var first = Math.round(len * progress);
| var last = first + size - 1;
| if (last > xAxis.length) {
| last = xAxis.length;
| first = last - (last < size ? last : size);
| }
|
| for (let i = first; i < last; i++) {
| option.xAxis.data.push(xAxis[i]);
| }
|
| for (let i = 0; i < series.length; i++) {
| const e = series[i];
| if (e.show) {
| var s = Util.deepCopy(e);
| s.data = [];
| for (let y = first; y < last; y++) {
| const f = e.data[y];
| s.data.push(f);
| }
| option.series.push(s);
| option.legend.data.push(s.name);
| }
| }
|
| chart.setOption(option, {
| notMerge: true,
| });
|
| return option;
| },
|
| /**
| * 定位跳转索引点
| * @param {*} chart
| * @param {*} option
| * @param {*} index
| * @param {*} factorName 当前地图展示的监测因子名字
| */
| locate(chart, option, index, factorName) {
| // 1. 定位点应该展示在趋势图中间,因此定位百分比往前偏移当前_size的一半
| let i = index - parseInt(this._size / 2);
| // 2. 确保索引不会超出范围
| i = i < 0 ? 0 : i;
| // 3. 获取索引对应的进度百分比
| const progress = i / (this._xAxis.length - this._size + 1);
|
| for (const iterator of this._series) {
| // if (iterator.name == factorName || (iterator.name == 'TVOC' || factorName == 'VOC')) {
| iterator.markLine = {
| symbol: 'none',
| data: [
| {
| name: '选中',
| xAxis: this._xAxis[index],
| label: {
| color: 'white',
| },
| lineStyle: {
| color: 'yellow',
| },
| },
| ],
| };
| // } else {
| // iterator.markLine = undefined;
| // }
| }
| this.lineChartOnPage2({
| chart,
| option,
| progress,
| size: this._size,
| });
|
| return progress;
| },
|
| /**
| * 获取合适的字体大小
| */
| fGetChartFontSize: function () {
| const dpr = window.devicePixelRatio;
| let fontSize = 12;
| if (dpr == 2) {
| fontSize = 17;
| } else if (dpr == 3) {
| fontSize = 24;
| } else if (dpr > 3) {
| fontSize = 24;
| }
| return fontSize;
| },
|
| /**
| * 创建仪表盘
| */
| genGauge: function (chart, name, value) {
| var fontSize = this.fGetChartFontSize();
| var option = {
| title: {
| text: name,
| textStyle: {
| color: 'white',
| fontSize: fontSize,
| },
| left: 'center',
| },
| textStyle: {
| color: '#ffffff',
| fontSize: 10,
| },
| tooltip: {
| formatter: '{a} <br/>{b} : {c}%',
| },
| toolbox: {
| // feature: {
| // restore: {},
| // saveAsImage: {}
| // }
| },
| series: [
| {
| name: name,
| type: 'gauge',
| detail: {
| color: 'white',
| formatter: '{value}',
| textStyle: {
| fontSize: fontSize,
| },
| },
| splitLine: {
| lineStyle: {
| color: 'white',
| },
| },
| axisTick: {
| lineStyle: {
| color: 'white',
| },
| },
| axisLabel: {
| color: 'white',
| fontSize: 10,
| },
| axisLine: {
| lineStyle: {
| color: [
| [0.2, '#2afd2a'],
| [0.8, '#f1e74d'],
| [1, '#c23531'],
| ],
| },
| },
| itemStyle: {
| color: 'white',
| },
| data: [
| {
| value: value,
| name: '',
| },
| ],
| min: 0,
| max: 1000,
| },
| ],
| };
| chart.setOption(option);
| return option;
| },
| };
|
|