@siemens/ix-echarts 1.0.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js ADDED
@@ -0,0 +1,639 @@
1
+ 'use strict';
2
+
3
+ const echarts = require('echarts');
4
+
5
+ function _interopNamespace(e) {
6
+ if (e && e.__esModule) return e;
7
+ const n = Object.create(null);
8
+ if (e) {
9
+ for (const k in e) {
10
+ if (k !== 'default') {
11
+ const d = Object.getOwnPropertyDescriptor(e, k);
12
+ Object.defineProperty(n, k, d.get ? d : {
13
+ enumerable: true,
14
+ get: function () { return e[k]; }
15
+ });
16
+ }
17
+ }
18
+ }
19
+ n["default"] = e;
20
+ return Object.freeze(n);
21
+ }
22
+
23
+ const echarts__namespace = /*#__PURE__*/_interopNamespace(echarts);
24
+
25
+ /*
26
+ * SPDX-FileCopyrightText: 2022 Siemens AG
27
+ *
28
+ * SPDX-License-Identifier: MIT
29
+ *
30
+ * This source code is licensed under the MIT license found in the
31
+ * LICENSE file in the root directory of this source tree.
32
+ */
33
+ const brandDarkProject = {
34
+ version: 1,
35
+ themeName: 'brand-dark',
36
+ theme: {
37
+ seriesCnt: 3,
38
+ backgroundColor: 'transparent',
39
+ titleColor: '#ffffff',
40
+ subtitleColor: '#ffffff',
41
+ textColorShow: false,
42
+ textColor: '#ffffff',
43
+ markTextColor: '#000000',
44
+ color: [
45
+ '#00ffb9',
46
+ '#41b7e6',
47
+ '#cd31e7',
48
+ '#b3b3be',
49
+ '#0087be',
50
+ '#86a0f6',
51
+ '#baba9d',
52
+ '#009e78',
53
+ '#ffb180',
54
+ '#b5bd00',
55
+ ],
56
+ borderColor: 'rgba(255,255,255,0.45)',
57
+ borderWidth: 0,
58
+ visualMapColor: ['#ff2640', '#ff9000', '#ffd732'],
59
+ legendTextColor: '#ffffff',
60
+ kColor: '#fe0137',
61
+ kColor0: '#40c200',
62
+ kBorderColor: '#fe0137',
63
+ kBorderColor0: '#40c200',
64
+ kBorderWidth: 1,
65
+ lineWidth: 2,
66
+ symbolSize: 4,
67
+ symbol: 'circle',
68
+ symbolBorderWidth: 1,
69
+ lineSmooth: false,
70
+ graphLineWidth: 1,
71
+ graphLineColor: 'rgba(255,255,255,0.6)',
72
+ mapLabelColor: '#000',
73
+ mapLabelColorE: 'rgb(100,0,0)',
74
+ mapBorderColor: '#444',
75
+ mapBorderColorE: '#444',
76
+ mapBorderWidth: 0.5,
77
+ mapBorderWidthE: 1,
78
+ mapAreaColor: '#eee',
79
+ mapAreaColorE: 'rgba(255,215,0,0.8)',
80
+ axes: [
81
+ {
82
+ type: 'all',
83
+ name: '通用坐标轴',
84
+ axisLineShow: true,
85
+ axisLineColor: 'rgba(255,255,255,0.35)',
86
+ axisTickShow: true,
87
+ axisTickColor: 'rgba(255,255,255,0.35)',
88
+ axisLabelShow: true,
89
+ axisLabelColor: '#ffffff',
90
+ splitLineShow: true,
91
+ splitLineColor: ['rgba(255,255,255,0.1)'],
92
+ splitAreaShow: false,
93
+ splitAreaColor: ['rgba(0,0,0,0)', 'rgba(255,255,255,0.1)'],
94
+ },
95
+ {
96
+ type: 'category',
97
+ name: '类目坐标轴',
98
+ axisLineShow: true,
99
+ axisLineColor: '#6E7079',
100
+ axisTickShow: true,
101
+ axisTickColor: '#6E7079',
102
+ axisLabelShow: true,
103
+ axisLabelColor: '#6E7079',
104
+ splitLineShow: false,
105
+ splitLineColor: ['#E0E6F1'],
106
+ splitAreaShow: false,
107
+ splitAreaColor: ['rgba(250,250,250,0.2)', 'rgba(210,219,238,0.2)'],
108
+ },
109
+ {
110
+ type: 'value',
111
+ name: '数值坐标轴',
112
+ axisLineShow: true,
113
+ axisLineColor: '#6E7079',
114
+ axisTickShow: false,
115
+ axisTickColor: '#6E7079',
116
+ axisLabelShow: true,
117
+ axisLabelColor: '#6E7079',
118
+ splitLineShow: true,
119
+ splitLineColor: ['#E0E6F1'],
120
+ splitAreaShow: false,
121
+ splitAreaColor: ['rgba(250,250,250,0.2)', 'rgba(210,219,238,0.2)'],
122
+ },
123
+ {
124
+ type: 'log',
125
+ name: '对数坐标轴',
126
+ axisLineShow: false,
127
+ axisLineColor: '#6E7079',
128
+ axisTickShow: false,
129
+ axisTickColor: '#6E7079',
130
+ axisLabelShow: true,
131
+ axisLabelColor: '#6E7079',
132
+ splitLineShow: false,
133
+ splitLineColor: ['#E0E6F1'],
134
+ splitAreaShow: true,
135
+ splitAreaColor: ['rgba(250,250,250,0.2)', 'rgba(210,219,238,0.2)'],
136
+ },
137
+ {
138
+ type: 'time',
139
+ name: '时间坐标轴',
140
+ axisLineShow: true,
141
+ axisLineColor: '#6E7079',
142
+ axisTickShow: true,
143
+ axisTickColor: '#6E7079',
144
+ axisLabelShow: true,
145
+ axisLabelColor: '#6E7079',
146
+ splitLineShow: false,
147
+ splitLineColor: ['#E0E6F1'],
148
+ splitAreaShow: false,
149
+ splitAreaColor: ['rgba(250,250,250,0.2)', 'rgba(210,219,238,0.2)'],
150
+ },
151
+ ],
152
+ axisSeperateSetting: false,
153
+ toolboxColor: 'rgba(255,255,255,0.6)',
154
+ toolboxEmphasisColor: '#00ffb9',
155
+ tooltipAxisColor: 'rgba(255,255,255,0.35)',
156
+ tooltipAxisWidth: '1',
157
+ timelineLineColor: 'rgba(0,0,0,0)',
158
+ timelineLineWidth: '1',
159
+ timelineItemColor: 'rgba(255,255,255,0.35)',
160
+ timelineItemColorE: 'rgba(255,255,255,0.6)',
161
+ timelineCheckColor: '#00ffb9',
162
+ timelineCheckBorderColor: '#000028',
163
+ timelineItemBorderWidth: '1',
164
+ timelineControlColor: '#00cccc',
165
+ timelineControlBorderColor: '#00cccc',
166
+ timelineControlBorderWidth: '1',
167
+ timelineLabelColor: 'rgba(255,255,255,0.35)',
168
+ },
169
+ };
170
+
171
+ /*
172
+ * SPDX-FileCopyrightText: 2022 Siemens AG
173
+ *
174
+ * SPDX-License-Identifier: MIT
175
+ *
176
+ * This source code is licensed under the MIT license found in the
177
+ * LICENSE file in the root directory of this source tree.
178
+ */
179
+ const brandLightProject = {
180
+ version: 1,
181
+ themeName: 'brand-light',
182
+ theme: {
183
+ seriesCnt: 3,
184
+ backgroundColor: 'transparent',
185
+ titleColor: '#000028',
186
+ subtitleColor: '#000028',
187
+ textColorShow: false,
188
+ textColor: '#000028',
189
+ markTextColor: '#ffffff',
190
+ color: [
191
+ '#00af8e',
192
+ '#0087be',
193
+ '#aa32be',
194
+ '#71758f',
195
+ '#00557c',
196
+ '#4660b4',
197
+ '#94947b',
198
+ '#007362',
199
+ '#dd886a',
200
+ '#909700',
201
+ ],
202
+ borderColor: 'rgba(0,0,40,0.3)',
203
+ borderWidth: 0,
204
+ visualMapColor: ['#d72339', '#e96401', '#e9c32a'],
205
+ legendTextColor: '#000028',
206
+ kColor: '#d72339',
207
+ kColor0: '#01893a',
208
+ kBorderColor: '#d72339',
209
+ kBorderColor0: '#01893a',
210
+ kBorderWidth: 1,
211
+ lineWidth: 2,
212
+ symbolSize: 4,
213
+ symbol: 'circle',
214
+ symbolBorderWidth: 1,
215
+ lineSmooth: false,
216
+ graphLineWidth: '1',
217
+ graphLineColor: 'rgba(0,0,40,0.6)',
218
+ mapLabelColor: '#000',
219
+ mapLabelColorE: 'rgb(100,0,0)',
220
+ mapBorderColor: '#444',
221
+ mapBorderColorE: '#444',
222
+ mapBorderWidth: 0.5,
223
+ mapBorderWidthE: 1,
224
+ mapAreaColor: '#eee',
225
+ mapAreaColorE: 'rgba(255,215,0,0.8)',
226
+ axes: [
227
+ {
228
+ type: 'all',
229
+ name: '通用坐标轴',
230
+ axisLineShow: true,
231
+ axisLineColor: 'rgba(0,0,40,0.3)',
232
+ axisTickShow: true,
233
+ axisTickColor: 'rgba(0,0,40,0.3)',
234
+ axisLabelShow: true,
235
+ axisLabelColor: '#000028',
236
+ splitLineShow: true,
237
+ splitLineColor: ['rgba(0,0,40,0.1)'],
238
+ splitAreaShow: false,
239
+ splitAreaColor: ['rgba(250,250,250,0.2)', 'rgba(210,219,238,0.2)'],
240
+ },
241
+ {
242
+ type: 'category',
243
+ name: '类目坐标轴',
244
+ axisLineShow: true,
245
+ axisLineColor: '#6E7079',
246
+ axisTickShow: true,
247
+ axisTickColor: '#6E7079',
248
+ axisLabelShow: true,
249
+ axisLabelColor: '#6E7079',
250
+ splitLineShow: false,
251
+ splitLineColor: ['#E0E6F1'],
252
+ splitAreaShow: false,
253
+ splitAreaColor: ['rgba(250,250,250,0.2)', 'rgba(210,219,238,0.2)'],
254
+ },
255
+ {
256
+ type: 'value',
257
+ name: '数值坐标轴',
258
+ axisLineShow: true,
259
+ axisLineColor: '#6E7079',
260
+ axisTickShow: false,
261
+ axisTickColor: '#6E7079',
262
+ axisLabelShow: true,
263
+ axisLabelColor: '#6E7079',
264
+ splitLineShow: true,
265
+ splitLineColor: ['#E0E6F1'],
266
+ splitAreaShow: false,
267
+ splitAreaColor: ['rgba(250,250,250,0.2)', 'rgba(210,219,238,0.2)'],
268
+ },
269
+ {
270
+ type: 'log',
271
+ name: '对数坐标轴',
272
+ axisLineShow: false,
273
+ axisLineColor: '#6E7079',
274
+ axisTickShow: false,
275
+ axisTickColor: '#6E7079',
276
+ axisLabelShow: true,
277
+ axisLabelColor: '#6E7079',
278
+ splitLineShow: false,
279
+ splitLineColor: ['#E0E6F1'],
280
+ splitAreaShow: true,
281
+ splitAreaColor: ['rgba(250,250,250,0.2)', 'rgba(210,219,238,0.2)'],
282
+ },
283
+ {
284
+ type: 'time',
285
+ name: '时间坐标轴',
286
+ axisLineShow: true,
287
+ axisLineColor: '#6E7079',
288
+ axisTickShow: true,
289
+ axisTickColor: '#6E7079',
290
+ axisLabelShow: true,
291
+ axisLabelColor: '#6E7079',
292
+ splitLineShow: false,
293
+ splitLineColor: ['#E0E6F1'],
294
+ splitAreaShow: false,
295
+ splitAreaColor: ['rgba(250,250,250,0.2)', 'rgba(210,219,238,0.2)'],
296
+ },
297
+ ],
298
+ axisSeperateSetting: false,
299
+ toolboxColor: 'rgba(0,0,40,0.3)',
300
+ toolboxEmphasisColor: '#196269',
301
+ tooltipAxisColor: 'rgba(0,0,40,0.3)',
302
+ tooltipAxisWidth: '1',
303
+ timelineLineColor: 'rgba(0,0,0,0)',
304
+ timelineLineWidth: '1',
305
+ timelineItemColor: 'rgba(0,0,40,0.3)',
306
+ timelineItemColorE: 'rgba(0,0,40,0.6)',
307
+ timelineCheckColor: '#196269',
308
+ timelineCheckBorderColor: '#ffffff',
309
+ timelineItemBorderWidth: '1',
310
+ timelineControlColor: '#007993',
311
+ timelineControlBorderColor: '#007993',
312
+ timelineControlBorderWidth: '1',
313
+ timelineLabelColor: 'rgba(0,0,40,0.3)',
314
+ },
315
+ };
316
+
317
+ /*
318
+ * SPDX-FileCopyrightText: 2022 Siemens AG
319
+ *
320
+ * SPDX-License-Identifier: MIT
321
+ *
322
+ * This source code is licensed under the MIT license found in the
323
+ * LICENSE file in the root directory of this source tree.
324
+ */
325
+ const classicDarkProject = {
326
+ version: 1,
327
+ themeName: 'classic-dark',
328
+ theme: {
329
+ seriesCnt: 3,
330
+ backgroundColor: 'transparent',
331
+ titleColor: 'rgba(255,255,255,0.85)',
332
+ subtitleColor: 'rgba(255,255,255,0.85)',
333
+ textColorShow: false,
334
+ textColor: 'rgba(255,255,255,0.85)',
335
+ markTextColor: '#ffffff',
336
+ color: [
337
+ '#00ebd5',
338
+ '#42aaff',
339
+ '#e446ff',
340
+ '#86acc0',
341
+ '#2473ff',
342
+ '#759eff',
343
+ '#baba9d',
344
+ '#009e78',
345
+ '#ffb180',
346
+ '#b5bd00',
347
+ ],
348
+ borderColor: 'rgba(255,255,255,0.45)',
349
+ borderWidth: 0,
350
+ visualMapColor: ['#fe0137', '#eb780a', '#ffb900'],
351
+ legendTextColor: 'rgba(255,255,255,0.85)',
352
+ kColor: '#fe0137',
353
+ kColor0: '#40c200',
354
+ kBorderColor: '#fe0137',
355
+ kBorderColor0: '#40c200',
356
+ kBorderWidth: 1,
357
+ lineWidth: 2,
358
+ symbolSize: 4,
359
+ symbol: 'circle',
360
+ symbolBorderWidth: 1,
361
+ lineSmooth: false,
362
+ graphLineWidth: '1',
363
+ graphLineColor: 'rgba(255,255,255,0.6)',
364
+ mapLabelColor: '#000',
365
+ mapLabelColorE: 'rgb(100,0,0)',
366
+ mapBorderColor: '#444',
367
+ mapBorderColorE: '#444',
368
+ mapBorderWidth: 0.5,
369
+ mapBorderWidthE: 1,
370
+ mapAreaColor: '#eee',
371
+ mapAreaColorE: 'rgba(255,215,0,0.8)',
372
+ axes: [
373
+ {
374
+ type: 'all',
375
+ name: '通用坐标轴',
376
+ axisLineShow: true,
377
+ axisLineColor: 'rgba(255,255,255,0.3)',
378
+ axisTickShow: true,
379
+ axisTickColor: 'rgba(255,255,255,0.3)',
380
+ axisLabelShow: true,
381
+ axisLabelColor: 'rgba(255,255,255,0.85)',
382
+ splitLineShow: true,
383
+ splitLineColor: ['rgba(255,255,255,0.1)'],
384
+ splitAreaShow: false,
385
+ splitAreaColor: ['rgba(250,250,250,0.2)', 'rgba(210,219,238,0.2)'],
386
+ },
387
+ {
388
+ type: 'category',
389
+ name: '类目坐标轴',
390
+ axisLineShow: true,
391
+ axisLineColor: '#6E7079',
392
+ axisTickShow: true,
393
+ axisTickColor: '#6E7079',
394
+ axisLabelShow: true,
395
+ axisLabelColor: '#6E7079',
396
+ splitLineShow: false,
397
+ splitLineColor: ['#E0E6F1'],
398
+ splitAreaShow: false,
399
+ splitAreaColor: ['rgba(250,250,250,0.2)', 'rgba(210,219,238,0.2)'],
400
+ },
401
+ {
402
+ type: 'value',
403
+ name: '数值坐标轴',
404
+ axisLineShow: true,
405
+ axisLineColor: '#6E7079',
406
+ axisTickShow: false,
407
+ axisTickColor: '#6E7079',
408
+ axisLabelShow: true,
409
+ axisLabelColor: '#6E7079',
410
+ splitLineShow: true,
411
+ splitLineColor: ['#E0E6F1'],
412
+ splitAreaShow: false,
413
+ splitAreaColor: ['rgba(250,250,250,0.2)', 'rgba(210,219,238,0.2)'],
414
+ },
415
+ {
416
+ type: 'log',
417
+ name: '对数坐标轴',
418
+ axisLineShow: false,
419
+ axisLineColor: '#6E7079',
420
+ axisTickShow: false,
421
+ axisTickColor: '#6E7079',
422
+ axisLabelShow: true,
423
+ axisLabelColor: '#6E7079',
424
+ splitLineShow: false,
425
+ splitLineColor: ['#E0E6F1'],
426
+ splitAreaShow: true,
427
+ splitAreaColor: ['rgba(250,250,250,0.2)', 'rgba(210,219,238,0.2)'],
428
+ },
429
+ {
430
+ type: 'time',
431
+ name: '时间坐标轴',
432
+ axisLineShow: true,
433
+ axisLineColor: '#6E7079',
434
+ axisTickShow: true,
435
+ axisTickColor: '#6E7079',
436
+ axisLabelShow: true,
437
+ axisLabelColor: '#6E7079',
438
+ splitLineShow: false,
439
+ splitLineColor: ['#E0E6F1'],
440
+ splitAreaShow: false,
441
+ splitAreaColor: ['rgba(250,250,250,0.2)', 'rgba(210,219,238,0.2)'],
442
+ },
443
+ ],
444
+ axisSeperateSetting: false,
445
+ toolboxColor: 'rgba(255,255,255,0.6)',
446
+ toolboxEmphasisColor: '#ffffff',
447
+ tooltipAxisColor: 'rgba(255,255,255,0.3)',
448
+ tooltipAxisWidth: '1',
449
+ timelineLineColor: 'rgba(0,0,0,0)',
450
+ timelineLineWidth: '1',
451
+ timelineItemColor: 'rgba(255,255,255,0.35)',
452
+ timelineItemColorE: 'rgba(255,255,255,0.6)',
453
+ timelineCheckColor: '#41aaaa',
454
+ timelineCheckBorderColor: 'rgba(0,0,0,0)',
455
+ timelineItemBorderWidth: '1',
456
+ timelineControlColor: '#41aaaa',
457
+ timelineControlBorderColor: '#41aaaa',
458
+ timelineControlBorderWidth: '1',
459
+ timelineLabelColor: 'rgba(255,255,255,0.3)',
460
+ },
461
+ };
462
+
463
+ /*
464
+ * SPDX-FileCopyrightText: 2022 Siemens AG
465
+ *
466
+ * SPDX-License-Identifier: MIT
467
+ *
468
+ * This source code is licensed under the MIT license found in the
469
+ * LICENSE file in the root directory of this source tree.
470
+ */
471
+ const classicLightProject = {
472
+ version: 1,
473
+ themeName: 'classic-light',
474
+ theme: {
475
+ seriesCnt: 3,
476
+ backgroundColor: 'transparent',
477
+ titleColor: 'rgba(0,0,0,0.75)',
478
+ subtitleColor: 'rgba(0,0,0,0.75)',
479
+ textColorShow: false,
480
+ textColor: 'rgba(0,0,0,0.75)',
481
+ markTextColor: '#000000',
482
+ color: [
483
+ '#00b8a6',
484
+ '#1d86dc',
485
+ '#a207bd',
486
+ '#617d8c',
487
+ '#2351a4',
488
+ '#5581e7',
489
+ '#94947b',
490
+ '#007362',
491
+ '#dd886a',
492
+ '#909700',
493
+ ],
494
+ borderColor: 'rgba(0,0,0,0.3)',
495
+ borderWidth: 0,
496
+ visualMapColor: ['#dc0031', '#ff8d00', '#f0b800'],
497
+ legendTextColor: 'rgba(0,0,0,0.75)',
498
+ kColor: '#dc0031',
499
+ kColor0: '#339b00',
500
+ kBorderColor: '#dc0031',
501
+ kBorderColor0: '#339b00',
502
+ kBorderWidth: 1,
503
+ lineWidth: 2,
504
+ symbolSize: 4,
505
+ symbol: 'circle',
506
+ symbolBorderWidth: 1,
507
+ lineSmooth: false,
508
+ graphLineWidth: '1',
509
+ graphLineColor: 'rgba(0,0,0,0.6)',
510
+ mapLabelColor: '#000',
511
+ mapLabelColorE: 'rgb(100,0,0)',
512
+ mapBorderColor: '#444',
513
+ mapBorderColorE: '#444',
514
+ mapBorderWidth: 0.5,
515
+ mapBorderWidthE: 1,
516
+ mapAreaColor: '#eee',
517
+ mapAreaColorE: 'rgba(255,215,0,0.8)',
518
+ axes: [
519
+ {
520
+ type: 'all',
521
+ name: '通用坐标轴',
522
+ axisLineShow: true,
523
+ axisLineColor: 'rgba(0,0,0,0.3)',
524
+ axisTickShow: true,
525
+ axisTickColor: 'rgba(0,0,0,0.3)',
526
+ axisLabelShow: true,
527
+ axisLabelColor: 'rgba(0,0,0,0.75)',
528
+ splitLineShow: true,
529
+ splitLineColor: ['rgba(0,0,0,0.1)'],
530
+ splitAreaShow: false,
531
+ splitAreaColor: ['rgba(250,250,250,0.2)', 'rgba(210,219,238,0.2)'],
532
+ },
533
+ {
534
+ type: 'category',
535
+ name: '类目坐标轴',
536
+ axisLineShow: true,
537
+ axisLineColor: '#6E7079',
538
+ axisTickShow: true,
539
+ axisTickColor: '#6E7079',
540
+ axisLabelShow: true,
541
+ axisLabelColor: '#6E7079',
542
+ splitLineShow: false,
543
+ splitLineColor: ['#E0E6F1'],
544
+ splitAreaShow: false,
545
+ splitAreaColor: ['rgba(250,250,250,0.2)', 'rgba(210,219,238,0.2)'],
546
+ },
547
+ {
548
+ type: 'value',
549
+ name: '数值坐标轴',
550
+ axisLineShow: true,
551
+ axisLineColor: '#6E7079',
552
+ axisTickShow: false,
553
+ axisTickColor: '#6E7079',
554
+ axisLabelShow: true,
555
+ axisLabelColor: '#6E7079',
556
+ splitLineShow: true,
557
+ splitLineColor: ['#E0E6F1'],
558
+ splitAreaShow: false,
559
+ splitAreaColor: ['rgba(250,250,250,0.2)', 'rgba(210,219,238,0.2)'],
560
+ },
561
+ {
562
+ type: 'log',
563
+ name: '对数坐标轴',
564
+ axisLineShow: false,
565
+ axisLineColor: '#6E7079',
566
+ axisTickShow: false,
567
+ axisTickColor: '#6E7079',
568
+ axisLabelShow: true,
569
+ axisLabelColor: '#6E7079',
570
+ splitLineShow: false,
571
+ splitLineColor: ['#E0E6F1'],
572
+ splitAreaShow: true,
573
+ splitAreaColor: ['rgba(250,250,250,0.2)', 'rgba(210,219,238,0.2)'],
574
+ },
575
+ {
576
+ type: 'time',
577
+ name: '时间坐标轴',
578
+ axisLineShow: true,
579
+ axisLineColor: '#6E7079',
580
+ axisTickShow: true,
581
+ axisTickColor: '#6E7079',
582
+ axisLabelShow: true,
583
+ axisLabelColor: '#6E7079',
584
+ splitLineShow: false,
585
+ splitLineColor: ['#E0E6F1'],
586
+ splitAreaShow: false,
587
+ splitAreaColor: ['rgba(250,250,250,0.2)', 'rgba(210,219,238,0.2)'],
588
+ },
589
+ ],
590
+ axisSeperateSetting: false,
591
+ toolboxColor: 'rgba(0,0,0,0.3)',
592
+ toolboxEmphasisColor: 'rgba(0,0,0,0.75)',
593
+ tooltipAxisColor: 'rgba(0,0,0,0.3)',
594
+ tooltipAxisWidth: '1',
595
+ timelineLineColor: 'rgba(0,0,0,0)',
596
+ timelineLineWidth: '1',
597
+ timelineItemColor: 'rgba(0,0,0,0.3)',
598
+ timelineItemColorE: 'rgba(0,0,0,0.6)',
599
+ timelineCheckColor: '#0e777c',
600
+ timelineCheckBorderColor: '#ffffff',
601
+ timelineItemBorderWidth: '1',
602
+ timelineControlColor: '#0e777c',
603
+ timelineControlBorderColor: '#0e777c',
604
+ timelineControlBorderWidth: '1',
605
+ timelineLabelColor: 'rgba(0,0,0,0.3)',
606
+ },
607
+ };
608
+
609
+ /*
610
+ * SPDX-FileCopyrightText: 2022 Siemens AG
611
+ *
612
+ * SPDX-License-Identifier: MIT
613
+ *
614
+ * This source code is licensed under the MIT license found in the
615
+ * LICENSE file in the root directory of this source tree.
616
+ */
617
+ function registerEChartsThemes() {
618
+ if (echarts__namespace === undefined) {
619
+ console.error('echarts not found!');
620
+ }
621
+ [
622
+ classicDarkProject,
623
+ classicLightProject,
624
+ brandDarkProject,
625
+ brandLightProject,
626
+ ].forEach((themeBundle) => {
627
+ echarts__namespace.registerTheme(themeBundle.themeName, themeBundle.theme);
628
+ });
629
+ }
630
+
631
+ /*
632
+ * SPDX-FileCopyrightText: 2022 Siemens AG
633
+ *
634
+ * SPDX-License-Identifier: MIT
635
+ *
636
+ * This source code is licensed under the MIT license found in the
637
+ * LICENSE file in the root directory of this source tree.
638
+ */
639
+ registerEChartsThemes();
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export default function registerEChartsThemes(): void;