@siemens/ix-echarts 3.0.0-alpha.0 → 3.0.0

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.
@@ -0,0 +1 @@
1
+ export default function getComputedCSSProperty(cssProperty: string): string;
@@ -0,0 +1,6 @@
1
+ export { default as registerTheme } from './register';
2
+ export { default as getComputedCSSProperty } from './computecss';
3
+ export { default as brandDark } from './themes/brand-dark';
4
+ export { default as brandLight } from './themes/brand-light';
5
+ export { default as classicDark } from './themes/classic-dark';
6
+ export { default as classicLight } from './themes/classic-light';
@@ -0,0 +1,7 @@
1
+ import type { ECharts } from 'echarts';
2
+ declare global {
3
+ interface Window {
4
+ echarts: ECharts;
5
+ }
6
+ }
7
+ export default function registerTheme(echartsInstance?: any): void;
@@ -0,0 +1,331 @@
1
+ declare const _default: {
2
+ themeName: string;
3
+ theme: {
4
+ color: string[];
5
+ backgroundColor: string;
6
+ textStyle: {};
7
+ title: {
8
+ textStyle: {
9
+ color: string;
10
+ };
11
+ subtextStyle: {
12
+ color: string;
13
+ };
14
+ };
15
+ line: {
16
+ itemStyle: {
17
+ borderWidth: number;
18
+ };
19
+ lineStyle: {
20
+ width: number;
21
+ };
22
+ symbolSize: number;
23
+ symbol: string;
24
+ smooth: boolean;
25
+ };
26
+ radar: {
27
+ itemStyle: {
28
+ borderWidth: number;
29
+ };
30
+ lineStyle: {
31
+ width: number;
32
+ };
33
+ symbolSize: number;
34
+ symbol: string;
35
+ smooth: boolean;
36
+ };
37
+ bar: {
38
+ itemStyle: {
39
+ barBorderWidth: number;
40
+ barBorderColor: string;
41
+ };
42
+ };
43
+ pie: {
44
+ itemStyle: {
45
+ borderWidth: number;
46
+ borderColor: string;
47
+ };
48
+ };
49
+ scatter: {
50
+ itemStyle: {
51
+ borderWidth: number;
52
+ borderColor: string;
53
+ };
54
+ };
55
+ boxplot: {
56
+ itemStyle: {
57
+ borderWidth: number;
58
+ borderColor: string;
59
+ };
60
+ };
61
+ parallel: {
62
+ itemStyle: {
63
+ borderWidth: number;
64
+ borderColor: string;
65
+ };
66
+ };
67
+ sankey: {
68
+ itemStyle: {
69
+ borderWidth: number;
70
+ borderColor: string;
71
+ };
72
+ };
73
+ funnel: {
74
+ itemStyle: {
75
+ borderWidth: number;
76
+ borderColor: string;
77
+ };
78
+ };
79
+ gauge: {
80
+ itemStyle: {
81
+ borderWidth: number;
82
+ borderColor: string;
83
+ };
84
+ };
85
+ candlestick: {
86
+ itemStyle: {
87
+ color: string;
88
+ color0: string;
89
+ borderColor: string;
90
+ borderColor0: string;
91
+ borderWidth: number;
92
+ };
93
+ };
94
+ graph: {
95
+ itemStyle: {
96
+ borderWidth: number;
97
+ borderColor: string;
98
+ };
99
+ lineStyle: {
100
+ width: number;
101
+ color: string;
102
+ };
103
+ symbolSize: number;
104
+ symbol: string;
105
+ smooth: boolean;
106
+ color: string[];
107
+ label: {
108
+ color: string;
109
+ };
110
+ };
111
+ categoryAxis: {
112
+ axisLine: {
113
+ show: boolean;
114
+ lineStyle: {
115
+ color: string;
116
+ };
117
+ };
118
+ axisTick: {
119
+ show: boolean;
120
+ lineStyle: {
121
+ color: string;
122
+ };
123
+ };
124
+ axisLabel: {
125
+ show: boolean;
126
+ color: string;
127
+ };
128
+ splitLine: {
129
+ show: boolean;
130
+ lineStyle: {
131
+ color: string[];
132
+ };
133
+ };
134
+ splitArea: {
135
+ show: boolean;
136
+ areaStyle: {
137
+ color: string[];
138
+ };
139
+ };
140
+ };
141
+ valueAxis: {
142
+ axisLine: {
143
+ show: boolean;
144
+ lineStyle: {
145
+ color: string;
146
+ };
147
+ };
148
+ axisTick: {
149
+ show: boolean;
150
+ lineStyle: {
151
+ color: string;
152
+ };
153
+ };
154
+ axisLabel: {
155
+ show: boolean;
156
+ color: string;
157
+ };
158
+ splitLine: {
159
+ show: boolean;
160
+ lineStyle: {
161
+ color: string[];
162
+ };
163
+ };
164
+ splitArea: {
165
+ show: boolean;
166
+ areaStyle: {
167
+ color: string[];
168
+ };
169
+ };
170
+ };
171
+ logAxis: {
172
+ axisLine: {
173
+ show: boolean;
174
+ lineStyle: {
175
+ color: string;
176
+ };
177
+ };
178
+ axisTick: {
179
+ show: boolean;
180
+ lineStyle: {
181
+ color: string;
182
+ };
183
+ };
184
+ axisLabel: {
185
+ show: boolean;
186
+ color: string;
187
+ };
188
+ splitLine: {
189
+ show: boolean;
190
+ lineStyle: {
191
+ color: string[];
192
+ };
193
+ };
194
+ splitArea: {
195
+ show: boolean;
196
+ areaStyle: {
197
+ color: string[];
198
+ };
199
+ };
200
+ };
201
+ timeAxis: {
202
+ axisLine: {
203
+ show: boolean;
204
+ lineStyle: {
205
+ color: string;
206
+ };
207
+ };
208
+ axisTick: {
209
+ show: boolean;
210
+ lineStyle: {
211
+ color: string;
212
+ };
213
+ };
214
+ axisLabel: {
215
+ show: boolean;
216
+ color: string;
217
+ };
218
+ splitLine: {
219
+ show: boolean;
220
+ lineStyle: {
221
+ color: string[];
222
+ };
223
+ };
224
+ splitArea: {
225
+ show: boolean;
226
+ areaStyle: {
227
+ color: string[];
228
+ };
229
+ };
230
+ };
231
+ toolbox: {
232
+ iconStyle: {
233
+ borderColor: string;
234
+ };
235
+ emphasis: {
236
+ iconStyle: {
237
+ borderColor: string;
238
+ };
239
+ };
240
+ };
241
+ legend: {
242
+ textStyle: {
243
+ color: string;
244
+ };
245
+ };
246
+ tooltip: {
247
+ backgroundColor: string;
248
+ borderColor: string;
249
+ textStyle: {
250
+ color: string;
251
+ };
252
+ axisPointer: {
253
+ lineStyle: {
254
+ color: string;
255
+ width: string;
256
+ };
257
+ crossStyle: {
258
+ color: string;
259
+ width: string;
260
+ };
261
+ };
262
+ };
263
+ timeline: {
264
+ lineStyle: {
265
+ color: string;
266
+ width: string;
267
+ };
268
+ itemStyle: {
269
+ color: string;
270
+ borderWidth: string;
271
+ };
272
+ controlStyle: {
273
+ color: string;
274
+ borderColor: string;
275
+ borderWidth: string;
276
+ };
277
+ checkpointStyle: {
278
+ color: string;
279
+ borderColor: string;
280
+ };
281
+ label: {
282
+ color: string;
283
+ };
284
+ emphasis: {
285
+ itemStyle: {
286
+ color: string;
287
+ };
288
+ controlStyle: {
289
+ color: string;
290
+ borderColor: string;
291
+ borderWidth: string;
292
+ };
293
+ label: {
294
+ color: string;
295
+ };
296
+ };
297
+ };
298
+ visualMap: {
299
+ color: string[];
300
+ };
301
+ dataZoom: {
302
+ handleSize: string;
303
+ textStyle: {};
304
+ };
305
+ nameTextStyle: {
306
+ color: string;
307
+ };
308
+ markPoint: {
309
+ label: {
310
+ color: string;
311
+ textBorderColor: string;
312
+ textBorderWidth: number;
313
+ };
314
+ };
315
+ markLine: {
316
+ label: {
317
+ color: string;
318
+ textBorderColor: string;
319
+ textBorderWidth: number;
320
+ };
321
+ };
322
+ markArea: {
323
+ label: {
324
+ color: string;
325
+ textBorderColor: string;
326
+ textBorderWidth: number;
327
+ };
328
+ };
329
+ };
330
+ };
331
+ export default _default;
@@ -0,0 +1,331 @@
1
+ declare const _default: {
2
+ themeName: string;
3
+ theme: {
4
+ color: string[];
5
+ backgroundColor: string;
6
+ textStyle: {};
7
+ title: {
8
+ textStyle: {
9
+ color: string;
10
+ };
11
+ subtextStyle: {
12
+ color: string;
13
+ };
14
+ };
15
+ line: {
16
+ itemStyle: {
17
+ borderWidth: number;
18
+ };
19
+ lineStyle: {
20
+ width: number;
21
+ };
22
+ symbolSize: number;
23
+ symbol: string;
24
+ smooth: boolean;
25
+ };
26
+ radar: {
27
+ itemStyle: {
28
+ borderWidth: number;
29
+ };
30
+ lineStyle: {
31
+ width: number;
32
+ };
33
+ symbolSize: number;
34
+ symbol: string;
35
+ smooth: boolean;
36
+ };
37
+ bar: {
38
+ itemStyle: {
39
+ barBorderWidth: number;
40
+ barBorderColor: string;
41
+ };
42
+ };
43
+ pie: {
44
+ itemStyle: {
45
+ borderWidth: number;
46
+ borderColor: string;
47
+ };
48
+ };
49
+ scatter: {
50
+ itemStyle: {
51
+ borderWidth: number;
52
+ borderColor: string;
53
+ };
54
+ };
55
+ boxplot: {
56
+ itemStyle: {
57
+ borderWidth: number;
58
+ borderColor: string;
59
+ };
60
+ };
61
+ parallel: {
62
+ itemStyle: {
63
+ borderWidth: number;
64
+ borderColor: string;
65
+ };
66
+ };
67
+ sankey: {
68
+ itemStyle: {
69
+ borderWidth: number;
70
+ borderColor: string;
71
+ };
72
+ };
73
+ funnel: {
74
+ itemStyle: {
75
+ borderWidth: number;
76
+ borderColor: string;
77
+ };
78
+ };
79
+ gauge: {
80
+ itemStyle: {
81
+ borderWidth: number;
82
+ borderColor: string;
83
+ };
84
+ };
85
+ candlestick: {
86
+ itemStyle: {
87
+ color: string;
88
+ color0: string;
89
+ borderColor: string;
90
+ borderColor0: string;
91
+ borderWidth: number;
92
+ };
93
+ };
94
+ graph: {
95
+ itemStyle: {
96
+ borderWidth: number;
97
+ borderColor: string;
98
+ };
99
+ lineStyle: {
100
+ width: string;
101
+ color: string;
102
+ };
103
+ symbolSize: number;
104
+ symbol: string;
105
+ smooth: boolean;
106
+ color: string[];
107
+ label: {
108
+ color: string;
109
+ };
110
+ };
111
+ categoryAxis: {
112
+ axisLine: {
113
+ show: boolean;
114
+ lineStyle: {
115
+ color: string;
116
+ };
117
+ };
118
+ axisTick: {
119
+ show: boolean;
120
+ lineStyle: {
121
+ color: string;
122
+ };
123
+ };
124
+ axisLabel: {
125
+ show: boolean;
126
+ color: string;
127
+ };
128
+ splitLine: {
129
+ show: boolean;
130
+ lineStyle: {
131
+ color: string[];
132
+ };
133
+ };
134
+ splitArea: {
135
+ show: boolean;
136
+ areaStyle: {
137
+ color: string[];
138
+ };
139
+ };
140
+ };
141
+ valueAxis: {
142
+ axisLine: {
143
+ show: boolean;
144
+ lineStyle: {
145
+ color: string;
146
+ };
147
+ };
148
+ axisTick: {
149
+ show: boolean;
150
+ lineStyle: {
151
+ color: string;
152
+ };
153
+ };
154
+ axisLabel: {
155
+ show: boolean;
156
+ color: string;
157
+ };
158
+ splitLine: {
159
+ show: boolean;
160
+ lineStyle: {
161
+ color: string[];
162
+ };
163
+ };
164
+ splitArea: {
165
+ show: boolean;
166
+ areaStyle: {
167
+ color: string[];
168
+ };
169
+ };
170
+ };
171
+ logAxis: {
172
+ axisLine: {
173
+ show: boolean;
174
+ lineStyle: {
175
+ color: string;
176
+ };
177
+ };
178
+ axisTick: {
179
+ show: boolean;
180
+ lineStyle: {
181
+ color: string;
182
+ };
183
+ };
184
+ axisLabel: {
185
+ show: boolean;
186
+ color: string;
187
+ };
188
+ splitLine: {
189
+ show: boolean;
190
+ lineStyle: {
191
+ color: string[];
192
+ };
193
+ };
194
+ splitArea: {
195
+ show: boolean;
196
+ areaStyle: {
197
+ color: string[];
198
+ };
199
+ };
200
+ };
201
+ timeAxis: {
202
+ axisLine: {
203
+ show: boolean;
204
+ lineStyle: {
205
+ color: string;
206
+ };
207
+ };
208
+ axisTick: {
209
+ show: boolean;
210
+ lineStyle: {
211
+ color: string;
212
+ };
213
+ };
214
+ axisLabel: {
215
+ show: boolean;
216
+ color: string;
217
+ };
218
+ splitLine: {
219
+ show: boolean;
220
+ lineStyle: {
221
+ color: string[];
222
+ };
223
+ };
224
+ splitArea: {
225
+ show: boolean;
226
+ areaStyle: {
227
+ color: string[];
228
+ };
229
+ };
230
+ };
231
+ toolbox: {
232
+ iconStyle: {
233
+ borderColor: string;
234
+ };
235
+ emphasis: {
236
+ iconStyle: {
237
+ borderColor: string;
238
+ };
239
+ };
240
+ };
241
+ legend: {
242
+ textStyle: {
243
+ color: string;
244
+ };
245
+ };
246
+ tooltip: {
247
+ backgroundColor: string;
248
+ borderColor: string;
249
+ textStyle: {
250
+ color: string;
251
+ };
252
+ axisPointer: {
253
+ lineStyle: {
254
+ color: string;
255
+ width: string;
256
+ };
257
+ crossStyle: {
258
+ color: string;
259
+ width: string;
260
+ };
261
+ };
262
+ };
263
+ timeline: {
264
+ lineStyle: {
265
+ color: string;
266
+ width: string;
267
+ };
268
+ itemStyle: {
269
+ color: string;
270
+ borderWidth: string;
271
+ };
272
+ controlStyle: {
273
+ color: string;
274
+ borderColor: string;
275
+ borderWidth: string;
276
+ };
277
+ checkpointStyle: {
278
+ color: string;
279
+ borderColor: string;
280
+ };
281
+ label: {
282
+ color: string;
283
+ };
284
+ emphasis: {
285
+ itemStyle: {
286
+ color: string;
287
+ };
288
+ controlStyle: {
289
+ color: string;
290
+ borderColor: string;
291
+ borderWidth: string;
292
+ };
293
+ label: {
294
+ color: string;
295
+ };
296
+ };
297
+ };
298
+ visualMap: {
299
+ color: string[];
300
+ };
301
+ dataZoom: {
302
+ handleSize: string;
303
+ textStyle: {};
304
+ };
305
+ nameTextStyle: {
306
+ color: string;
307
+ };
308
+ markPoint: {
309
+ label: {
310
+ color: string;
311
+ textBorderColor: string;
312
+ textBorderWidth: number;
313
+ };
314
+ };
315
+ markLine: {
316
+ label: {
317
+ color: string;
318
+ textBorderColor: string;
319
+ textBorderWidth: number;
320
+ };
321
+ };
322
+ markArea: {
323
+ label: {
324
+ color: string;
325
+ textBorderColor: string;
326
+ textBorderWidth: number;
327
+ };
328
+ };
329
+ };
330
+ };
331
+ export default _default;