@siemens/charts-ng 47.6.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.
Files changed (41) hide show
  1. package/LICENSE.md +20 -0
  2. package/README.md +47 -0
  3. package/components/index.d.ts +13 -0
  4. package/components/si-chart/index.d.ts +6 -0
  5. package/components/si-chart/si-chart.component.d.ts +341 -0
  6. package/components/si-chart/si-chart.interfaces.d.ts +97 -0
  7. package/components/si-chart-cartesian/index.d.ts +6 -0
  8. package/components/si-chart-cartesian/si-chart-cartesian.component.d.ts +53 -0
  9. package/components/si-chart-cartesian/si-chart-cartesian.interfaces.d.ts +35 -0
  10. package/components/si-chart-circle/index.d.ts +6 -0
  11. package/components/si-chart-circle/si-chart-circle.component.d.ts +18 -0
  12. package/components/si-chart-circle/si-chart-circle.interface.d.ts +38 -0
  13. package/components/si-chart-gauge/index.d.ts +6 -0
  14. package/components/si-chart-gauge/si-chart-gauge.component.d.ts +84 -0
  15. package/components/si-chart-gauge/si-chart-gauge.interface.d.ts +9 -0
  16. package/components/si-chart-loading-spinner/si-chart-loading-spinner.component.d.ts +5 -0
  17. package/components/si-chart-progress/index.d.ts +6 -0
  18. package/components/si-chart-progress/si-chart-progress.component.d.ts +39 -0
  19. package/components/si-chart-progress/si-chart-progress.interface.d.ts +12 -0
  20. package/components/si-chart-progress-bar/index.d.ts +6 -0
  21. package/components/si-chart-progress-bar/si-chart-progress-bar.component.d.ts +28 -0
  22. package/components/si-chart-progress-bar/si-chart-progress-bar.interface.d.ts +12 -0
  23. package/components/si-chart-sankey/index.d.ts +5 -0
  24. package/components/si-chart-sankey/si-chart-sankey.component.d.ts +11 -0
  25. package/components/si-chart-sunburst/index.d.ts +5 -0
  26. package/components/si-chart-sunburst/si-chart-sunburst.component.d.ts +11 -0
  27. package/components/si-custom-legend/index.d.ts +6 -0
  28. package/components/si-custom-legend/si-custom-legend.component.d.ts +25 -0
  29. package/components/si-custom-legend/si-custom-legend.interface.d.ts +33 -0
  30. package/fesm2022/siemens-charts-ng.mjs +3576 -0
  31. package/fesm2022/siemens-charts-ng.mjs.map +1 -0
  32. package/index.d.ts +5 -0
  33. package/package.json +43 -0
  34. package/projects/charts-ng/README.md +47 -0
  35. package/public-api.d.ts +7 -0
  36. package/public-api.module.d.ts +18 -0
  37. package/shared/echarts.custom.d.ts +2 -0
  38. package/shared/echarts.model.d.ts +15 -0
  39. package/shared/index.d.ts +8 -0
  40. package/shared/theme-support.d.ts +394 -0
  41. package/shared/themes/element.d.ts +384 -0
