@milaboratories/miplots4 1.0.130 → 1.0.132
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/heatmap/components/Annotations/Annotation.d.ts.map +1 -1
- package/dist/heatmap/components/Annotations/Annotation.js +34 -33
- package/dist/heatmap/components/Annotations/Annotation.js.map +1 -1
- package/dist/heatmap/components/Chart.d.ts.map +1 -1
- package/dist/heatmap/components/Chart.js +90 -85
- package/dist/heatmap/components/Chart.js.map +1 -1
- package/dist/heatmap/components/types.d.ts +2 -1
- package/dist/heatmap/components/types.d.ts.map +1 -1
- package/dist/scatterplot/ScatterplotSettingsImpl.d.ts +6 -3
- package/dist/scatterplot/ScatterplotSettingsImpl.d.ts.map +1 -1
- package/dist/scatterplot/ScatterplotSettingsImpl.js +59 -60
- package/dist/scatterplot/ScatterplotSettingsImpl.js.map +1 -1
- package/dist/scatterplot/components/ChartTooltip.d.ts.map +1 -1
- package/dist/scatterplot/components/ChartTooltip.js +42 -40
- package/dist/scatterplot/components/ChartTooltip.js.map +1 -1
- package/dist/scatterplot/dots.d.ts +2 -1
- package/dist/scatterplot/dots.d.ts.map +1 -1
- package/dist/scatterplot/dots.js +26 -27
- package/dist/scatterplot/dots.js.map +1 -1
- package/dist/scatterplot/getLayersData.d.ts.map +1 -1
- package/dist/scatterplot/getLayersData.js +15 -12
- package/dist/scatterplot/getLayersData.js.map +1 -1
- package/dist/scatterplot/index.d.ts.map +1 -1
- package/dist/scatterplot/index.js +66 -72
- package/dist/scatterplot/index.js.map +1 -1
- package/dist/scatterplot/utils/createLegendInfo.d.ts +3 -3
- package/dist/scatterplot/utils/createLegendInfo.d.ts.map +1 -1
- package/dist/scatterplot/utils/createLegendInfo.js +44 -39
- package/dist/scatterplot/utils/createLegendInfo.js.map +1 -1
- package/dist/scatterplot/utils/formatColumnValue.d.ts +5 -0
- package/dist/scatterplot/utils/formatColumnValue.d.ts.map +1 -0
- package/dist/scatterplot/utils/formatColumnValue.js +11 -0
- package/dist/scatterplot/utils/formatColumnValue.js.map +1 -0
- package/dist/scatterplot/utils/sortDotsByGrouping.d.ts +8 -0
- package/dist/scatterplot/utils/sortDotsByGrouping.d.ts.map +1 -0
- package/dist/scatterplot/utils/sortDotsByGrouping.js +18 -0
- package/dist/scatterplot/utils/sortDotsByGrouping.js.map +1 -0
- package/dist/scatterplot-umap/SettingsImpl.d.ts +6 -3
- package/dist/scatterplot-umap/SettingsImpl.d.ts.map +1 -1
- package/dist/scatterplot-umap/SettingsImpl.js +54 -55
- package/dist/scatterplot-umap/SettingsImpl.js.map +1 -1
- package/dist/scatterplot-umap/components/LowerSVG.d.ts.map +1 -1
- package/dist/scatterplot-umap/components/LowerSVG.js +88 -86
- package/dist/scatterplot-umap/components/LowerSVG.js.map +1 -1
- package/dist/scatterplot-umap/index.d.ts.map +1 -1
- package/dist/scatterplot-umap/index.js +98 -92
- package/dist/scatterplot-umap/index.js.map +1 -1
- package/dist/types/bubble.d.ts +44 -12
- package/dist/types/bubble.d.ts.map +1 -1
- package/dist/types/common.d.ts +18 -0
- package/dist/types/common.d.ts.map +1 -1
- package/dist/types/common.js +2 -0
- package/dist/types/common.js.map +1 -1
- package/dist/types/dendro.d.ts +111 -8
- package/dist/types/dendro.d.ts.map +1 -1
- package/dist/types/discrete.d.ts +105 -28
- package/dist/types/discrete.d.ts.map +1 -1
- package/dist/types/heatmap.d.ts +187 -28
- package/dist/types/heatmap.d.ts.map +1 -1
- package/dist/types/histogram.d.ts +42 -20
- package/dist/types/histogram.d.ts.map +1 -1
- package/dist/types/scatterplot-umap.d.ts +259 -71
- package/dist/types/scatterplot-umap.d.ts.map +1 -1
- package/dist/types/scatterplot-umap.js +22 -16
- package/dist/types/scatterplot-umap.js.map +1 -1
- package/dist/types/scatterplot.d.ts +273 -71
- package/dist/types/scatterplot.d.ts.map +1 -1
- package/dist/types/scatterplot.js +16 -10
- package/dist/types/scatterplot.js.map +1 -1
- package/dist/utils/arraysAreDifferent.d.ts +2 -0
- package/dist/utils/arraysAreDifferent.d.ts.map +1 -0
- package/dist/utils/arraysAreDifferent.js +7 -0
- package/dist/utils/arraysAreDifferent.js.map +1 -0
- package/dist/utils/getChartEdgeSides.d.ts +1 -1
- package/package.json +1 -1
|
@@ -37,16 +37,19 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
37
37
|
columnName: z.ZodObject<{
|
|
38
38
|
type: z.ZodLiteral<"column">;
|
|
39
39
|
value: z.ZodString;
|
|
40
|
+
format: z.ZodOptional<z.ZodString>;
|
|
40
41
|
label: z.ZodOptional<z.ZodString>;
|
|
41
42
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
42
43
|
}, "strip", z.ZodTypeAny, {
|
|
43
44
|
type: "column";
|
|
44
45
|
value: string;
|
|
46
|
+
format?: string | undefined;
|
|
45
47
|
label?: string | undefined;
|
|
46
48
|
valueLabels?: string | undefined;
|
|
47
49
|
}, {
|
|
48
50
|
type: "column";
|
|
49
51
|
value: string;
|
|
52
|
+
format?: string | undefined;
|
|
50
53
|
label?: string | undefined;
|
|
51
54
|
valueLabels?: string | undefined;
|
|
52
55
|
}>;
|
|
@@ -57,6 +60,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
57
60
|
columnName: {
|
|
58
61
|
type: "column";
|
|
59
62
|
value: string;
|
|
63
|
+
format?: string | undefined;
|
|
60
64
|
label?: string | undefined;
|
|
61
65
|
valueLabels?: string | undefined;
|
|
62
66
|
};
|
|
@@ -67,6 +71,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
67
71
|
columnName: {
|
|
68
72
|
type: "column";
|
|
69
73
|
value: string;
|
|
74
|
+
format?: string | undefined;
|
|
70
75
|
label?: string | undefined;
|
|
71
76
|
valueLabels?: string | undefined;
|
|
72
77
|
};
|
|
@@ -91,16 +96,19 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
91
96
|
columnName: z.ZodObject<{
|
|
92
97
|
type: z.ZodLiteral<"column">;
|
|
93
98
|
value: z.ZodString;
|
|
99
|
+
format: z.ZodOptional<z.ZodString>;
|
|
94
100
|
label: z.ZodOptional<z.ZodString>;
|
|
95
101
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
96
102
|
}, "strip", z.ZodTypeAny, {
|
|
97
103
|
type: "column";
|
|
98
104
|
value: string;
|
|
105
|
+
format?: string | undefined;
|
|
99
106
|
label?: string | undefined;
|
|
100
107
|
valueLabels?: string | undefined;
|
|
101
108
|
}, {
|
|
102
109
|
type: "column";
|
|
103
110
|
value: string;
|
|
111
|
+
format?: string | undefined;
|
|
104
112
|
label?: string | undefined;
|
|
105
113
|
valueLabels?: string | undefined;
|
|
106
114
|
}>;
|
|
@@ -111,6 +119,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
111
119
|
columnName: {
|
|
112
120
|
type: "column";
|
|
113
121
|
value: string;
|
|
122
|
+
format?: string | undefined;
|
|
114
123
|
label?: string | undefined;
|
|
115
124
|
valueLabels?: string | undefined;
|
|
116
125
|
};
|
|
@@ -121,6 +130,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
121
130
|
columnName: {
|
|
122
131
|
type: "column";
|
|
123
132
|
value: string;
|
|
133
|
+
format?: string | undefined;
|
|
124
134
|
label?: string | undefined;
|
|
125
135
|
valueLabels?: string | undefined;
|
|
126
136
|
};
|
|
@@ -137,6 +147,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
137
147
|
columnName: {
|
|
138
148
|
type: "column";
|
|
139
149
|
value: string;
|
|
150
|
+
format?: string | undefined;
|
|
140
151
|
label?: string | undefined;
|
|
141
152
|
valueLabels?: string | undefined;
|
|
142
153
|
};
|
|
@@ -153,6 +164,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
153
164
|
columnName: {
|
|
154
165
|
type: "column";
|
|
155
166
|
value: string;
|
|
167
|
+
format?: string | undefined;
|
|
156
168
|
label?: string | undefined;
|
|
157
169
|
valueLabels?: string | undefined;
|
|
158
170
|
};
|
|
@@ -169,6 +181,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
169
181
|
columnName: {
|
|
170
182
|
type: "column";
|
|
171
183
|
value: string;
|
|
184
|
+
format?: string | undefined;
|
|
172
185
|
label?: string | undefined;
|
|
173
186
|
valueLabels?: string | undefined;
|
|
174
187
|
};
|
|
@@ -185,6 +198,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
185
198
|
columnName: {
|
|
186
199
|
type: "column";
|
|
187
200
|
value: string;
|
|
201
|
+
format?: string | undefined;
|
|
188
202
|
label?: string | undefined;
|
|
189
203
|
valueLabels?: string | undefined;
|
|
190
204
|
};
|
|
@@ -204,6 +218,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
204
218
|
columnName: {
|
|
205
219
|
type: "column";
|
|
206
220
|
value: string;
|
|
221
|
+
format?: string | undefined;
|
|
207
222
|
label?: string | undefined;
|
|
208
223
|
valueLabels?: string | undefined;
|
|
209
224
|
};
|
|
@@ -220,6 +235,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
220
235
|
columnName: {
|
|
221
236
|
type: "column";
|
|
222
237
|
value: string;
|
|
238
|
+
format?: string | undefined;
|
|
223
239
|
label?: string | undefined;
|
|
224
240
|
valueLabels?: string | undefined;
|
|
225
241
|
};
|
|
@@ -239,6 +255,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
239
255
|
columnName: {
|
|
240
256
|
type: "column";
|
|
241
257
|
value: string;
|
|
258
|
+
format?: string | undefined;
|
|
242
259
|
label?: string | undefined;
|
|
243
260
|
valueLabels?: string | undefined;
|
|
244
261
|
};
|
|
@@ -255,6 +272,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
255
272
|
columnName: {
|
|
256
273
|
type: "column";
|
|
257
274
|
value: string;
|
|
275
|
+
format?: string | undefined;
|
|
258
276
|
label?: string | undefined;
|
|
259
277
|
valueLabels?: string | undefined;
|
|
260
278
|
};
|
|
@@ -286,16 +304,19 @@ declare const CurveLayerSchema: z.ZodObject<{
|
|
|
286
304
|
columnName: z.ZodObject<{
|
|
287
305
|
type: z.ZodLiteral<"column">;
|
|
288
306
|
value: z.ZodString;
|
|
307
|
+
format: z.ZodOptional<z.ZodString>;
|
|
289
308
|
label: z.ZodOptional<z.ZodString>;
|
|
290
309
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
291
310
|
}, "strip", z.ZodTypeAny, {
|
|
292
311
|
type: "column";
|
|
293
312
|
value: string;
|
|
313
|
+
format?: string | undefined;
|
|
294
314
|
label?: string | undefined;
|
|
295
315
|
valueLabels?: string | undefined;
|
|
296
316
|
}, {
|
|
297
317
|
type: "column";
|
|
298
318
|
value: string;
|
|
319
|
+
format?: string | undefined;
|
|
299
320
|
label?: string | undefined;
|
|
300
321
|
valueLabels?: string | undefined;
|
|
301
322
|
}>;
|
|
@@ -306,6 +327,7 @@ declare const CurveLayerSchema: z.ZodObject<{
|
|
|
306
327
|
columnName: {
|
|
307
328
|
type: "column";
|
|
308
329
|
value: string;
|
|
330
|
+
format?: string | undefined;
|
|
309
331
|
label?: string | undefined;
|
|
310
332
|
valueLabels?: string | undefined;
|
|
311
333
|
};
|
|
@@ -316,6 +338,7 @@ declare const CurveLayerSchema: z.ZodObject<{
|
|
|
316
338
|
columnName: {
|
|
317
339
|
type: "column";
|
|
318
340
|
value: string;
|
|
341
|
+
format?: string | undefined;
|
|
319
342
|
label?: string | undefined;
|
|
320
343
|
valueLabels?: string | undefined;
|
|
321
344
|
};
|
|
@@ -335,6 +358,7 @@ declare const CurveLayerSchema: z.ZodObject<{
|
|
|
335
358
|
columnName: {
|
|
336
359
|
type: "column";
|
|
337
360
|
value: string;
|
|
361
|
+
format?: string | undefined;
|
|
338
362
|
label?: string | undefined;
|
|
339
363
|
valueLabels?: string | undefined;
|
|
340
364
|
};
|
|
@@ -354,6 +378,7 @@ declare const CurveLayerSchema: z.ZodObject<{
|
|
|
354
378
|
columnName: {
|
|
355
379
|
type: "column";
|
|
356
380
|
value: string;
|
|
381
|
+
format?: string | undefined;
|
|
357
382
|
label?: string | undefined;
|
|
358
383
|
valueLabels?: string | undefined;
|
|
359
384
|
};
|
|
@@ -376,6 +401,7 @@ declare const CurveLayerSchema: z.ZodObject<{
|
|
|
376
401
|
columnName: {
|
|
377
402
|
type: "column";
|
|
378
403
|
value: string;
|
|
404
|
+
format?: string | undefined;
|
|
379
405
|
label?: string | undefined;
|
|
380
406
|
valueLabels?: string | undefined;
|
|
381
407
|
};
|
|
@@ -399,6 +425,7 @@ declare const CurveLayerSchema: z.ZodObject<{
|
|
|
399
425
|
columnName: {
|
|
400
426
|
type: "column";
|
|
401
427
|
value: string;
|
|
428
|
+
format?: string | undefined;
|
|
402
429
|
label?: string | undefined;
|
|
403
430
|
valueLabels?: string | undefined;
|
|
404
431
|
};
|
|
@@ -429,16 +456,19 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
429
456
|
columnName: z.ZodObject<{
|
|
430
457
|
type: z.ZodLiteral<"column">;
|
|
431
458
|
value: z.ZodString;
|
|
459
|
+
format: z.ZodOptional<z.ZodString>;
|
|
432
460
|
label: z.ZodOptional<z.ZodString>;
|
|
433
461
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
434
462
|
}, "strip", z.ZodTypeAny, {
|
|
435
463
|
type: "column";
|
|
436
464
|
value: string;
|
|
465
|
+
format?: string | undefined;
|
|
437
466
|
label?: string | undefined;
|
|
438
467
|
valueLabels?: string | undefined;
|
|
439
468
|
}, {
|
|
440
469
|
type: "column";
|
|
441
470
|
value: string;
|
|
471
|
+
format?: string | undefined;
|
|
442
472
|
label?: string | undefined;
|
|
443
473
|
valueLabels?: string | undefined;
|
|
444
474
|
}>;
|
|
@@ -449,6 +479,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
449
479
|
columnName: {
|
|
450
480
|
type: "column";
|
|
451
481
|
value: string;
|
|
482
|
+
format?: string | undefined;
|
|
452
483
|
label?: string | undefined;
|
|
453
484
|
valueLabels?: string | undefined;
|
|
454
485
|
};
|
|
@@ -459,6 +490,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
459
490
|
columnName: {
|
|
460
491
|
type: "column";
|
|
461
492
|
value: string;
|
|
493
|
+
format?: string | undefined;
|
|
462
494
|
label?: string | undefined;
|
|
463
495
|
valueLabels?: string | undefined;
|
|
464
496
|
};
|
|
@@ -483,16 +515,19 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
483
515
|
columnName: z.ZodObject<{
|
|
484
516
|
type: z.ZodLiteral<"column">;
|
|
485
517
|
value: z.ZodString;
|
|
518
|
+
format: z.ZodOptional<z.ZodString>;
|
|
486
519
|
label: z.ZodOptional<z.ZodString>;
|
|
487
520
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
488
521
|
}, "strip", z.ZodTypeAny, {
|
|
489
522
|
type: "column";
|
|
490
523
|
value: string;
|
|
524
|
+
format?: string | undefined;
|
|
491
525
|
label?: string | undefined;
|
|
492
526
|
valueLabels?: string | undefined;
|
|
493
527
|
}, {
|
|
494
528
|
type: "column";
|
|
495
529
|
value: string;
|
|
530
|
+
format?: string | undefined;
|
|
496
531
|
label?: string | undefined;
|
|
497
532
|
valueLabels?: string | undefined;
|
|
498
533
|
}>;
|
|
@@ -503,6 +538,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
503
538
|
columnName: {
|
|
504
539
|
type: "column";
|
|
505
540
|
value: string;
|
|
541
|
+
format?: string | undefined;
|
|
506
542
|
label?: string | undefined;
|
|
507
543
|
valueLabels?: string | undefined;
|
|
508
544
|
};
|
|
@@ -513,6 +549,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
513
549
|
columnName: {
|
|
514
550
|
type: "column";
|
|
515
551
|
value: string;
|
|
552
|
+
format?: string | undefined;
|
|
516
553
|
label?: string | undefined;
|
|
517
554
|
valueLabels?: string | undefined;
|
|
518
555
|
};
|
|
@@ -529,6 +566,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
529
566
|
columnName: {
|
|
530
567
|
type: "column";
|
|
531
568
|
value: string;
|
|
569
|
+
format?: string | undefined;
|
|
532
570
|
label?: string | undefined;
|
|
533
571
|
valueLabels?: string | undefined;
|
|
534
572
|
};
|
|
@@ -545,6 +583,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
545
583
|
columnName: {
|
|
546
584
|
type: "column";
|
|
547
585
|
value: string;
|
|
586
|
+
format?: string | undefined;
|
|
548
587
|
label?: string | undefined;
|
|
549
588
|
valueLabels?: string | undefined;
|
|
550
589
|
};
|
|
@@ -561,6 +600,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
561
600
|
columnName: {
|
|
562
601
|
type: "column";
|
|
563
602
|
value: string;
|
|
603
|
+
format?: string | undefined;
|
|
564
604
|
label?: string | undefined;
|
|
565
605
|
valueLabels?: string | undefined;
|
|
566
606
|
};
|
|
@@ -577,6 +617,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
577
617
|
columnName: {
|
|
578
618
|
type: "column";
|
|
579
619
|
value: string;
|
|
620
|
+
format?: string | undefined;
|
|
580
621
|
label?: string | undefined;
|
|
581
622
|
valueLabels?: string | undefined;
|
|
582
623
|
};
|
|
@@ -596,6 +637,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
596
637
|
columnName: {
|
|
597
638
|
type: "column";
|
|
598
639
|
value: string;
|
|
640
|
+
format?: string | undefined;
|
|
599
641
|
label?: string | undefined;
|
|
600
642
|
valueLabels?: string | undefined;
|
|
601
643
|
};
|
|
@@ -612,6 +654,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
612
654
|
columnName: {
|
|
613
655
|
type: "column";
|
|
614
656
|
value: string;
|
|
657
|
+
format?: string | undefined;
|
|
615
658
|
label?: string | undefined;
|
|
616
659
|
valueLabels?: string | undefined;
|
|
617
660
|
};
|
|
@@ -631,6 +674,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
631
674
|
columnName: {
|
|
632
675
|
type: "column";
|
|
633
676
|
value: string;
|
|
677
|
+
format?: string | undefined;
|
|
634
678
|
label?: string | undefined;
|
|
635
679
|
valueLabels?: string | undefined;
|
|
636
680
|
};
|
|
@@ -647,6 +691,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
647
691
|
columnName: {
|
|
648
692
|
type: "column";
|
|
649
693
|
value: string;
|
|
694
|
+
format?: string | undefined;
|
|
650
695
|
label?: string | undefined;
|
|
651
696
|
valueLabels?: string | undefined;
|
|
652
697
|
};
|
|
@@ -677,16 +722,19 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
677
722
|
columnName: z.ZodObject<{
|
|
678
723
|
type: z.ZodLiteral<"column">;
|
|
679
724
|
value: z.ZodString;
|
|
725
|
+
format: z.ZodOptional<z.ZodString>;
|
|
680
726
|
label: z.ZodOptional<z.ZodString>;
|
|
681
727
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
682
728
|
}, "strip", z.ZodTypeAny, {
|
|
683
729
|
type: "column";
|
|
684
730
|
value: string;
|
|
731
|
+
format?: string | undefined;
|
|
685
732
|
label?: string | undefined;
|
|
686
733
|
valueLabels?: string | undefined;
|
|
687
734
|
}, {
|
|
688
735
|
type: "column";
|
|
689
736
|
value: string;
|
|
737
|
+
format?: string | undefined;
|
|
690
738
|
label?: string | undefined;
|
|
691
739
|
valueLabels?: string | undefined;
|
|
692
740
|
}>;
|
|
@@ -697,6 +745,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
697
745
|
columnName: {
|
|
698
746
|
type: "column";
|
|
699
747
|
value: string;
|
|
748
|
+
format?: string | undefined;
|
|
700
749
|
label?: string | undefined;
|
|
701
750
|
valueLabels?: string | undefined;
|
|
702
751
|
};
|
|
@@ -707,6 +756,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
707
756
|
columnName: {
|
|
708
757
|
type: "column";
|
|
709
758
|
value: string;
|
|
759
|
+
format?: string | undefined;
|
|
710
760
|
label?: string | undefined;
|
|
711
761
|
valueLabels?: string | undefined;
|
|
712
762
|
};
|
|
@@ -726,6 +776,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
726
776
|
columnName: {
|
|
727
777
|
type: "column";
|
|
728
778
|
value: string;
|
|
779
|
+
format?: string | undefined;
|
|
729
780
|
label?: string | undefined;
|
|
730
781
|
valueLabels?: string | undefined;
|
|
731
782
|
};
|
|
@@ -745,6 +796,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
745
796
|
columnName: {
|
|
746
797
|
type: "column";
|
|
747
798
|
value: string;
|
|
799
|
+
format?: string | undefined;
|
|
748
800
|
label?: string | undefined;
|
|
749
801
|
valueLabels?: string | undefined;
|
|
750
802
|
};
|
|
@@ -767,6 +819,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
767
819
|
columnName: {
|
|
768
820
|
type: "column";
|
|
769
821
|
value: string;
|
|
822
|
+
format?: string | undefined;
|
|
770
823
|
label?: string | undefined;
|
|
771
824
|
valueLabels?: string | undefined;
|
|
772
825
|
};
|
|
@@ -790,6 +843,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
790
843
|
columnName: {
|
|
791
844
|
type: "column";
|
|
792
845
|
value: string;
|
|
846
|
+
format?: string | undefined;
|
|
793
847
|
label?: string | undefined;
|
|
794
848
|
valueLabels?: string | undefined;
|
|
795
849
|
};
|
|
@@ -813,11 +867,11 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
813
867
|
}, "strip", z.ZodTypeAny, {
|
|
814
868
|
name: string;
|
|
815
869
|
show?: boolean | undefined;
|
|
816
|
-
position?: "
|
|
870
|
+
position?: "left" | "center" | "right" | undefined;
|
|
817
871
|
}, {
|
|
818
872
|
name: string;
|
|
819
873
|
show?: boolean | undefined;
|
|
820
|
-
position?: "
|
|
874
|
+
position?: "left" | "center" | "right" | undefined;
|
|
821
875
|
}>;
|
|
822
876
|
size: z.ZodOptional<z.ZodObject<{
|
|
823
877
|
width: z.ZodOptional<z.ZodNumber>;
|
|
@@ -834,26 +888,29 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
834
888
|
position: z.ZodOptional<z.ZodEnum<["inside", "right", "top", "bottom"]>>;
|
|
835
889
|
}, "strip", z.ZodTypeAny, {
|
|
836
890
|
show?: boolean | undefined;
|
|
837
|
-
position?: "right" | "
|
|
891
|
+
position?: "right" | "inside" | "top" | "bottom" | undefined;
|
|
838
892
|
}, {
|
|
839
893
|
show?: boolean | undefined;
|
|
840
|
-
position?: "right" | "
|
|
894
|
+
position?: "right" | "inside" | "top" | "bottom" | undefined;
|
|
841
895
|
}>>;
|
|
842
896
|
tooltips: z.ZodOptional<z.ZodObject<{
|
|
843
897
|
show: z.ZodOptional<z.ZodBoolean>;
|
|
844
898
|
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
845
899
|
type: z.ZodLiteral<"column">;
|
|
846
900
|
value: z.ZodString;
|
|
901
|
+
format: z.ZodOptional<z.ZodString>;
|
|
847
902
|
label: z.ZodOptional<z.ZodString>;
|
|
848
903
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
849
904
|
}, "strip", z.ZodTypeAny, {
|
|
850
905
|
type: "column";
|
|
851
906
|
value: string;
|
|
907
|
+
format?: string | undefined;
|
|
852
908
|
label?: string | undefined;
|
|
853
909
|
valueLabels?: string | undefined;
|
|
854
910
|
}, {
|
|
855
911
|
type: "column";
|
|
856
912
|
value: string;
|
|
913
|
+
format?: string | undefined;
|
|
857
914
|
label?: string | undefined;
|
|
858
915
|
valueLabels?: string | undefined;
|
|
859
916
|
}>, "many">>;
|
|
@@ -862,6 +919,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
862
919
|
content?: {
|
|
863
920
|
type: "column";
|
|
864
921
|
value: string;
|
|
922
|
+
format?: string | undefined;
|
|
865
923
|
label?: string | undefined;
|
|
866
924
|
valueLabels?: string | undefined;
|
|
867
925
|
}[] | undefined;
|
|
@@ -870,6 +928,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
870
928
|
content?: {
|
|
871
929
|
type: "column";
|
|
872
930
|
value: string;
|
|
931
|
+
format?: string | undefined;
|
|
873
932
|
label?: string | undefined;
|
|
874
933
|
valueLabels?: string | undefined;
|
|
875
934
|
}[] | undefined;
|
|
@@ -900,48 +959,57 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
900
959
|
keyColumn: z.ZodObject<{
|
|
901
960
|
type: z.ZodLiteral<"column">;
|
|
902
961
|
value: z.ZodString;
|
|
962
|
+
format: z.ZodOptional<z.ZodString>;
|
|
903
963
|
label: z.ZodOptional<z.ZodString>;
|
|
904
964
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
905
965
|
}, "strip", z.ZodTypeAny, {
|
|
906
966
|
type: "column";
|
|
907
967
|
value: string;
|
|
968
|
+
format?: string | undefined;
|
|
908
969
|
label?: string | undefined;
|
|
909
970
|
valueLabels?: string | undefined;
|
|
910
971
|
}, {
|
|
911
972
|
type: "column";
|
|
912
973
|
value: string;
|
|
974
|
+
format?: string | undefined;
|
|
913
975
|
label?: string | undefined;
|
|
914
976
|
valueLabels?: string | undefined;
|
|
915
977
|
}>;
|
|
916
978
|
x: z.ZodObject<{
|
|
917
979
|
type: z.ZodLiteral<"column">;
|
|
918
980
|
value: z.ZodString;
|
|
981
|
+
format: z.ZodOptional<z.ZodString>;
|
|
919
982
|
label: z.ZodOptional<z.ZodString>;
|
|
920
983
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
921
984
|
}, "strip", z.ZodTypeAny, {
|
|
922
985
|
type: "column";
|
|
923
986
|
value: string;
|
|
987
|
+
format?: string | undefined;
|
|
924
988
|
label?: string | undefined;
|
|
925
989
|
valueLabels?: string | undefined;
|
|
926
990
|
}, {
|
|
927
991
|
type: "column";
|
|
928
992
|
value: string;
|
|
993
|
+
format?: string | undefined;
|
|
929
994
|
label?: string | undefined;
|
|
930
995
|
valueLabels?: string | undefined;
|
|
931
996
|
}>;
|
|
932
997
|
y: z.ZodObject<{
|
|
933
998
|
type: z.ZodLiteral<"column">;
|
|
934
999
|
value: z.ZodString;
|
|
1000
|
+
format: z.ZodOptional<z.ZodString>;
|
|
935
1001
|
label: z.ZodOptional<z.ZodString>;
|
|
936
1002
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
937
1003
|
}, "strip", z.ZodTypeAny, {
|
|
938
1004
|
type: "column";
|
|
939
1005
|
value: string;
|
|
1006
|
+
format?: string | undefined;
|
|
940
1007
|
label?: string | undefined;
|
|
941
1008
|
valueLabels?: string | undefined;
|
|
942
1009
|
}, {
|
|
943
1010
|
type: "column";
|
|
944
1011
|
value: string;
|
|
1012
|
+
format?: string | undefined;
|
|
945
1013
|
label?: string | undefined;
|
|
946
1014
|
valueLabels?: string | undefined;
|
|
947
1015
|
}>;
|
|
@@ -949,16 +1017,19 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
949
1017
|
title: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
950
1018
|
type: z.ZodLiteral<"column">;
|
|
951
1019
|
value: z.ZodString;
|
|
1020
|
+
format: z.ZodOptional<z.ZodString>;
|
|
952
1021
|
label: z.ZodOptional<z.ZodString>;
|
|
953
1022
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
954
1023
|
}, "strip", z.ZodTypeAny, {
|
|
955
1024
|
type: "column";
|
|
956
1025
|
value: string;
|
|
1026
|
+
format?: string | undefined;
|
|
957
1027
|
label?: string | undefined;
|
|
958
1028
|
valueLabels?: string | undefined;
|
|
959
1029
|
}, {
|
|
960
1030
|
type: "column";
|
|
961
1031
|
value: string;
|
|
1032
|
+
format?: string | undefined;
|
|
962
1033
|
label?: string | undefined;
|
|
963
1034
|
valueLabels?: string | undefined;
|
|
964
1035
|
}>]>>;
|
|
@@ -977,6 +1048,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
977
1048
|
title?: string | {
|
|
978
1049
|
type: "column";
|
|
979
1050
|
value: string;
|
|
1051
|
+
format?: string | undefined;
|
|
980
1052
|
label?: string | undefined;
|
|
981
1053
|
valueLabels?: string | undefined;
|
|
982
1054
|
} | undefined;
|
|
@@ -995,6 +1067,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
995
1067
|
title?: string | {
|
|
996
1068
|
type: "column";
|
|
997
1069
|
value: string;
|
|
1070
|
+
format?: string | undefined;
|
|
998
1071
|
label?: string | undefined;
|
|
999
1072
|
valueLabels?: string | undefined;
|
|
1000
1073
|
} | undefined;
|
|
@@ -1014,16 +1087,19 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1014
1087
|
title: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
1015
1088
|
type: z.ZodLiteral<"column">;
|
|
1016
1089
|
value: z.ZodString;
|
|
1090
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1017
1091
|
label: z.ZodOptional<z.ZodString>;
|
|
1018
1092
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1019
1093
|
}, "strip", z.ZodTypeAny, {
|
|
1020
1094
|
type: "column";
|
|
1021
1095
|
value: string;
|
|
1096
|
+
format?: string | undefined;
|
|
1022
1097
|
label?: string | undefined;
|
|
1023
1098
|
valueLabels?: string | undefined;
|
|
1024
1099
|
}, {
|
|
1025
1100
|
type: "column";
|
|
1026
1101
|
value: string;
|
|
1102
|
+
format?: string | undefined;
|
|
1027
1103
|
label?: string | undefined;
|
|
1028
1104
|
valueLabels?: string | undefined;
|
|
1029
1105
|
}>]>>;
|
|
@@ -1042,6 +1118,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1042
1118
|
title?: string | {
|
|
1043
1119
|
type: "column";
|
|
1044
1120
|
value: string;
|
|
1121
|
+
format?: string | undefined;
|
|
1045
1122
|
label?: string | undefined;
|
|
1046
1123
|
valueLabels?: string | undefined;
|
|
1047
1124
|
} | undefined;
|
|
@@ -1060,6 +1137,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1060
1137
|
title?: string | {
|
|
1061
1138
|
type: "column";
|
|
1062
1139
|
value: string;
|
|
1140
|
+
format?: string | undefined;
|
|
1063
1141
|
label?: string | undefined;
|
|
1064
1142
|
valueLabels?: string | undefined;
|
|
1065
1143
|
} | undefined;
|
|
@@ -1076,94 +1154,148 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1076
1154
|
hiddenLabels?: boolean | undefined;
|
|
1077
1155
|
}>>;
|
|
1078
1156
|
grouping: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1157
|
+
columnName: z.ZodObject<{
|
|
1158
|
+
type: z.ZodLiteral<"column">;
|
|
1159
|
+
value: z.ZodString;
|
|
1160
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1161
|
+
label: z.ZodOptional<z.ZodString>;
|
|
1162
|
+
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1163
|
+
}, "strip", z.ZodTypeAny, {
|
|
1164
|
+
type: "column";
|
|
1165
|
+
value: string;
|
|
1166
|
+
format?: string | undefined;
|
|
1167
|
+
label?: string | undefined;
|
|
1168
|
+
valueLabels?: string | undefined;
|
|
1169
|
+
}, {
|
|
1170
|
+
type: "column";
|
|
1171
|
+
value: string;
|
|
1172
|
+
format?: string | undefined;
|
|
1173
|
+
label?: string | undefined;
|
|
1174
|
+
valueLabels?: string | undefined;
|
|
1175
|
+
}>;
|
|
1176
|
+
order: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodNull]>, "many">>;
|
|
1177
|
+
inheritedAes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1178
|
+
fillColor: z.ZodOptional<z.ZodString>;
|
|
1179
|
+
lineColor: z.ZodOptional<z.ZodString>;
|
|
1180
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
1181
|
+
lineShape: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
|
|
1182
|
+
dotShape: z.ZodOptional<z.ZodEnum<["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "20", "21", "22", "23", "24", "25"]>>;
|
|
1183
|
+
dotSize: z.ZodOptional<z.ZodNumber>;
|
|
1184
|
+
dotFill: z.ZodOptional<z.ZodString>;
|
|
1185
|
+
}, "strip", z.ZodTypeAny, {
|
|
1186
|
+
dotFill?: string | undefined;
|
|
1187
|
+
dotShape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | undefined;
|
|
1188
|
+
dotSize?: number | undefined;
|
|
1189
|
+
lineWidth?: number | undefined;
|
|
1190
|
+
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1191
|
+
lineColor?: string | undefined;
|
|
1192
|
+
fillColor?: string | undefined;
|
|
1193
|
+
}, {
|
|
1194
|
+
dotFill?: string | undefined;
|
|
1195
|
+
dotShape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | undefined;
|
|
1196
|
+
dotSize?: number | undefined;
|
|
1197
|
+
lineWidth?: number | undefined;
|
|
1198
|
+
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1199
|
+
lineColor?: string | undefined;
|
|
1200
|
+
fillColor?: string | undefined;
|
|
1201
|
+
}>>>;
|
|
1202
|
+
allowNullGroup: z.ZodOptional<z.ZodBoolean>;
|
|
1083
1203
|
}, "strip", z.ZodTypeAny, {
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1204
|
+
columnName: {
|
|
1205
|
+
type: "column";
|
|
1206
|
+
value: string;
|
|
1207
|
+
format?: string | undefined;
|
|
1208
|
+
label?: string | undefined;
|
|
1209
|
+
valueLabels?: string | undefined;
|
|
1210
|
+
};
|
|
1211
|
+
order?: (string | number | null)[] | undefined;
|
|
1212
|
+
inheritedAes?: Record<string, {
|
|
1213
|
+
dotFill?: string | undefined;
|
|
1214
|
+
dotShape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | undefined;
|
|
1215
|
+
dotSize?: number | undefined;
|
|
1216
|
+
lineWidth?: number | undefined;
|
|
1217
|
+
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1218
|
+
lineColor?: string | undefined;
|
|
1219
|
+
fillColor?: string | undefined;
|
|
1220
|
+
}> | undefined;
|
|
1221
|
+
allowNullGroup?: boolean | undefined;
|
|
1088
1222
|
}, {
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1223
|
+
columnName: {
|
|
1224
|
+
type: "column";
|
|
1225
|
+
value: string;
|
|
1226
|
+
format?: string | undefined;
|
|
1227
|
+
label?: string | undefined;
|
|
1228
|
+
valueLabels?: string | undefined;
|
|
1229
|
+
};
|
|
1230
|
+
order?: (string | number | null)[] | undefined;
|
|
1231
|
+
inheritedAes?: Record<string, {
|
|
1232
|
+
dotFill?: string | undefined;
|
|
1233
|
+
dotShape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | undefined;
|
|
1234
|
+
dotSize?: number | undefined;
|
|
1235
|
+
lineWidth?: number | undefined;
|
|
1236
|
+
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1237
|
+
lineColor?: string | undefined;
|
|
1238
|
+
fillColor?: string | undefined;
|
|
1239
|
+
}> | undefined;
|
|
1240
|
+
allowNullGroup?: boolean | undefined;
|
|
1093
1241
|
}>, "many">>;
|
|
1094
1242
|
facetBy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1095
1243
|
type: z.ZodLiteral<"column">;
|
|
1096
1244
|
value: z.ZodString;
|
|
1245
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1097
1246
|
label: z.ZodOptional<z.ZodString>;
|
|
1098
1247
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1099
1248
|
}, "strip", z.ZodTypeAny, {
|
|
1100
1249
|
type: "column";
|
|
1101
1250
|
value: string;
|
|
1251
|
+
format?: string | undefined;
|
|
1102
1252
|
label?: string | undefined;
|
|
1103
1253
|
valueLabels?: string | undefined;
|
|
1104
1254
|
}, {
|
|
1105
1255
|
type: "column";
|
|
1106
1256
|
value: string;
|
|
1257
|
+
format?: string | undefined;
|
|
1107
1258
|
label?: string | undefined;
|
|
1108
1259
|
valueLabels?: string | undefined;
|
|
1109
1260
|
}>, "many">>;
|
|
1110
1261
|
label: z.ZodOptional<z.ZodObject<{
|
|
1111
1262
|
type: z.ZodLiteral<"column">;
|
|
1112
1263
|
value: z.ZodString;
|
|
1264
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1113
1265
|
label: z.ZodOptional<z.ZodString>;
|
|
1114
1266
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1115
1267
|
}, "strip", z.ZodTypeAny, {
|
|
1116
1268
|
type: "column";
|
|
1117
1269
|
value: string;
|
|
1270
|
+
format?: string | undefined;
|
|
1118
1271
|
label?: string | undefined;
|
|
1119
1272
|
valueLabels?: string | undefined;
|
|
1120
1273
|
}, {
|
|
1121
1274
|
type: "column";
|
|
1122
1275
|
value: string;
|
|
1276
|
+
format?: string | undefined;
|
|
1123
1277
|
label?: string | undefined;
|
|
1124
1278
|
valueLabels?: string | undefined;
|
|
1125
1279
|
}>>;
|
|
1126
1280
|
highlight: z.ZodOptional<z.ZodObject<{
|
|
1127
1281
|
type: z.ZodLiteral<"column">;
|
|
1128
1282
|
value: z.ZodString;
|
|
1283
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1129
1284
|
label: z.ZodOptional<z.ZodString>;
|
|
1130
1285
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1131
1286
|
}, "strip", z.ZodTypeAny, {
|
|
1132
1287
|
type: "column";
|
|
1133
1288
|
value: string;
|
|
1289
|
+
format?: string | undefined;
|
|
1134
1290
|
label?: string | undefined;
|
|
1135
1291
|
valueLabels?: string | undefined;
|
|
1136
1292
|
}, {
|
|
1137
1293
|
type: "column";
|
|
1138
1294
|
value: string;
|
|
1295
|
+
format?: string | undefined;
|
|
1139
1296
|
label?: string | undefined;
|
|
1140
1297
|
valueLabels?: string | undefined;
|
|
1141
1298
|
}>>;
|
|
1142
|
-
inheritedAes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1143
|
-
fillColor: z.ZodOptional<z.ZodString>;
|
|
1144
|
-
lineColor: z.ZodOptional<z.ZodString>;
|
|
1145
|
-
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
1146
|
-
lineShape: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
|
|
1147
|
-
dotShape: z.ZodOptional<z.ZodEnum<["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "20", "21", "22", "23", "24", "25"]>>;
|
|
1148
|
-
dotSize: z.ZodOptional<z.ZodNumber>;
|
|
1149
|
-
dotFill: z.ZodOptional<z.ZodString>;
|
|
1150
|
-
}, "strip", z.ZodTypeAny, {
|
|
1151
|
-
dotFill?: string | undefined;
|
|
1152
|
-
dotShape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | undefined;
|
|
1153
|
-
dotSize?: number | undefined;
|
|
1154
|
-
lineWidth?: number | undefined;
|
|
1155
|
-
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1156
|
-
lineColor?: string | undefined;
|
|
1157
|
-
fillColor?: string | undefined;
|
|
1158
|
-
}, {
|
|
1159
|
-
dotFill?: string | undefined;
|
|
1160
|
-
dotShape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | undefined;
|
|
1161
|
-
dotSize?: number | undefined;
|
|
1162
|
-
lineWidth?: number | undefined;
|
|
1163
|
-
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1164
|
-
lineColor?: string | undefined;
|
|
1165
|
-
fillColor?: string | undefined;
|
|
1166
|
-
}>>>>;
|
|
1167
1299
|
trend: z.ZodOptional<z.ZodObject<{
|
|
1168
1300
|
color: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
1169
1301
|
type: z.ZodLiteral<"grouping">;
|
|
@@ -1181,16 +1313,19 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1181
1313
|
columnName: z.ZodObject<{
|
|
1182
1314
|
type: z.ZodLiteral<"column">;
|
|
1183
1315
|
value: z.ZodString;
|
|
1316
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1184
1317
|
label: z.ZodOptional<z.ZodString>;
|
|
1185
1318
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1186
1319
|
}, "strip", z.ZodTypeAny, {
|
|
1187
1320
|
type: "column";
|
|
1188
1321
|
value: string;
|
|
1322
|
+
format?: string | undefined;
|
|
1189
1323
|
label?: string | undefined;
|
|
1190
1324
|
valueLabels?: string | undefined;
|
|
1191
1325
|
}, {
|
|
1192
1326
|
type: "column";
|
|
1193
1327
|
value: string;
|
|
1328
|
+
format?: string | undefined;
|
|
1194
1329
|
label?: string | undefined;
|
|
1195
1330
|
valueLabels?: string | undefined;
|
|
1196
1331
|
}>;
|
|
@@ -1201,6 +1336,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1201
1336
|
columnName: {
|
|
1202
1337
|
type: "column";
|
|
1203
1338
|
value: string;
|
|
1339
|
+
format?: string | undefined;
|
|
1204
1340
|
label?: string | undefined;
|
|
1205
1341
|
valueLabels?: string | undefined;
|
|
1206
1342
|
};
|
|
@@ -1211,6 +1347,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1211
1347
|
columnName: {
|
|
1212
1348
|
type: "column";
|
|
1213
1349
|
value: string;
|
|
1350
|
+
format?: string | undefined;
|
|
1214
1351
|
label?: string | undefined;
|
|
1215
1352
|
valueLabels?: string | undefined;
|
|
1216
1353
|
};
|
|
@@ -1228,6 +1365,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1228
1365
|
columnName: {
|
|
1229
1366
|
type: "column";
|
|
1230
1367
|
value: string;
|
|
1368
|
+
format?: string | undefined;
|
|
1231
1369
|
label?: string | undefined;
|
|
1232
1370
|
valueLabels?: string | undefined;
|
|
1233
1371
|
};
|
|
@@ -1245,6 +1383,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1245
1383
|
columnName: {
|
|
1246
1384
|
type: "column";
|
|
1247
1385
|
value: string;
|
|
1386
|
+
format?: string | undefined;
|
|
1248
1387
|
label?: string | undefined;
|
|
1249
1388
|
valueLabels?: string | undefined;
|
|
1250
1389
|
};
|
|
@@ -1273,16 +1412,19 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1273
1412
|
columnName: z.ZodObject<{
|
|
1274
1413
|
type: z.ZodLiteral<"column">;
|
|
1275
1414
|
value: z.ZodString;
|
|
1415
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1276
1416
|
label: z.ZodOptional<z.ZodString>;
|
|
1277
1417
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1278
1418
|
}, "strip", z.ZodTypeAny, {
|
|
1279
1419
|
type: "column";
|
|
1280
1420
|
value: string;
|
|
1421
|
+
format?: string | undefined;
|
|
1281
1422
|
label?: string | undefined;
|
|
1282
1423
|
valueLabels?: string | undefined;
|
|
1283
1424
|
}, {
|
|
1284
1425
|
type: "column";
|
|
1285
1426
|
value: string;
|
|
1427
|
+
format?: string | undefined;
|
|
1286
1428
|
label?: string | undefined;
|
|
1287
1429
|
valueLabels?: string | undefined;
|
|
1288
1430
|
}>;
|
|
@@ -1293,6 +1435,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1293
1435
|
columnName: {
|
|
1294
1436
|
type: "column";
|
|
1295
1437
|
value: string;
|
|
1438
|
+
format?: string | undefined;
|
|
1296
1439
|
label?: string | undefined;
|
|
1297
1440
|
valueLabels?: string | undefined;
|
|
1298
1441
|
};
|
|
@@ -1303,6 +1446,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1303
1446
|
columnName: {
|
|
1304
1447
|
type: "column";
|
|
1305
1448
|
value: string;
|
|
1449
|
+
format?: string | undefined;
|
|
1306
1450
|
label?: string | undefined;
|
|
1307
1451
|
valueLabels?: string | undefined;
|
|
1308
1452
|
};
|
|
@@ -1327,16 +1471,19 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1327
1471
|
columnName: z.ZodObject<{
|
|
1328
1472
|
type: z.ZodLiteral<"column">;
|
|
1329
1473
|
value: z.ZodString;
|
|
1474
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1330
1475
|
label: z.ZodOptional<z.ZodString>;
|
|
1331
1476
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1332
1477
|
}, "strip", z.ZodTypeAny, {
|
|
1333
1478
|
type: "column";
|
|
1334
1479
|
value: string;
|
|
1480
|
+
format?: string | undefined;
|
|
1335
1481
|
label?: string | undefined;
|
|
1336
1482
|
valueLabels?: string | undefined;
|
|
1337
1483
|
}, {
|
|
1338
1484
|
type: "column";
|
|
1339
1485
|
value: string;
|
|
1486
|
+
format?: string | undefined;
|
|
1340
1487
|
label?: string | undefined;
|
|
1341
1488
|
valueLabels?: string | undefined;
|
|
1342
1489
|
}>;
|
|
@@ -1347,6 +1494,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1347
1494
|
columnName: {
|
|
1348
1495
|
type: "column";
|
|
1349
1496
|
value: string;
|
|
1497
|
+
format?: string | undefined;
|
|
1350
1498
|
label?: string | undefined;
|
|
1351
1499
|
valueLabels?: string | undefined;
|
|
1352
1500
|
};
|
|
@@ -1357,6 +1505,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1357
1505
|
columnName: {
|
|
1358
1506
|
type: "column";
|
|
1359
1507
|
value: string;
|
|
1508
|
+
format?: string | undefined;
|
|
1360
1509
|
label?: string | undefined;
|
|
1361
1510
|
valueLabels?: string | undefined;
|
|
1362
1511
|
};
|
|
@@ -1373,6 +1522,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1373
1522
|
columnName: {
|
|
1374
1523
|
type: "column";
|
|
1375
1524
|
value: string;
|
|
1525
|
+
format?: string | undefined;
|
|
1376
1526
|
label?: string | undefined;
|
|
1377
1527
|
valueLabels?: string | undefined;
|
|
1378
1528
|
};
|
|
@@ -1389,6 +1539,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1389
1539
|
columnName: {
|
|
1390
1540
|
type: "column";
|
|
1391
1541
|
value: string;
|
|
1542
|
+
format?: string | undefined;
|
|
1392
1543
|
label?: string | undefined;
|
|
1393
1544
|
valueLabels?: string | undefined;
|
|
1394
1545
|
};
|
|
@@ -1405,6 +1556,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1405
1556
|
columnName: {
|
|
1406
1557
|
type: "column";
|
|
1407
1558
|
value: string;
|
|
1559
|
+
format?: string | undefined;
|
|
1408
1560
|
label?: string | undefined;
|
|
1409
1561
|
valueLabels?: string | undefined;
|
|
1410
1562
|
};
|
|
@@ -1421,6 +1573,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1421
1573
|
columnName: {
|
|
1422
1574
|
type: "column";
|
|
1423
1575
|
value: string;
|
|
1576
|
+
format?: string | undefined;
|
|
1424
1577
|
label?: string | undefined;
|
|
1425
1578
|
valueLabels?: string | undefined;
|
|
1426
1579
|
};
|
|
@@ -1440,6 +1593,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1440
1593
|
columnName: {
|
|
1441
1594
|
type: "column";
|
|
1442
1595
|
value: string;
|
|
1596
|
+
format?: string | undefined;
|
|
1443
1597
|
label?: string | undefined;
|
|
1444
1598
|
valueLabels?: string | undefined;
|
|
1445
1599
|
};
|
|
@@ -1456,6 +1610,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1456
1610
|
columnName: {
|
|
1457
1611
|
type: "column";
|
|
1458
1612
|
value: string;
|
|
1613
|
+
format?: string | undefined;
|
|
1459
1614
|
label?: string | undefined;
|
|
1460
1615
|
valueLabels?: string | undefined;
|
|
1461
1616
|
};
|
|
@@ -1475,6 +1630,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1475
1630
|
columnName: {
|
|
1476
1631
|
type: "column";
|
|
1477
1632
|
value: string;
|
|
1633
|
+
format?: string | undefined;
|
|
1478
1634
|
label?: string | undefined;
|
|
1479
1635
|
valueLabels?: string | undefined;
|
|
1480
1636
|
};
|
|
@@ -1491,6 +1647,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1491
1647
|
columnName: {
|
|
1492
1648
|
type: "column";
|
|
1493
1649
|
value: string;
|
|
1650
|
+
format?: string | undefined;
|
|
1494
1651
|
label?: string | undefined;
|
|
1495
1652
|
valueLabels?: string | undefined;
|
|
1496
1653
|
};
|
|
@@ -1521,16 +1678,19 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1521
1678
|
columnName: z.ZodObject<{
|
|
1522
1679
|
type: z.ZodLiteral<"column">;
|
|
1523
1680
|
value: z.ZodString;
|
|
1681
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1524
1682
|
label: z.ZodOptional<z.ZodString>;
|
|
1525
1683
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1526
1684
|
}, "strip", z.ZodTypeAny, {
|
|
1527
1685
|
type: "column";
|
|
1528
1686
|
value: string;
|
|
1687
|
+
format?: string | undefined;
|
|
1529
1688
|
label?: string | undefined;
|
|
1530
1689
|
valueLabels?: string | undefined;
|
|
1531
1690
|
}, {
|
|
1532
1691
|
type: "column";
|
|
1533
1692
|
value: string;
|
|
1693
|
+
format?: string | undefined;
|
|
1534
1694
|
label?: string | undefined;
|
|
1535
1695
|
valueLabels?: string | undefined;
|
|
1536
1696
|
}>;
|
|
@@ -1541,6 +1701,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1541
1701
|
columnName: {
|
|
1542
1702
|
type: "column";
|
|
1543
1703
|
value: string;
|
|
1704
|
+
format?: string | undefined;
|
|
1544
1705
|
label?: string | undefined;
|
|
1545
1706
|
valueLabels?: string | undefined;
|
|
1546
1707
|
};
|
|
@@ -1551,6 +1712,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1551
1712
|
columnName: {
|
|
1552
1713
|
type: "column";
|
|
1553
1714
|
value: string;
|
|
1715
|
+
format?: string | undefined;
|
|
1554
1716
|
label?: string | undefined;
|
|
1555
1717
|
valueLabels?: string | undefined;
|
|
1556
1718
|
};
|
|
@@ -1570,6 +1732,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1570
1732
|
columnName: {
|
|
1571
1733
|
type: "column";
|
|
1572
1734
|
value: string;
|
|
1735
|
+
format?: string | undefined;
|
|
1573
1736
|
label?: string | undefined;
|
|
1574
1737
|
valueLabels?: string | undefined;
|
|
1575
1738
|
};
|
|
@@ -1589,6 +1752,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1589
1752
|
columnName: {
|
|
1590
1753
|
type: "column";
|
|
1591
1754
|
value: string;
|
|
1755
|
+
format?: string | undefined;
|
|
1592
1756
|
label?: string | undefined;
|
|
1593
1757
|
valueLabels?: string | undefined;
|
|
1594
1758
|
};
|
|
@@ -1611,6 +1775,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1611
1775
|
columnName: {
|
|
1612
1776
|
type: "column";
|
|
1613
1777
|
value: string;
|
|
1778
|
+
format?: string | undefined;
|
|
1614
1779
|
label?: string | undefined;
|
|
1615
1780
|
valueLabels?: string | undefined;
|
|
1616
1781
|
};
|
|
@@ -1634,6 +1799,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1634
1799
|
columnName: {
|
|
1635
1800
|
type: "column";
|
|
1636
1801
|
value: string;
|
|
1802
|
+
format?: string | undefined;
|
|
1637
1803
|
label?: string | undefined;
|
|
1638
1804
|
valueLabels?: string | undefined;
|
|
1639
1805
|
};
|
|
@@ -1650,23 +1816,26 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1650
1816
|
title: {
|
|
1651
1817
|
name: string;
|
|
1652
1818
|
show?: boolean | undefined;
|
|
1653
|
-
position?: "
|
|
1819
|
+
position?: "left" | "center" | "right" | undefined;
|
|
1654
1820
|
};
|
|
1655
1821
|
keyColumn: {
|
|
1656
1822
|
type: "column";
|
|
1657
1823
|
value: string;
|
|
1824
|
+
format?: string | undefined;
|
|
1658
1825
|
label?: string | undefined;
|
|
1659
1826
|
valueLabels?: string | undefined;
|
|
1660
1827
|
};
|
|
1661
1828
|
x: {
|
|
1662
1829
|
type: "column";
|
|
1663
1830
|
value: string;
|
|
1831
|
+
format?: string | undefined;
|
|
1664
1832
|
label?: string | undefined;
|
|
1665
1833
|
valueLabels?: string | undefined;
|
|
1666
1834
|
};
|
|
1667
1835
|
y: {
|
|
1668
1836
|
type: "column";
|
|
1669
1837
|
value: string;
|
|
1838
|
+
format?: string | undefined;
|
|
1670
1839
|
label?: string | undefined;
|
|
1671
1840
|
valueLabels?: string | undefined;
|
|
1672
1841
|
};
|
|
@@ -1681,6 +1850,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1681
1850
|
columnName: {
|
|
1682
1851
|
type: "column";
|
|
1683
1852
|
value: string;
|
|
1853
|
+
format?: string | undefined;
|
|
1684
1854
|
label?: string | undefined;
|
|
1685
1855
|
valueLabels?: string | undefined;
|
|
1686
1856
|
};
|
|
@@ -1697,6 +1867,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1697
1867
|
columnName: {
|
|
1698
1868
|
type: "column";
|
|
1699
1869
|
value: string;
|
|
1870
|
+
format?: string | undefined;
|
|
1700
1871
|
label?: string | undefined;
|
|
1701
1872
|
valueLabels?: string | undefined;
|
|
1702
1873
|
};
|
|
@@ -1718,6 +1889,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1718
1889
|
columnName: {
|
|
1719
1890
|
type: "column";
|
|
1720
1891
|
value: string;
|
|
1892
|
+
format?: string | undefined;
|
|
1721
1893
|
label?: string | undefined;
|
|
1722
1894
|
valueLabels?: string | undefined;
|
|
1723
1895
|
};
|
|
@@ -1736,24 +1908,40 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1736
1908
|
label?: {
|
|
1737
1909
|
type: "column";
|
|
1738
1910
|
value: string;
|
|
1911
|
+
format?: string | undefined;
|
|
1739
1912
|
label?: string | undefined;
|
|
1740
1913
|
valueLabels?: string | undefined;
|
|
1741
1914
|
} | undefined;
|
|
1742
1915
|
grouping?: {
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1916
|
+
columnName: {
|
|
1917
|
+
type: "column";
|
|
1918
|
+
value: string;
|
|
1919
|
+
format?: string | undefined;
|
|
1920
|
+
label?: string | undefined;
|
|
1921
|
+
valueLabels?: string | undefined;
|
|
1922
|
+
};
|
|
1923
|
+
order?: (string | number | null)[] | undefined;
|
|
1924
|
+
inheritedAes?: Record<string, {
|
|
1925
|
+
dotFill?: string | undefined;
|
|
1926
|
+
dotShape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | undefined;
|
|
1927
|
+
dotSize?: number | undefined;
|
|
1928
|
+
lineWidth?: number | undefined;
|
|
1929
|
+
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1930
|
+
lineColor?: string | undefined;
|
|
1931
|
+
fillColor?: string | undefined;
|
|
1932
|
+
}> | undefined;
|
|
1933
|
+
allowNullGroup?: boolean | undefined;
|
|
1747
1934
|
}[] | undefined;
|
|
1748
1935
|
legend?: {
|
|
1749
1936
|
show?: boolean | undefined;
|
|
1750
|
-
position?: "right" | "
|
|
1937
|
+
position?: "right" | "inside" | "top" | "bottom" | undefined;
|
|
1751
1938
|
} | undefined;
|
|
1752
1939
|
tooltips?: {
|
|
1753
1940
|
show?: boolean | undefined;
|
|
1754
1941
|
content?: {
|
|
1755
1942
|
type: "column";
|
|
1756
1943
|
value: string;
|
|
1944
|
+
format?: string | undefined;
|
|
1757
1945
|
label?: string | undefined;
|
|
1758
1946
|
valueLabels?: string | undefined;
|
|
1759
1947
|
}[] | undefined;
|
|
@@ -1771,6 +1959,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1771
1959
|
title?: string | {
|
|
1772
1960
|
type: "column";
|
|
1773
1961
|
value: string;
|
|
1962
|
+
format?: string | undefined;
|
|
1774
1963
|
label?: string | undefined;
|
|
1775
1964
|
valueLabels?: string | undefined;
|
|
1776
1965
|
} | undefined;
|
|
@@ -1790,6 +1979,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1790
1979
|
title?: string | {
|
|
1791
1980
|
type: "column";
|
|
1792
1981
|
value: string;
|
|
1982
|
+
format?: string | undefined;
|
|
1793
1983
|
label?: string | undefined;
|
|
1794
1984
|
valueLabels?: string | undefined;
|
|
1795
1985
|
} | undefined;
|
|
@@ -1808,24 +1998,17 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1808
1998
|
facetBy?: {
|
|
1809
1999
|
type: "column";
|
|
1810
2000
|
value: string;
|
|
2001
|
+
format?: string | undefined;
|
|
1811
2002
|
label?: string | undefined;
|
|
1812
2003
|
valueLabels?: string | undefined;
|
|
1813
2004
|
}[] | undefined;
|
|
1814
2005
|
highlight?: {
|
|
1815
2006
|
type: "column";
|
|
1816
2007
|
value: string;
|
|
2008
|
+
format?: string | undefined;
|
|
1817
2009
|
label?: string | undefined;
|
|
1818
2010
|
valueLabels?: string | undefined;
|
|
1819
2011
|
} | undefined;
|
|
1820
|
-
inheritedAes?: Record<string, Record<string, {
|
|
1821
|
-
dotFill?: string | undefined;
|
|
1822
|
-
dotShape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | undefined;
|
|
1823
|
-
dotSize?: number | undefined;
|
|
1824
|
-
lineWidth?: number | undefined;
|
|
1825
|
-
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1826
|
-
lineColor?: string | undefined;
|
|
1827
|
-
fillColor?: string | undefined;
|
|
1828
|
-
}>> | undefined;
|
|
1829
2012
|
trend?: {
|
|
1830
2013
|
color?: string | {
|
|
1831
2014
|
type: "grouping";
|
|
@@ -1835,6 +2018,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1835
2018
|
columnName: {
|
|
1836
2019
|
type: "column";
|
|
1837
2020
|
value: string;
|
|
2021
|
+
format?: string | undefined;
|
|
1838
2022
|
label?: string | undefined;
|
|
1839
2023
|
valueLabels?: string | undefined;
|
|
1840
2024
|
};
|
|
@@ -1849,23 +2033,26 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1849
2033
|
title: {
|
|
1850
2034
|
name: string;
|
|
1851
2035
|
show?: boolean | undefined;
|
|
1852
|
-
position?: "
|
|
2036
|
+
position?: "left" | "center" | "right" | undefined;
|
|
1853
2037
|
};
|
|
1854
2038
|
keyColumn: {
|
|
1855
2039
|
type: "column";
|
|
1856
2040
|
value: string;
|
|
2041
|
+
format?: string | undefined;
|
|
1857
2042
|
label?: string | undefined;
|
|
1858
2043
|
valueLabels?: string | undefined;
|
|
1859
2044
|
};
|
|
1860
2045
|
x: {
|
|
1861
2046
|
type: "column";
|
|
1862
2047
|
value: string;
|
|
2048
|
+
format?: string | undefined;
|
|
1863
2049
|
label?: string | undefined;
|
|
1864
2050
|
valueLabels?: string | undefined;
|
|
1865
2051
|
};
|
|
1866
2052
|
y: {
|
|
1867
2053
|
type: "column";
|
|
1868
2054
|
value: string;
|
|
2055
|
+
format?: string | undefined;
|
|
1869
2056
|
label?: string | undefined;
|
|
1870
2057
|
valueLabels?: string | undefined;
|
|
1871
2058
|
};
|
|
@@ -1880,6 +2067,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1880
2067
|
columnName: {
|
|
1881
2068
|
type: "column";
|
|
1882
2069
|
value: string;
|
|
2070
|
+
format?: string | undefined;
|
|
1883
2071
|
label?: string | undefined;
|
|
1884
2072
|
valueLabels?: string | undefined;
|
|
1885
2073
|
};
|
|
@@ -1896,6 +2084,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1896
2084
|
columnName: {
|
|
1897
2085
|
type: "column";
|
|
1898
2086
|
value: string;
|
|
2087
|
+
format?: string | undefined;
|
|
1899
2088
|
label?: string | undefined;
|
|
1900
2089
|
valueLabels?: string | undefined;
|
|
1901
2090
|
};
|
|
@@ -1917,6 +2106,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1917
2106
|
columnName: {
|
|
1918
2107
|
type: "column";
|
|
1919
2108
|
value: string;
|
|
2109
|
+
format?: string | undefined;
|
|
1920
2110
|
label?: string | undefined;
|
|
1921
2111
|
valueLabels?: string | undefined;
|
|
1922
2112
|
};
|
|
@@ -1935,24 +2125,40 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1935
2125
|
label?: {
|
|
1936
2126
|
type: "column";
|
|
1937
2127
|
value: string;
|
|
2128
|
+
format?: string | undefined;
|
|
1938
2129
|
label?: string | undefined;
|
|
1939
2130
|
valueLabels?: string | undefined;
|
|
1940
2131
|
} | undefined;
|
|
1941
2132
|
grouping?: {
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
2133
|
+
columnName: {
|
|
2134
|
+
type: "column";
|
|
2135
|
+
value: string;
|
|
2136
|
+
format?: string | undefined;
|
|
2137
|
+
label?: string | undefined;
|
|
2138
|
+
valueLabels?: string | undefined;
|
|
2139
|
+
};
|
|
2140
|
+
order?: (string | number | null)[] | undefined;
|
|
2141
|
+
inheritedAes?: Record<string, {
|
|
2142
|
+
dotFill?: string | undefined;
|
|
2143
|
+
dotShape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | undefined;
|
|
2144
|
+
dotSize?: number | undefined;
|
|
2145
|
+
lineWidth?: number | undefined;
|
|
2146
|
+
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
2147
|
+
lineColor?: string | undefined;
|
|
2148
|
+
fillColor?: string | undefined;
|
|
2149
|
+
}> | undefined;
|
|
2150
|
+
allowNullGroup?: boolean | undefined;
|
|
1946
2151
|
}[] | undefined;
|
|
1947
2152
|
legend?: {
|
|
1948
2153
|
show?: boolean | undefined;
|
|
1949
|
-
position?: "right" | "
|
|
2154
|
+
position?: "right" | "inside" | "top" | "bottom" | undefined;
|
|
1950
2155
|
} | undefined;
|
|
1951
2156
|
tooltips?: {
|
|
1952
2157
|
show?: boolean | undefined;
|
|
1953
2158
|
content?: {
|
|
1954
2159
|
type: "column";
|
|
1955
2160
|
value: string;
|
|
2161
|
+
format?: string | undefined;
|
|
1956
2162
|
label?: string | undefined;
|
|
1957
2163
|
valueLabels?: string | undefined;
|
|
1958
2164
|
}[] | undefined;
|
|
@@ -1970,6 +2176,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1970
2176
|
title?: string | {
|
|
1971
2177
|
type: "column";
|
|
1972
2178
|
value: string;
|
|
2179
|
+
format?: string | undefined;
|
|
1973
2180
|
label?: string | undefined;
|
|
1974
2181
|
valueLabels?: string | undefined;
|
|
1975
2182
|
} | undefined;
|
|
@@ -1989,6 +2196,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1989
2196
|
title?: string | {
|
|
1990
2197
|
type: "column";
|
|
1991
2198
|
value: string;
|
|
2199
|
+
format?: string | undefined;
|
|
1992
2200
|
label?: string | undefined;
|
|
1993
2201
|
valueLabels?: string | undefined;
|
|
1994
2202
|
} | undefined;
|
|
@@ -2007,24 +2215,17 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2007
2215
|
facetBy?: {
|
|
2008
2216
|
type: "column";
|
|
2009
2217
|
value: string;
|
|
2218
|
+
format?: string | undefined;
|
|
2010
2219
|
label?: string | undefined;
|
|
2011
2220
|
valueLabels?: string | undefined;
|
|
2012
2221
|
}[] | undefined;
|
|
2013
2222
|
highlight?: {
|
|
2014
2223
|
type: "column";
|
|
2015
2224
|
value: string;
|
|
2225
|
+
format?: string | undefined;
|
|
2016
2226
|
label?: string | undefined;
|
|
2017
2227
|
valueLabels?: string | undefined;
|
|
2018
2228
|
} | undefined;
|
|
2019
|
-
inheritedAes?: Record<string, Record<string, {
|
|
2020
|
-
dotFill?: string | undefined;
|
|
2021
|
-
dotShape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | undefined;
|
|
2022
|
-
dotSize?: number | undefined;
|
|
2023
|
-
lineWidth?: number | undefined;
|
|
2024
|
-
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
2025
|
-
lineColor?: string | undefined;
|
|
2026
|
-
fillColor?: string | undefined;
|
|
2027
|
-
}>> | undefined;
|
|
2028
2229
|
trend?: {
|
|
2029
2230
|
color?: string | {
|
|
2030
2231
|
type: "grouping";
|
|
@@ -2034,6 +2235,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2034
2235
|
columnName: {
|
|
2035
2236
|
type: "column";
|
|
2036
2237
|
value: string;
|
|
2238
|
+
format?: string | undefined;
|
|
2037
2239
|
label?: string | undefined;
|
|
2038
2240
|
valueLabels?: string | undefined;
|
|
2039
2241
|
};
|