@sisense/sdk-ai-core 0.2.11

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 (66) hide show
  1. package/README.md +51 -0
  2. package/dist/constants.d.ts +9 -0
  3. package/dist/constants.d.ts.map +1 -0
  4. package/dist/engines/chart-builder/chart-builder-engine.d.ts +14 -0
  5. package/dist/engines/chart-builder/chart-builder-engine.d.ts.map +1 -0
  6. package/dist/engines/chart-builder/chart-builder-service.d.ts +7 -0
  7. package/dist/engines/chart-builder/chart-builder-service.d.ts.map +1 -0
  8. package/dist/engines/chart-builder/create-chart/create-chart.d.ts +14 -0
  9. package/dist/engines/chart-builder/create-chart/create-chart.d.ts.map +1 -0
  10. package/dist/engines/chart-builder/create-chart/generate-chart-recommendations.d.ts +5 -0
  11. package/dist/engines/chart-builder/create-chart/generate-chart-recommendations.d.ts.map +1 -0
  12. package/dist/engines/chart-builder/create-chart/generate-chart-table.d.ts +3 -0
  13. package/dist/engines/chart-builder/create-chart/generate-chart-table.d.ts.map +1 -0
  14. package/dist/engines/chart-builder/types.d.ts +612 -0
  15. package/dist/engines/chart-builder/types.d.ts.map +1 -0
  16. package/dist/engines/chart-builder/update-chart/chart-options-schemas.d.ts +8629 -0
  17. package/dist/engines/chart-builder/update-chart/chart-options-schemas.d.ts.map +1 -0
  18. package/dist/engines/chart-builder/update-chart/schemas.d.ts +1136 -0
  19. package/dist/engines/chart-builder/update-chart/schemas.d.ts.map +1 -0
  20. package/dist/engines/chart-builder/update-chart/update-chart-data-options.d.ts +18 -0
  21. package/dist/engines/chart-builder/update-chart/update-chart-data-options.d.ts.map +1 -0
  22. package/dist/engines/chart-builder/update-chart/update-chart-style-options.d.ts +18 -0
  23. package/dist/engines/chart-builder/update-chart/update-chart-style-options.d.ts.map +1 -0
  24. package/dist/engines/chart-builder/update-chart/update-chart-title.d.ts +12 -0
  25. package/dist/engines/chart-builder/update-chart/update-chart-title.d.ts.map +1 -0
  26. package/dist/engines/chart-builder/update-chart/update-chart-type.d.ts +14 -0
  27. package/dist/engines/chart-builder/update-chart/update-chart-type.d.ts.map +1 -0
  28. package/dist/engines/index.d.ts +6 -0
  29. package/dist/engines/index.d.ts.map +1 -0
  30. package/dist/index.d.ts +18 -0
  31. package/dist/index.d.ts.map +1 -0
  32. package/dist/index.js +5035 -0
  33. package/dist/index.js.map +1 -0
  34. package/dist/services/dashboards/dashboards-service.d.ts +47 -0
  35. package/dist/services/dashboards/dashboards-service.d.ts.map +1 -0
  36. package/dist/services/dashboards/fusion-dashboards-service.d.ts +71 -0
  37. package/dist/services/dashboards/fusion-dashboards-service.d.ts.map +1 -0
  38. package/dist/services/data-models/data-models-service.d.ts +6 -0
  39. package/dist/services/data-models/data-models-service.d.ts.map +1 -0
  40. package/dist/services/data-models/ecm-service.d.ts +497 -0
  41. package/dist/services/data-models/ecm-service.d.ts.map +1 -0
  42. package/dist/services/data-sources/data-sources-service.d.ts +41 -0
  43. package/dist/services/data-sources/data-sources-service.d.ts.map +1 -0
  44. package/dist/services/globals/globals-service.d.ts +2 -0
  45. package/dist/services/globals/globals-service.d.ts.map +1 -0
  46. package/dist/services/llm/llm-settings-service.d.ts +18 -0
  47. package/dist/services/llm/llm-settings-service.d.ts.map +1 -0
  48. package/dist/services/nlq/nlq-service.d.ts +33 -0
  49. package/dist/services/nlq/nlq-service.d.ts.map +1 -0
  50. package/dist/singleton-clients.d.ts +48 -0
  51. package/dist/singleton-clients.d.ts.map +1 -0
  52. package/dist/utils/chat-completion-utils.d.ts +55 -0
  53. package/dist/utils/chat-completion-utils.d.ts.map +1 -0
  54. package/dist/utils/http-client.d.ts +33 -0
  55. package/dist/utils/http-client.d.ts.map +1 -0
  56. package/dist/utils/id-utils.d.ts +9 -0
  57. package/dist/utils/id-utils.d.ts.map +1 -0
  58. package/dist/utils/openai-client.d.ts +11 -0
  59. package/dist/utils/openai-client.d.ts.map +1 -0
  60. package/dist/utils/proxy-utils.d.ts +5 -0
  61. package/dist/utils/proxy-utils.d.ts.map +1 -0
  62. package/dist/utils/utils.d.ts +12 -0
  63. package/dist/utils/utils.d.ts.map +1 -0
  64. package/dist/utils/zod-utils.d.ts +60 -0
  65. package/dist/utils/zod-utils.d.ts.map +1 -0
  66. package/package.json +62 -0