@@ -0,0 +1,384 @@
1
+ export declare const themeElement: {
2
+ name: string;
3
+ style: () => {
4
+ textStyle: {
5
+ fontFamily: string | undefined;
6
+ };
7
+ color: string[];
8
+ gradientColor: string[];
9
+ backgroundColor: string;
10
+ animationDuration: number;
11
+ title: {
12
+ padding: number[];
13
+ textStyle: {
14
+ fontFamily: string | undefined;
15
+ lineHeight: number;
16
+ fontSize: number;
17
+ color: string;
18
+ };
19
+ subtextStyle: {
20
+ fontFamily: string | undefined;
21
+ lineHeight: number;
22
+ fontSize: number;
23
+ color: string;
24
+ };
25
+ };
26
+ legend: {
27
+ backgroundColor: string;
28
+ inactiveColor: string;
29
+ left: string;
30
+ right: number;
31
+ top: number;
32
+ textStyle: {
33
+ fontFamily: string | undefined;
34
+ color: string;
35
+ lineHeight: number;
36
+ fontSize: number;
37
+ };
38
+ icon: string;
39
+ pageTextStyle: {
40
+ color: string;
41
+ };
42
+ itemStyle: {
43
+ borderWidth: number;
44
+ itemGap: number;
45
+ };
46
+ };
47
+ tooltip: {
48
+ borderWidth: number;
49
+ backgroundColor: string;
50
+ textStyle: {
51
+ fontFamily: string | undefined;
52
+ color: string;
53
+ fontWeight: number;
54
+ };
55
+ padding: number[];
56
+ axisPointer: {
57
+ crossStyle: {
58
+ color: string;
59
+ width: number;
60
+ };
61
+ };
62
+ formatter: (p: object | object[]) => string;
63
+ };
64
+ axisPointer: {
65
+ label: {
66
+ fontFamily: string | undefined;
67
+ color: string;
68
+ backgroundColor: string;
69
+ lineHeight: number;
70
+ fontSize: number;
71
+ };
72
+ lineStyle: {
73
+ color: string;
74
+ width: number;
75
+ };
76
+ handle: {
77
+ color: string;
78
+ margin: number;
79
+ };
80
+ };
81
+ grid: {
82
+ top: number;
83
+ left: number;
84
+ right: number;
85
+ bottom: number;
86
+ containLabel: boolean;
87
+ };
88
+ valueAxis: {
89
+ nameTextStyle: {
90
+ fontFamily: string | undefined;
91
+ color: string;
92
+ };
93
+ axisLine: {
94
+ show: boolean;
95
+ lineStyle: {
96
+ color: string;
97
+ };
98
+ };
99
+ axisLabel: {
100
+ fontFamily: string | undefined;
101
+ color: string;
102
+ lineHeight: number;
103
+ fontSize: number;
104
+ hideOverlap: boolean;
105
+ };
106
+ axisTick: {
107
+ alignWithLabel: boolean;
108
+ };
109
+ splitLine: {
110
+ lineStyle: {
111
+ color: string;
112
+ };
113
+ };
114
+ };
115
+ timeAxis: {
116
+ inverse: boolean;
117
+ nameTextStyle: {
118
+ fontFamily: string | undefined;
119
+ color: string;
120
+ };
121
+ axisLine: {
122
+ show: boolean;
123
+ lineStyle: {
124
+ color: string;
125
+ };
126
+ };
127
+ axisLabel: {
128
+ fontFamily: string | undefined;
129
+ color: string;
130
+ lineHeight: number;
131
+ fontSize: number;
132
+ hideOverlap: boolean;
133
+ };
134
+ axisTick: {
135
+ alignWithLabel: boolean;
136
+ };
137
+ splitLine: {
138
+ lineStyle: {
139
+ color: string;
140
+ };
141
+ };
142
+ };
143
+ categoryAxis: {
144
+ inverse: boolean;
145
+ nameTextStyle: {
146
+ fontFamily: string | undefined;
147
+ color: string;
148
+ };
149
+ axisLine: {
150
+ show: boolean;
151
+ lineStyle: {
152
+ color: string;
153
+ };
154
+ };
155
+ axisLabel: {
156
+ fontFamily: string | undefined;
157
+ color: string;
158
+ lineHeight: number;
159
+ fontSize: number;
160
+ hideOverlap: boolean;
161
+ };
162
+ axisTick: {
163
+ alignWithLabel: boolean;
164
+ };
165
+ splitLine: {
166
+ lineStyle: {
167
+ color: string;
168
+ };
169
+ };
170
+ };
171
+ dataZoom: {
172
+ textStyle: {
173
+ fontFamily: string | undefined;
174
+ color: string;
175
+ lineHeight: number;
176
+ fontSize: number;
177
+ };
178
+ borderColor: string;
179
+ fillerColor: string;
180
+ handleIcon: string;
181
+ handleStyle: {
182
+ color: string;
183
+ borderColor: string;
184
+ };
185
+ moveHandleStyle: {
186
+ color: string;
187
+ opacity: number;
188
+ };
189
+ brushStyle: {
190
+ color: string;
191
+ };
192
+ dataBackground: {
193
+ areaStyle: {
194
+ color: string;
195
+ };
196
+ lineStyle: {
197
+ color: string;
198
+ };
199
+ };
200
+ selectedDataBackground: {
201
+ areaStyle: {
202
+ color: string;
203
+ };
204
+ lineStyle: {
205
+ color: string;
206
+ };
207
+ };
208
+ emphasis: {
209
+ moveHandleStyle: {
210
+ color: string;
211
+ opacity: number;
212
+ };
213
+ handleStyle: {
214
+ color: string;
215
+ borderColor: string;
216
+ };
217
+ };
218
+ };
219
+ toolbox: {
220
+ feature: {
221
+ dataZoom: {
222
+ brushStyle: {
223
+ color: string;
224
+ };
225
+ };
226
+ };
227
+ };
228
+ graph: {
229
+ color: string[];
230
+ };
231
+ bar: {
232
+ barGap: number;
233
+ label: {
234
+ fontFamily: string | undefined;
235
+ color: string;
236
+ fontSize: number;
237
+ };
238
+ };
239
+ line: {
240
+ areaStyle: {
241
+ opacity: number;
242
+ };
243
+ symbol: string;
244
+ };
245
+ pie: {
246
+ label: {
247
+ fontFamily: string | undefined;
248
+ formatter: string;
249
+ color: string;
250
+ lineHeight: number;
251
+ fontSize: number;
252
+ };
253
+ labelLine: {
254
+ lineStyle: {
255
+ color: string;
256
+ };
257
+ };
258
+ itemStyle: {
259
+ borderWidth: number;
260
+ borderColor: string;
261
+ };
262
+ };
263
+ candlestick: {
264
+ itemStyle: {
265
+ color: string;
266
+ color0: string;
267
+ borderColor: string;
268
+ borderColor0: string;
269
+ };
270
+ };
271
+ gauge: {
272
+ detail: {
273
+ color: string;
274
+ rich: {
275
+ value: {
276
+ color: string;
277
+ };
278
+ unit: {
279
+ color: string;
280
+ };
281
+ };
282
+ };
283
+ axisLabel: {
284
+ fontFamily: string | undefined;
285
+ color: string;
286
+ };
287
+ axisTick: {
288
+ lineStyle: {
289
+ color: string;
290
+ };
291
+ };
292
+ splitLine: {
293
+ lineStyle: {
294
+ color: string;
295
+ };
296
+ };
297
+ };
298
+ sankey: {
299
+ label: {
300
+ fontFamily: string | undefined;
301
+ textBorderColor: string;
302
+ color: string;
303
+ };
304
+ };
305
+ sunburst: {
306
+ label: {
307
+ fontFamily: string | undefined;
308
+ textBorderColor: string;
309
+ color: string;
310
+ };
311
+ };
312
+ simpl: {
313
+ colorPalettes: {
314
+ default: string[];
315
+ };
316
+ dataZoom: {
317
+ options: {
318
+ height: number;
319
+ bottom: number;
320
+ };
321
+ grid: {
322
+ bottom: number;
323
+ };
324
+ };
325
+ timeRangeBar: {
326
+ height: number;
327
+ };
328
+ externalZoomSlider: {
329
+ grid: {
330
+ bottom: number;
331
+ };
332
+ };
333
+ legendLeft: {
334
+ left: number;
335
+ width: string;
336
+ };
337
+ legendRight: {
338
+ right: number;
339
+ width: string;
340
+ };
341
+ noTitle: {
342
+ grid: {
343
+ top: number;
344
+ };
345
+ legend: {
346
+ top: number;
347
+ };
348
+ };
349
+ subTitle: {
350
+ grid: {
351
+ top: number;
352
+ };
353
+ legend: {
354
+ top: number;
355
+ };
356
+ };
357
+ customLegend: {
358
+ grid: {
359
+ top: number;
360
+ };
361
+ };
362
+ progress: {
363
+ itemWidth: number;
364
+ itemGap: number;
365
+ grey: string;
366
+ };
367
+ progressBar: {
368
+ labelColor: string;
369
+ itemWidth: number;
370
+ grid: {
371
+ left: number;
372
+ right: number;
373
+ containLabel: boolean;
374
+ };
375
+ };
376
+ gauge: {
377
+ grey: string;
378
+ value: string;
379
+ unit: string;
380
+ defaultColor: string;
381
+ };
382
+ };
383
+ };
384
+ };