@@ -0,0 +1,1136 @@
1
+ import { z } from 'zod';
2
+ export declare const AxisLabelSchema: z.ZodObject<{
3
+ enabled: z.ZodOptional<z.ZodBoolean>;
4
+ gridLines: z.ZodOptional<z.ZodBoolean>;
5
+ intervalJumps: z.ZodOptional<z.ZodNumber>;
6
+ isIntervalEnabled: z.ZodOptional<z.ZodBoolean>;
7
+ labels: z.ZodOptional<z.ZodObject<{
8
+ enabled: z.ZodBoolean;
9
+ }, "strip", z.ZodTypeAny, {
10
+ enabled: boolean;
11
+ }, {
12
+ enabled: boolean;
13
+ }>>;
14
+ logarithmic: z.ZodOptional<z.ZodBoolean>;
15
+ min: z.ZodOptional<z.ZodNumber>;
16
+ max: z.ZodOptional<z.ZodNumber>;
17
+ templateMainYHasGridLines: z.ZodOptional<z.ZodBoolean>;
18
+ title: z.ZodOptional<z.ZodObject<{
19
+ enabled: z.ZodBoolean;
20
+ text: z.ZodOptional<z.ZodString>;
21
+ }, "strip", z.ZodTypeAny, {
22
+ enabled: boolean;
23
+ text?: string | undefined;
24
+ }, {
25
+ enabled: boolean;
26
+ text?: string | undefined;
27
+ }>>;
28
+ x2Title: z.ZodOptional<z.ZodObject<{
29
+ enabled: z.ZodBoolean;
30
+ text: z.ZodOptional<z.ZodString>;
31
+ }, "strip", z.ZodTypeAny, {
32
+ enabled: boolean;
33
+ text?: string | undefined;
34
+ }, {
35
+ enabled: boolean;
36
+ text?: string | undefined;
37
+ }>>;
38
+ }, "strip", z.ZodTypeAny, {
39
+ min?: number | undefined;
40
+ max?: number | undefined;
41
+ title?: {
42
+ enabled: boolean;
43
+ text?: string | undefined;
44
+ } | undefined;
45
+ enabled?: boolean | undefined;
46
+ labels?: {
47
+ enabled: boolean;
48
+ } | undefined;
49
+ gridLines?: boolean | undefined;
50
+ intervalJumps?: number | undefined;
51
+ isIntervalEnabled?: boolean | undefined;
52
+ logarithmic?: boolean | undefined;
53
+ templateMainYHasGridLines?: boolean | undefined;
54
+ x2Title?: {
55
+ enabled: boolean;
56
+ text?: string | undefined;
57
+ } | undefined;
58
+ }, {
59
+ min?: number | undefined;
60
+ max?: number | undefined;
61
+ title?: {
62
+ enabled: boolean;
63
+ text?: string | undefined;
64
+ } | undefined;
65
+ enabled?: boolean | undefined;
66
+ labels?: {
67
+ enabled: boolean;
68
+ } | undefined;
69
+ gridLines?: boolean | undefined;
70
+ intervalJumps?: number | undefined;
71
+ isIntervalEnabled?: boolean | undefined;
72
+ logarithmic?: boolean | undefined;
73
+ templateMainYHasGridLines?: boolean | undefined;
74
+ x2Title?: {
75
+ enabled: boolean;
76
+ text?: string | undefined;
77
+ } | undefined;
78
+ }>;
79
+ export declare const MarkersSchema: z.ZodObject<{
80
+ enabled: z.ZodBoolean;
81
+ fill: z.ZodOptional<z.ZodEnum<["filled", "hollow"]>>;
82
+ size: z.ZodOptional<z.ZodEnum<["small", "large"]>>;
83
+ }, "strip", z.ZodTypeAny, {
84
+ enabled: boolean;
85
+ fill?: "filled" | "hollow" | undefined;
86
+ size?: "small" | "large" | undefined;
87
+ }, {
88
+ enabled: boolean;
89
+ fill?: "filled" | "hollow" | undefined;
90
+ size?: "small" | "large" | undefined;
91
+ }>;
92
+ export declare const NavigatorSchema: z.ZodObject<{
93
+ series: z.ZodObject<{
94
+ type: z.ZodString;
95
+ dataGrouping: z.ZodObject<{
96
+ enabled: z.ZodBoolean;
97
+ }, "strip", z.ZodTypeAny, {
98
+ enabled: boolean;
99
+ }, {
100
+ enabled: boolean;
101
+ }>;
102
+ color: z.ZodOptional<z.ZodString>;
103
+ }, "strip", z.ZodTypeAny, {
104
+ type: string;
105
+ dataGrouping: {
106
+ enabled: boolean;
107
+ };
108
+ color?: string | undefined;
109
+ }, {
110
+ type: string;
111
+ dataGrouping: {
112
+ enabled: boolean;
113
+ };
114
+ color?: string | undefined;
115
+ }>;
116
+ enabled: z.ZodBoolean;
117
+ margin: z.ZodNumber;
118
+ height: z.ZodNumber;
119
+ xAxis: z.ZodObject<{
120
+ type: z.ZodOptional<z.ZodEnum<["linear", "logarithmic"]>>;
121
+ title: z.ZodOptional<z.ZodObject<{
122
+ text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
123
+ enabled: z.ZodOptional<z.ZodBoolean>;
124
+ margin: z.ZodOptional<z.ZodNumber>;
125
+ style: z.ZodOptional<z.ZodObject<{
126
+ fontFamily: z.ZodOptional<z.ZodString>;
127
+ fontSize: z.ZodOptional<z.ZodString>;
128
+ fontWeight: z.ZodOptional<z.ZodString>;
129
+ color: z.ZodOptional<z.ZodString>;
130
+ textOutline: z.ZodOptional<z.ZodString>;
131
+ pointerEvents: z.ZodOptional<z.ZodString>;
132
+ textOverflow: z.ZodOptional<z.ZodString>;
133
+ width: z.ZodOptional<z.ZodString>;
134
+ }, "strip", z.ZodTypeAny, {
135
+ color?: string | undefined;
136
+ width?: string | undefined;
137
+ pointerEvents?: string | undefined;
138
+ textOverflow?: string | undefined;
139
+ fontFamily?: string | undefined;
140
+ fontSize?: string | undefined;
141
+ fontWeight?: string | undefined;
142
+ textOutline?: string | undefined;
143
+ }, {
144
+ color?: string | undefined;
145
+ width?: string | undefined;
146
+ pointerEvents?: string | undefined;
147
+ textOverflow?: string | undefined;
148
+ fontFamily?: string | undefined;
149
+ fontSize?: string | undefined;
150
+ fontWeight?: string | undefined;
151
+ textOutline?: string | undefined;
152
+ }>>;
153
+ }, "strip", z.ZodTypeAny, {
154
+ text?: string | null | undefined;
155
+ style?: {
156
+ color?: string | undefined;
157
+ width?: string | undefined;
158
+ pointerEvents?: string | undefined;
159
+ textOverflow?: string | undefined;
160
+ fontFamily?: string | undefined;
161
+ fontSize?: string | undefined;
162
+ fontWeight?: string | undefined;
163
+ textOutline?: string | undefined;
164
+ } | undefined;
165
+ enabled?: boolean | undefined;
166
+ margin?: number | undefined;
167
+ }, {
168
+ text?: string | null | undefined;
169
+ style?: {
170
+ color?: string | undefined;
171
+ width?: string | undefined;
172
+ pointerEvents?: string | undefined;
173
+ textOverflow?: string | undefined;
174
+ fontFamily?: string | undefined;
175
+ fontSize?: string | undefined;
176
+ fontWeight?: string | undefined;
177
+ textOutline?: string | undefined;
178
+ } | undefined;
179
+ enabled?: boolean | undefined;
180
+ margin?: number | undefined;
181
+ }>>;
182
+ gridLineDashStyle: z.ZodOptional<z.ZodLiteral<"Dot">>;
183
+ gridLineWidth: z.ZodOptional<z.ZodNumber>;
184
+ gridLineColor: z.ZodOptional<z.ZodString>;
185
+ tickWidth: z.ZodOptional<z.ZodNumber>;
186
+ lineColor: z.ZodOptional<z.ZodString>;
187
+ lineWidth: z.ZodOptional<z.ZodNumber>;
188
+ labels: z.ZodOptional<z.ZodObject<{
189
+ overflow: z.ZodOptional<z.ZodEnum<["none", "justify"]>>;
190
+ enabled: z.ZodOptional<z.ZodBoolean>;
191
+ autoRotation: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
192
+ style: z.ZodOptional<z.ZodObject<{
193
+ fontFamily: z.ZodOptional<z.ZodString>;
194
+ fontSize: z.ZodOptional<z.ZodString>;
195
+ fontWeight: z.ZodOptional<z.ZodString>;
196
+ color: z.ZodOptional<z.ZodString>;
197
+ textOutline: z.ZodOptional<z.ZodString>;
198
+ pointerEvents: z.ZodOptional<z.ZodString>;
199
+ textOverflow: z.ZodOptional<z.ZodString>;
200
+ width: z.ZodOptional<z.ZodString>;
201
+ }, "strip", z.ZodTypeAny, {
202
+ color?: string | undefined;
203
+ width?: string | undefined;
204
+ pointerEvents?: string | undefined;
205
+ textOverflow?: string | undefined;
206
+ fontFamily?: string | undefined;
207
+ fontSize?: string | undefined;
208
+ fontWeight?: string | undefined;
209
+ textOutline?: string | undefined;
210
+ }, {
211
+ color?: string | undefined;
212
+ width?: string | undefined;
213
+ pointerEvents?: string | undefined;
214
+ textOverflow?: string | undefined;
215
+ fontFamily?: string | undefined;
216
+ fontSize?: string | undefined;
217
+ fontWeight?: string | undefined;
218
+ textOutline?: string | undefined;
219
+ }>>;
220
+ rotation: z.ZodOptional<z.ZodNumber>;
221
+ formatter: z.ZodOptional<z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodUnknown>>;
222
+ }, "strip", z.ZodTypeAny, {
223
+ style?: {
224
+ color?: string | undefined;
225
+ width?: string | undefined;
226
+ pointerEvents?: string | undefined;
227
+ textOverflow?: string | undefined;
228
+ fontFamily?: string | undefined;
229
+ fontSize?: string | undefined;
230
+ fontWeight?: string | undefined;
231
+ textOutline?: string | undefined;
232
+ } | undefined;
233
+ enabled?: boolean | undefined;
234
+ rotation?: number | undefined;
235
+ overflow?: "none" | "justify" | undefined;
236
+ autoRotation?: number[] | undefined;
237
+ formatter?: ((...args: unknown[]) => unknown) | undefined;
238
+ }, {
239
+ style?: {
240
+ color?: string | undefined;
241
+ width?: string | undefined;
242
+ pointerEvents?: string | undefined;
243
+ textOverflow?: string | undefined;
244
+ fontFamily?: string | undefined;
245
+ fontSize?: string | undefined;
246
+ fontWeight?: string | undefined;
247
+ textOutline?: string | undefined;
248
+ } | undefined;
249
+ enabled?: boolean | undefined;
250
+ rotation?: number | undefined;
251
+ overflow?: "none" | "justify" | undefined;
252
+ autoRotation?: number[] | undefined;
253
+ formatter?: ((...args: unknown[]) => unknown) | undefined;
254
+ }>>;
255
+ min: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
256
+ max: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
257
+ minPadding: z.ZodOptional<z.ZodNumber>;
258
+ maxPadding: z.ZodOptional<z.ZodNumber>;
259
+ tickInterval: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
260
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
261
+ opposite: z.ZodOptional<z.ZodBoolean>;
262
+ plotBands: z.ZodOptional<z.ZodArray<z.ZodObject<{
263
+ from: z.ZodNumber;
264
+ to: z.ZodNumber;
265
+ color: z.ZodOptional<z.ZodString>;
266
+ label: z.ZodOptional<z.ZodObject<{
267
+ text: z.ZodString;
268
+ x: z.ZodNumber;
269
+ y: z.ZodNumber;
270
+ style: z.ZodOptional<z.ZodObject<{
271
+ fontFamily: z.ZodOptional<z.ZodString>;
272
+ fontSize: z.ZodOptional<z.ZodString>;
273
+ fontWeight: z.ZodOptional<z.ZodString>;
274
+ color: z.ZodOptional<z.ZodString>;
275
+ textOutline: z.ZodOptional<z.ZodString>;
276
+ pointerEvents: z.ZodOptional<z.ZodString>;
277
+ textOverflow: z.ZodOptional<z.ZodString>;
278
+ width: z.ZodOptional<z.ZodString>;
279
+ }, "strip", z.ZodTypeAny, {
280
+ color?: string | undefined;
281
+ width?: string | undefined;
282
+ pointerEvents?: string | undefined;
283
+ textOverflow?: string | undefined;
284
+ fontFamily?: string | undefined;
285
+ fontSize?: string | undefined;
286
+ fontWeight?: string | undefined;
287
+ textOutline?: string | undefined;
288
+ }, {
289
+ color?: string | undefined;
290
+ width?: string | undefined;
291
+ pointerEvents?: string | undefined;
292
+ textOverflow?: string | undefined;
293
+ fontFamily?: string | undefined;
294
+ fontSize?: string | undefined;
295
+ fontWeight?: string | undefined;
296
+ textOutline?: string | undefined;
297
+ }>>;
298
+ }, "strip", z.ZodTypeAny, {
299
+ text: string;
300
+ x: number;
301
+ y: number;
302
+ style?: {
303
+ color?: string | undefined;
304
+ width?: string | undefined;
305
+ pointerEvents?: string | undefined;
306
+ textOverflow?: string | undefined;
307
+ fontFamily?: string | undefined;
308
+ fontSize?: string | undefined;
309
+ fontWeight?: string | undefined;
310
+ textOutline?: string | undefined;
311
+ } | undefined;
312
+ }, {
313
+ text: string;
314
+ x: number;
315
+ y: number;
316
+ style?: {
317
+ color?: string | undefined;
318
+ width?: string | undefined;
319
+ pointerEvents?: string | undefined;
320
+ textOverflow?: string | undefined;
321
+ fontFamily?: string | undefined;
322
+ fontSize?: string | undefined;
323
+ fontWeight?: string | undefined;
324
+ textOutline?: string | undefined;
325
+ } | undefined;
326
+ }>>;
327
+ }, "strip", z.ZodTypeAny, {
328
+ from: number;
329
+ to: number;
330
+ color?: string | undefined;
331
+ label?: {
332
+ text: string;
333
+ x: number;
334
+ y: number;
335
+ style?: {
336
+ color?: string | undefined;
337
+ width?: string | undefined;
338
+ pointerEvents?: string | undefined;
339
+ textOverflow?: string | undefined;
340
+ fontFamily?: string | undefined;
341
+ fontSize?: string | undefined;
342
+ fontWeight?: string | undefined;
343
+ textOutline?: string | undefined;
344
+ } | undefined;
345
+ } | undefined;
346
+ }, {
347
+ from: number;
348
+ to: number;
349
+ color?: string | undefined;
350
+ label?: {
351
+ text: string;
352
+ x: number;
353
+ y: number;
354
+ style?: {
355
+ color?: string | undefined;
356
+ width?: string | undefined;
357
+ pointerEvents?: string | undefined;
358
+ textOverflow?: string | undefined;
359
+ fontFamily?: string | undefined;
360
+ fontSize?: string | undefined;
361
+ fontWeight?: string | undefined;
362
+ textOutline?: string | undefined;
363
+ } | undefined;
364
+ } | undefined;
365
+ }>, "many">>;
366
+ plotLines: z.ZodOptional<z.ZodArray<z.ZodObject<{
367
+ color: z.ZodString;
368
+ dashStyle: z.ZodString;
369
+ width: z.ZodNumber;
370
+ value: z.ZodNumber;
371
+ }, "strip", z.ZodTypeAny, {
372
+ value: number;
373
+ color: string;
374
+ width: number;
375
+ dashStyle: string;
376
+ }, {
377
+ value: number;
378
+ color: string;
379
+ width: number;
380
+ dashStyle: string;
381
+ }>, "many">>;
382
+ tickmarkPlacement: z.ZodOptional<z.ZodString>;
383
+ minorGridLineWidth: z.ZodOptional<z.ZodNumber>;
384
+ minorTickWidth: z.ZodOptional<z.ZodNumber>;
385
+ startOnTick: z.ZodOptional<z.ZodBoolean>;
386
+ endOnTick: z.ZodOptional<z.ZodBoolean>;
387
+ tickColor: z.ZodOptional<z.ZodString>;
388
+ tickLength: z.ZodOptional<z.ZodNumber>;
389
+ minorTickColor: z.ZodOptional<z.ZodString>;
390
+ minorTickLength: z.ZodOptional<z.ZodNumber>;
391
+ minorGridLineColor: z.ZodOptional<z.ZodString>;
392
+ minorGridLineDashStyle: z.ZodOptional<z.ZodString>;
393
+ stackLabels: z.ZodOptional<z.ZodObject<{
394
+ style: z.ZodObject<{
395
+ fontFamily: z.ZodOptional<z.ZodString>;
396
+ fontSize: z.ZodOptional<z.ZodString>;
397
+ fontWeight: z.ZodOptional<z.ZodString>;
398
+ color: z.ZodOptional<z.ZodString>;
399
+ textOutline: z.ZodOptional<z.ZodString>;
400
+ pointerEvents: z.ZodOptional<z.ZodString>;
401
+ textOverflow: z.ZodOptional<z.ZodString>;
402
+ width: z.ZodOptional<z.ZodString>;
403
+ }, "strip", z.ZodTypeAny, {
404
+ color?: string | undefined;
405
+ width?: string | undefined;
406
+ pointerEvents?: string | undefined;
407
+ textOverflow?: string | undefined;
408
+ fontFamily?: string | undefined;
409
+ fontSize?: string | undefined;
410
+ fontWeight?: string | undefined;
411
+ textOutline?: string | undefined;
412
+ }, {
413
+ color?: string | undefined;
414
+ width?: string | undefined;
415
+ pointerEvents?: string | undefined;
416
+ textOverflow?: string | undefined;
417
+ fontFamily?: string | undefined;
418
+ fontSize?: string | undefined;
419
+ fontWeight?: string | undefined;
420
+ textOutline?: string | undefined;
421
+ }>;
422
+ crop: z.ZodBoolean;
423
+ allowOverlap: z.ZodBoolean;
424
+ enabled: z.ZodBoolean;
425
+ rotation: z.ZodNumber;
426
+ labelrank: z.ZodNumber;
427
+ x: z.ZodOptional<z.ZodNumber>;
428
+ y: z.ZodOptional<z.ZodNumber>;
429
+ }, "strip", z.ZodTypeAny, {
430
+ style: {
431
+ color?: string | undefined;
432
+ width?: string | undefined;
433
+ pointerEvents?: string | undefined;
434
+ textOverflow?: string | undefined;
435
+ fontFamily?: string | undefined;
436
+ fontSize?: string | undefined;
437
+ fontWeight?: string | undefined;
438
+ textOutline?: string | undefined;
439
+ };
440
+ enabled: boolean;
441
+ rotation: number;
442
+ crop: boolean;
443
+ allowOverlap: boolean;
444
+ labelrank: number;
445
+ x?: number | undefined;
446
+ y?: number | undefined;
447
+ }, {
448
+ style: {
449
+ color?: string | undefined;
450
+ width?: string | undefined;
451
+ pointerEvents?: string | undefined;
452
+ textOverflow?: string | undefined;
453
+ fontFamily?: string | undefined;
454
+ fontSize?: string | undefined;
455
+ fontWeight?: string | undefined;
456
+ textOutline?: string | undefined;
457
+ };
458
+ enabled: boolean;
459
+ rotation: number;
460
+ crop: boolean;
461
+ allowOverlap: boolean;
462
+ labelrank: number;
463
+ x?: number | undefined;
464
+ y?: number | undefined;
465
+ }>>;
466
+ showLastLabel: z.ZodOptional<z.ZodBoolean>;
467
+ visible: z.ZodOptional<z.ZodBoolean>;
468
+ }, "strip", z.ZodTypeAny, {
469
+ type?: "logarithmic" | "linear" | undefined;
470
+ min?: number | null | undefined;
471
+ max?: number | null | undefined;
472
+ title?: {
473
+ text?: string | null | undefined;
474
+ style?: {
475
+ color?: string | undefined;
476
+ width?: string | undefined;
477
+ pointerEvents?: string | undefined;
478
+ textOverflow?: string | undefined;
479
+ fontFamily?: string | undefined;
480
+ fontSize?: string | undefined;
481
+ fontWeight?: string | undefined;
482
+ textOutline?: string | undefined;
483
+ } | undefined;
484
+ enabled?: boolean | undefined;
485
+ margin?: number | undefined;
486
+ } | undefined;
487
+ lineWidth?: number | undefined;
488
+ labels?: {
489
+ style?: {
490
+ color?: string | undefined;
491
+ width?: string | undefined;
492
+ pointerEvents?: string | undefined;
493
+ textOverflow?: string | undefined;
494
+ fontFamily?: string | undefined;
495
+ fontSize?: string | undefined;
496
+ fontWeight?: string | undefined;
497
+ textOutline?: string | undefined;
498
+ } | undefined;
499
+ enabled?: boolean | undefined;
500
+ rotation?: number | undefined;
501
+ overflow?: "none" | "justify" | undefined;
502
+ autoRotation?: number[] | undefined;
503
+ formatter?: ((...args: unknown[]) => unknown) | undefined;
504
+ } | undefined;
505
+ categories?: string[] | undefined;
506
+ visible?: boolean | undefined;
507
+ gridLineDashStyle?: "Dot" | undefined;
508
+ gridLineWidth?: number | undefined;
509
+ gridLineColor?: string | undefined;
510
+ tickWidth?: number | undefined;
511
+ lineColor?: string | undefined;
512
+ minPadding?: number | undefined;
513
+ maxPadding?: number | undefined;
514
+ tickInterval?: number | null | undefined;
515
+ opposite?: boolean | undefined;
516
+ plotBands?: {
517
+ from: number;
518
+ to: number;
519
+ color?: string | undefined;
520
+ label?: {
521
+ text: string;
522
+ x: number;
523
+ y: number;
524
+ style?: {
525
+ color?: string | undefined;
526
+ width?: string | undefined;
527
+ pointerEvents?: string | undefined;
528
+ textOverflow?: string | undefined;
529
+ fontFamily?: string | undefined;
530
+ fontSize?: string | undefined;
531
+ fontWeight?: string | undefined;
532
+ textOutline?: string | undefined;
533
+ } | undefined;
534
+ } | undefined;
535
+ }[] | undefined;
536
+ plotLines?: {
537
+ value: number;
538
+ color: string;
539
+ width: number;
540
+ dashStyle: string;
541
+ }[] | undefined;
542
+ tickmarkPlacement?: string | undefined;
543
+ minorGridLineWidth?: number | undefined;
544
+ minorTickWidth?: number | undefined;
545
+ startOnTick?: boolean | undefined;
546
+ endOnTick?: boolean | undefined;
547
+ tickColor?: string | undefined;
548
+ tickLength?: number | undefined;
549
+ minorTickColor?: string | undefined;
550
+ minorTickLength?: number | undefined;
551
+ minorGridLineColor?: string | undefined;
552
+ minorGridLineDashStyle?: string | undefined;
553
+ stackLabels?: {
554
+ style: {
555
+ color?: string | undefined;
556
+ width?: string | undefined;
557
+ pointerEvents?: string | undefined;
558
+ textOverflow?: string | undefined;
559
+ fontFamily?: string | undefined;
560
+ fontSize?: string | undefined;
561
+ fontWeight?: string | undefined;
562
+ textOutline?: string | undefined;
563
+ };
564
+ enabled: boolean;
565
+ rotation: number;
566
+ crop: boolean;
567
+ allowOverlap: boolean;
568
+ labelrank: number;
569
+ x?: number | undefined;
570
+ y?: number | undefined;
571
+ } | undefined;
572
+ showLastLabel?: boolean | undefined;
573
+ }, {
574
+ type?: "logarithmic" | "linear" | undefined;
575
+ min?: number | null | undefined;
576
+ max?: number | null | undefined;
577
+ title?: {
578
+ text?: string | null | undefined;
579
+ style?: {
580
+ color?: string | undefined;
581
+ width?: string | undefined;
582
+ pointerEvents?: string | undefined;
583
+ textOverflow?: string | undefined;
584
+ fontFamily?: string | undefined;
585
+ fontSize?: string | undefined;
586
+ fontWeight?: string | undefined;
587
+ textOutline?: string | undefined;
588
+ } | undefined;
589
+ enabled?: boolean | undefined;
590
+ margin?: number | undefined;
591
+ } | undefined;
592
+ lineWidth?: number | undefined;
593
+ labels?: {
594
+ style?: {
595
+ color?: string | undefined;
596
+ width?: string | undefined;
597
+ pointerEvents?: string | undefined;
598
+ textOverflow?: string | undefined;
599
+ fontFamily?: string | undefined;
600
+ fontSize?: string | undefined;
601
+ fontWeight?: string | undefined;
602
+ textOutline?: string | undefined;
603
+ } | undefined;
604
+ enabled?: boolean | undefined;
605
+ rotation?: number | undefined;
606
+ overflow?: "none" | "justify" | undefined;
607
+ autoRotation?: number[] | undefined;
608
+ formatter?: ((...args: unknown[]) => unknown) | undefined;
609
+ } | undefined;
610
+ categories?: string[] | undefined;
611
+ visible?: boolean | undefined;
612
+ gridLineDashStyle?: "Dot" | undefined;
613
+ gridLineWidth?: number | undefined;
614
+ gridLineColor?: string | undefined;
615
+ tickWidth?: number | undefined;
616
+ lineColor?: string | undefined;
617
+ minPadding?: number | undefined;
618
+ maxPadding?: number | undefined;
619
+ tickInterval?: number | null | undefined;
620
+ opposite?: boolean | undefined;
621
+ plotBands?: {
622
+ from: number;
623
+ to: number;
624
+ color?: string | undefined;
625
+ label?: {
626
+ text: string;
627
+ x: number;
628
+ y: number;
629
+ style?: {
630
+ color?: string | undefined;
631
+ width?: string | undefined;
632
+ pointerEvents?: string | undefined;
633
+ textOverflow?: string | undefined;
634
+ fontFamily?: string | undefined;
635
+ fontSize?: string | undefined;
636
+ fontWeight?: string | undefined;
637
+ textOutline?: string | undefined;
638
+ } | undefined;
639
+ } | undefined;
640
+ }[] | undefined;
641
+ plotLines?: {
642
+ value: number;
643
+ color: string;
644
+ width: number;
645
+ dashStyle: string;
646
+ }[] | undefined;
647
+ tickmarkPlacement?: string | undefined;
648
+ minorGridLineWidth?: number | undefined;
649
+ minorTickWidth?: number | undefined;
650
+ startOnTick?: boolean | undefined;
651
+ endOnTick?: boolean | undefined;
652
+ tickColor?: string | undefined;
653
+ tickLength?: number | undefined;
654
+ minorTickColor?: string | undefined;
655
+ minorTickLength?: number | undefined;
656
+ minorGridLineColor?: string | undefined;
657
+ minorGridLineDashStyle?: string | undefined;
658
+ stackLabels?: {
659
+ style: {
660
+ color?: string | undefined;
661
+ width?: string | undefined;
662
+ pointerEvents?: string | undefined;
663
+ textOverflow?: string | undefined;
664
+ fontFamily?: string | undefined;
665
+ fontSize?: string | undefined;
666
+ fontWeight?: string | undefined;
667
+ textOutline?: string | undefined;
668
+ };
669
+ enabled: boolean;
670
+ rotation: number;
671
+ crop: boolean;
672
+ allowOverlap: boolean;
673
+ labelrank: number;
674
+ x?: number | undefined;
675
+ y?: number | undefined;
676
+ } | undefined;
677
+ showLastLabel?: boolean | undefined;
678
+ }>;
679
+ handles: z.ZodOptional<z.ZodObject<{
680
+ symbols: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
681
+ backgroundColor: z.ZodOptional<z.ZodString>;
682
+ borderColor: z.ZodOptional<z.ZodString>;
683
+ }, "strip", z.ZodTypeAny, {
684
+ backgroundColor?: string | undefined;
685
+ borderColor?: string | undefined;
686
+ symbols?: string[] | undefined;
687
+ }, {
688
+ backgroundColor?: string | undefined;
689
+ borderColor?: string | undefined;
690
+ symbols?: string[] | undefined;
691
+ }>>;
692
+ maskInside: z.ZodBoolean;
693
+ maskFill: z.ZodString;
694
+ outlineColor: z.ZodString;
695
+ outlineWidth: z.ZodNumber;
696
+ threshold: z.ZodOptional<z.ZodNumber>;
697
+ tooltipFormatter: z.ZodOptional<z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodUnknown>>;
698
+ }, "strip", z.ZodTypeAny, {
699
+ height: number;
700
+ xAxis: {
701
+ type?: "logarithmic" | "linear" | undefined;
702
+ min?: number | null | undefined;
703
+ max?: number | null | undefined;
704
+ title?: {
705
+ text?: string | null | undefined;
706
+ style?: {
707
+ color?: string | undefined;
708
+ width?: string | undefined;
709
+ pointerEvents?: string | undefined;
710
+ textOverflow?: string | undefined;
711
+ fontFamily?: string | undefined;
712
+ fontSize?: string | undefined;
713
+ fontWeight?: string | undefined;
714
+ textOutline?: string | undefined;
715
+ } | undefined;
716
+ enabled?: boolean | undefined;
717
+ margin?: number | undefined;
718
+ } | undefined;
719
+ lineWidth?: number | undefined;
720
+ labels?: {
721
+ style?: {
722
+ color?: string | undefined;
723
+ width?: string | undefined;
724
+ pointerEvents?: string | undefined;
725
+ textOverflow?: string | undefined;
726
+ fontFamily?: string | undefined;
727
+ fontSize?: string | undefined;
728
+ fontWeight?: string | undefined;
729
+ textOutline?: string | undefined;
730
+ } | undefined;
731
+ enabled?: boolean | undefined;
732
+ rotation?: number | undefined;
733
+ overflow?: "none" | "justify" | undefined;
734
+ autoRotation?: number[] | undefined;
735
+ formatter?: ((...args: unknown[]) => unknown) | undefined;
736
+ } | undefined;
737
+ categories?: string[] | undefined;
738
+ visible?: boolean | undefined;
739
+ gridLineDashStyle?: "Dot" | undefined;
740
+ gridLineWidth?: number | undefined;
741
+ gridLineColor?: string | undefined;
742
+ tickWidth?: number | undefined;
743
+ lineColor?: string | undefined;
744
+ minPadding?: number | undefined;
745
+ maxPadding?: number | undefined;
746
+ tickInterval?: number | null | undefined;
747
+ opposite?: boolean | undefined;
748
+ plotBands?: {
749
+ from: number;
750
+ to: number;
751
+ color?: string | undefined;
752
+ label?: {
753
+ text: string;
754
+ x: number;
755
+ y: number;
756
+ style?: {
757
+ color?: string | undefined;
758
+ width?: string | undefined;
759
+ pointerEvents?: string | undefined;
760
+ textOverflow?: string | undefined;
761
+ fontFamily?: string | undefined;
762
+ fontSize?: string | undefined;
763
+ fontWeight?: string | undefined;
764
+ textOutline?: string | undefined;
765
+ } | undefined;
766
+ } | undefined;
767
+ }[] | undefined;
768
+ plotLines?: {
769
+ value: number;
770
+ color: string;
771
+ width: number;
772
+ dashStyle: string;
773
+ }[] | undefined;
774
+ tickmarkPlacement?: string | undefined;
775
+ minorGridLineWidth?: number | undefined;
776
+ minorTickWidth?: number | undefined;
777
+ startOnTick?: boolean | undefined;
778
+ endOnTick?: boolean | undefined;
779
+ tickColor?: string | undefined;
780
+ tickLength?: number | undefined;
781
+ minorTickColor?: string | undefined;
782
+ minorTickLength?: number | undefined;
783
+ minorGridLineColor?: string | undefined;
784
+ minorGridLineDashStyle?: string | undefined;
785
+ stackLabels?: {
786
+ style: {
787
+ color?: string | undefined;
788
+ width?: string | undefined;
789
+ pointerEvents?: string | undefined;
790
+ textOverflow?: string | undefined;
791
+ fontFamily?: string | undefined;
792
+ fontSize?: string | undefined;
793
+ fontWeight?: string | undefined;
794
+ textOutline?: string | undefined;
795
+ };
796
+ enabled: boolean;
797
+ rotation: number;
798
+ crop: boolean;
799
+ allowOverlap: boolean;
800
+ labelrank: number;
801
+ x?: number | undefined;
802
+ y?: number | undefined;
803
+ } | undefined;
804
+ showLastLabel?: boolean | undefined;
805
+ };
806
+ enabled: boolean;
807
+ series: {
808
+ type: string;
809
+ dataGrouping: {
810
+ enabled: boolean;
811
+ };
812
+ color?: string | undefined;
813
+ };
814
+ margin: number;
815
+ maskInside: boolean;
816
+ maskFill: string;
817
+ outlineColor: string;
818
+ outlineWidth: number;
819
+ handles?: {
820
+ backgroundColor?: string | undefined;
821
+ borderColor?: string | undefined;
822
+ symbols?: string[] | undefined;
823
+ } | undefined;
824
+ threshold?: number | undefined;
825
+ tooltipFormatter?: ((...args: unknown[]) => unknown) | undefined;
826
+ }, {
827
+ height: number;
828
+ xAxis: {
829
+ type?: "logarithmic" | "linear" | undefined;
830
+ min?: number | null | undefined;
831
+ max?: number | null | undefined;
832
+ title?: {
833
+ text?: string | null | undefined;
834
+ style?: {
835
+ color?: string | undefined;
836
+ width?: string | undefined;
837
+ pointerEvents?: string | undefined;
838
+ textOverflow?: string | undefined;
839
+ fontFamily?: string | undefined;
840
+ fontSize?: string | undefined;
841
+ fontWeight?: string | undefined;
842
+ textOutline?: string | undefined;
843
+ } | undefined;
844
+ enabled?: boolean | undefined;
845
+ margin?: number | undefined;
846
+ } | undefined;
847
+ lineWidth?: number | undefined;
848
+ labels?: {
849
+ style?: {
850
+ color?: string | undefined;
851
+ width?: string | undefined;
852
+ pointerEvents?: string | undefined;
853
+ textOverflow?: string | undefined;
854
+ fontFamily?: string | undefined;
855
+ fontSize?: string | undefined;
856
+ fontWeight?: string | undefined;
857
+ textOutline?: string | undefined;
858
+ } | undefined;
859
+ enabled?: boolean | undefined;
860
+ rotation?: number | undefined;
861
+ overflow?: "none" | "justify" | undefined;
862
+ autoRotation?: number[] | undefined;
863
+ formatter?: ((...args: unknown[]) => unknown) | undefined;
864
+ } | undefined;
865
+ categories?: string[] | undefined;
866
+ visible?: boolean | undefined;
867
+ gridLineDashStyle?: "Dot" | undefined;
868
+ gridLineWidth?: number | undefined;
869
+ gridLineColor?: string | undefined;
870
+ tickWidth?: number | undefined;
871
+ lineColor?: string | undefined;
872
+ minPadding?: number | undefined;
873
+ maxPadding?: number | undefined;
874
+ tickInterval?: number | null | undefined;
875
+ opposite?: boolean | undefined;
876
+ plotBands?: {
877
+ from: number;
878
+ to: number;
879
+ color?: string | undefined;
880
+ label?: {
881
+ text: string;
882
+ x: number;
883
+ y: number;
884
+ style?: {
885
+ color?: string | undefined;
886
+ width?: string | undefined;
887
+ pointerEvents?: string | undefined;
888
+ textOverflow?: string | undefined;
889
+ fontFamily?: string | undefined;
890
+ fontSize?: string | undefined;
891
+ fontWeight?: string | undefined;
892
+ textOutline?: string | undefined;
893
+ } | undefined;
894
+ } | undefined;
895
+ }[] | undefined;
896
+ plotLines?: {
897
+ value: number;
898
+ color: string;
899
+ width: number;
900
+ dashStyle: string;
901
+ }[] | undefined;
902
+ tickmarkPlacement?: string | undefined;
903
+ minorGridLineWidth?: number | undefined;
904
+ minorTickWidth?: number | undefined;
905
+ startOnTick?: boolean | undefined;
906
+ endOnTick?: boolean | undefined;
907
+ tickColor?: string | undefined;
908
+ tickLength?: number | undefined;
909
+ minorTickColor?: string | undefined;
910
+ minorTickLength?: number | undefined;
911
+ minorGridLineColor?: string | undefined;
912
+ minorGridLineDashStyle?: string | undefined;
913
+ stackLabels?: {
914
+ style: {
915
+ color?: string | undefined;
916
+ width?: string | undefined;
917
+ pointerEvents?: string | undefined;
918
+ textOverflow?: string | undefined;
919
+ fontFamily?: string | undefined;
920
+ fontSize?: string | undefined;
921
+ fontWeight?: string | undefined;
922
+ textOutline?: string | undefined;
923
+ };
924
+ enabled: boolean;
925
+ rotation: number;
926
+ crop: boolean;
927
+ allowOverlap: boolean;
928
+ labelrank: number;
929
+ x?: number | undefined;
930
+ y?: number | undefined;
931
+ } | undefined;
932
+ showLastLabel?: boolean | undefined;
933
+ };
934
+ enabled: boolean;
935
+ series: {
936
+ type: string;
937
+ dataGrouping: {
938
+ enabled: boolean;
939
+ };
940
+ color?: string | undefined;
941
+ };
942
+ margin: number;
943
+ maskInside: boolean;
944
+ maskFill: string;
945
+ outlineColor: string;
946
+ outlineWidth: number;
947
+ handles?: {
948
+ backgroundColor?: string | undefined;
949
+ borderColor?: string | undefined;
950
+ symbols?: string[] | undefined;
951
+ } | undefined;
952
+ threshold?: number | undefined;
953
+ tooltipFormatter?: ((...args: unknown[]) => unknown) | undefined;
954
+ }>;
955
+ export declare const ReservedStyleOptionsSchema: z.ZodObject<{
956
+ 'colors/columns': z.ZodOptional<z.ZodBoolean>;
957
+ 'colors/headers': z.ZodOptional<z.ZodBoolean>;
958
+ 'colors/rows': z.ZodOptional<z.ZodBoolean>;
959
+ components: z.ZodOptional<z.ZodObject<{
960
+ title: z.ZodObject<{
961
+ enabled: z.ZodBoolean;
962
+ }, "strip", z.ZodTypeAny, {
963
+ enabled: boolean;
964
+ }, {
965
+ enabled: boolean;
966
+ }>;
967
+ }, "strip", z.ZodTypeAny, {
968
+ title: {
969
+ enabled: boolean;
970
+ };
971
+ }, {
972
+ title: {
973
+ enabled: boolean;
974
+ };
975
+ }>>;
976
+ skin: z.ZodOptional<z.ZodString>;
977
+ }, "strip", z.ZodTypeAny, {
978
+ 'colors/columns'?: boolean | undefined;
979
+ 'colors/headers'?: boolean | undefined;
980
+ 'colors/rows'?: boolean | undefined;
981
+ components?: {
982
+ title: {
983
+ enabled: boolean;
984
+ };
985
+ } | undefined;
986
+ skin?: string | undefined;
987
+ }, {
988
+ 'colors/columns'?: boolean | undefined;
989
+ 'colors/headers'?: boolean | undefined;
990
+ 'colors/rows'?: boolean | undefined;
991
+ components?: {
992
+ title: {
993
+ enabled: boolean;
994
+ };
995
+ } | undefined;
996
+ skin?: string | undefined;
997
+ }>;
998
+ export declare const LineStyleOptionsSchema: z.ZodObject<{
999
+ legend: z.ZodOptional<z.ZodObject<{
1000
+ enabled: z.ZodBoolean;
1001
+ position: z.ZodOptional<z.ZodNullable<z.ZodEnum<["top", "left", "right", "bottom"]>>>;
1002
+ }, "strip", z.ZodTypeAny, {
1003
+ enabled: boolean;
1004
+ position?: "left" | "right" | "top" | "bottom" | null | undefined;
1005
+ }, {
1006
+ enabled: boolean;
1007
+ position?: "left" | "right" | "top" | "bottom" | null | undefined;
1008
+ }>>;
1009
+ seriesLabels: z.ZodOptional<z.ZodObject<{
1010
+ enabled: z.ZodBoolean;
1011
+ rotation: z.ZodOptional<z.ZodNumber>;
1012
+ showValue: z.ZodOptional<z.ZodBoolean>;
1013
+ showPercentage: z.ZodOptional<z.ZodBoolean>;
1014
+ }, "strip", z.ZodTypeAny, {
1015
+ enabled: boolean;
1016
+ rotation?: number | undefined;
1017
+ showValue?: boolean | undefined;
1018
+ showPercentage?: boolean | undefined;
1019
+ }, {
1020
+ enabled: boolean;
1021
+ rotation?: number | undefined;
1022
+ showValue?: boolean | undefined;
1023
+ showPercentage?: boolean | undefined;
1024
+ }>>;
1025
+ totalLabels: z.ZodOptional<z.ZodObject<{
1026
+ enabled: z.ZodBoolean;
1027
+ rotation: z.ZodOptional<z.ZodNumber>;
1028
+ }, "strip", z.ZodTypeAny, {
1029
+ enabled: boolean;
1030
+ rotation?: number | undefined;
1031
+ }, {
1032
+ enabled: boolean;
1033
+ rotation?: number | undefined;
1034
+ }>>;
1035
+ dataLimits: z.ZodOptional<z.ZodObject<{
1036
+ seriesCapacity: z.ZodNumber;
1037
+ categoriesCapacity: z.ZodNumber;
1038
+ }, "strip", z.ZodTypeAny, {
1039
+ categoriesCapacity: number;
1040
+ seriesCapacity: number;
1041
+ }, {
1042
+ categoriesCapacity: number;
1043
+ seriesCapacity: number;
1044
+ }>>;
1045
+ width: z.ZodOptional<z.ZodNumber>;
1046
+ height: z.ZodOptional<z.ZodNumber>;
1047
+ 'colors/columns': z.ZodOptional<z.ZodBoolean>;
1048
+ 'colors/headers': z.ZodOptional<z.ZodBoolean>;
1049
+ 'colors/rows': z.ZodOptional<z.ZodBoolean>;
1050
+ components: z.ZodOptional<z.ZodObject<{
1051
+ title: z.ZodObject<{
1052
+ enabled: z.ZodBoolean;
1053
+ }, "strip", z.ZodTypeAny, {
1054
+ enabled: boolean;
1055
+ }, {
1056
+ enabled: boolean;
1057
+ }>;
1058
+ }, "strip", z.ZodTypeAny, {
1059
+ title: {
1060
+ enabled: boolean;
1061
+ };
1062
+ }, {
1063
+ title: {
1064
+ enabled: boolean;
1065
+ };
1066
+ }>>;
1067
+ skin: z.ZodOptional<z.ZodString>;
1068
+ lineWidth: z.ZodEnum<["medium", "thick", "thin"]>;
1069
+ subtype: z.ZodOptional<z.ZodEnum<["line/spline", "line/basic"]>>;
1070
+ }, "strip", z.ZodTypeAny, {
1071
+ lineWidth: "thin" | "thick" | "medium";
1072
+ legend?: {
1073
+ enabled: boolean;
1074
+ position?: "left" | "right" | "top" | "bottom" | null | undefined;
1075
+ } | undefined;
1076
+ width?: number | undefined;
1077
+ height?: number | undefined;
1078
+ subtype?: "line/spline" | "line/basic" | undefined;
1079
+ seriesLabels?: {
1080
+ enabled: boolean;
1081
+ rotation?: number | undefined;
1082
+ showValue?: boolean | undefined;
1083
+ showPercentage?: boolean | undefined;
1084
+ } | undefined;
1085
+ dataLimits?: {
1086
+ categoriesCapacity: number;
1087
+ seriesCapacity: number;
1088
+ } | undefined;
1089
+ 'colors/columns'?: boolean | undefined;
1090
+ 'colors/headers'?: boolean | undefined;
1091
+ 'colors/rows'?: boolean | undefined;
1092
+ components?: {
1093
+ title: {
1094
+ enabled: boolean;
1095
+ };
1096
+ } | undefined;
1097
+ skin?: string | undefined;
1098
+ totalLabels?: {
1099
+ enabled: boolean;
1100
+ rotation?: number | undefined;
1101
+ } | undefined;
1102
+ }, {
1103
+ lineWidth: "thin" | "thick" | "medium";
1104
+ legend?: {
1105
+ enabled: boolean;
1106
+ position?: "left" | "right" | "top" | "bottom" | null | undefined;
1107
+ } | undefined;
1108
+ width?: number | undefined;
1109
+ height?: number | undefined;
1110
+ subtype?: "line/spline" | "line/basic" | undefined;
1111
+ seriesLabels?: {
1112
+ enabled: boolean;
1113
+ rotation?: number | undefined;
1114
+ showValue?: boolean | undefined;
1115
+ showPercentage?: boolean | undefined;
1116
+ } | undefined;
1117
+ dataLimits?: {
1118
+ categoriesCapacity: number;
1119
+ seriesCapacity: number;
1120
+ } | undefined;
1121
+ 'colors/columns'?: boolean | undefined;
1122
+ 'colors/headers'?: boolean | undefined;
1123
+ 'colors/rows'?: boolean | undefined;
1124
+ components?: {
1125
+ title: {
1126
+ enabled: boolean;
1127
+ };
1128
+ } | undefined;
1129
+ skin?: string | undefined;
1130
+ totalLabels?: {
1131
+ enabled: boolean;
1132
+ rotation?: number | undefined;
1133
+ } | undefined;
1134
+ }>;
1135
+ export type LineStyleOptions = z.infer<typeof LineStyleOptionsSchema>;
1136
+ //# sourceMappingURL=schemas.d.ts.map