@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
|
@@ -38,16 +38,19 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
38
38
|
columnName: z.ZodObject<{
|
|
39
39
|
type: z.ZodLiteral<"column">;
|
|
40
40
|
value: z.ZodString;
|
|
41
|
+
format: z.ZodOptional<z.ZodString>;
|
|
41
42
|
label: z.ZodOptional<z.ZodString>;
|
|
42
43
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
43
44
|
}, "strip", z.ZodTypeAny, {
|
|
44
45
|
type: "column";
|
|
45
46
|
value: string;
|
|
47
|
+
format?: string | undefined;
|
|
46
48
|
label?: string | undefined;
|
|
47
49
|
valueLabels?: string | undefined;
|
|
48
50
|
}, {
|
|
49
51
|
type: "column";
|
|
50
52
|
value: string;
|
|
53
|
+
format?: string | undefined;
|
|
51
54
|
label?: string | undefined;
|
|
52
55
|
valueLabels?: string | undefined;
|
|
53
56
|
}>;
|
|
@@ -58,6 +61,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
58
61
|
columnName: {
|
|
59
62
|
type: "column";
|
|
60
63
|
value: string;
|
|
64
|
+
format?: string | undefined;
|
|
61
65
|
label?: string | undefined;
|
|
62
66
|
valueLabels?: string | undefined;
|
|
63
67
|
};
|
|
@@ -68,6 +72,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
68
72
|
columnName: {
|
|
69
73
|
type: "column";
|
|
70
74
|
value: string;
|
|
75
|
+
format?: string | undefined;
|
|
71
76
|
label?: string | undefined;
|
|
72
77
|
valueLabels?: string | undefined;
|
|
73
78
|
};
|
|
@@ -92,16 +97,19 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
92
97
|
columnName: z.ZodObject<{
|
|
93
98
|
type: z.ZodLiteral<"column">;
|
|
94
99
|
value: z.ZodString;
|
|
100
|
+
format: z.ZodOptional<z.ZodString>;
|
|
95
101
|
label: z.ZodOptional<z.ZodString>;
|
|
96
102
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
97
103
|
}, "strip", z.ZodTypeAny, {
|
|
98
104
|
type: "column";
|
|
99
105
|
value: string;
|
|
106
|
+
format?: string | undefined;
|
|
100
107
|
label?: string | undefined;
|
|
101
108
|
valueLabels?: string | undefined;
|
|
102
109
|
}, {
|
|
103
110
|
type: "column";
|
|
104
111
|
value: string;
|
|
112
|
+
format?: string | undefined;
|
|
105
113
|
label?: string | undefined;
|
|
106
114
|
valueLabels?: string | undefined;
|
|
107
115
|
}>;
|
|
@@ -112,6 +120,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
112
120
|
columnName: {
|
|
113
121
|
type: "column";
|
|
114
122
|
value: string;
|
|
123
|
+
format?: string | undefined;
|
|
115
124
|
label?: string | undefined;
|
|
116
125
|
valueLabels?: string | undefined;
|
|
117
126
|
};
|
|
@@ -122,6 +131,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
122
131
|
columnName: {
|
|
123
132
|
type: "column";
|
|
124
133
|
value: string;
|
|
134
|
+
format?: string | undefined;
|
|
125
135
|
label?: string | undefined;
|
|
126
136
|
valueLabels?: string | undefined;
|
|
127
137
|
};
|
|
@@ -134,6 +144,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
134
144
|
columnName: {
|
|
135
145
|
type: "column";
|
|
136
146
|
value: string;
|
|
147
|
+
format?: string | undefined;
|
|
137
148
|
label?: string | undefined;
|
|
138
149
|
valueLabels?: string | undefined;
|
|
139
150
|
};
|
|
@@ -154,6 +165,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
154
165
|
columnName: {
|
|
155
166
|
type: "column";
|
|
156
167
|
value: string;
|
|
168
|
+
format?: string | undefined;
|
|
157
169
|
label?: string | undefined;
|
|
158
170
|
valueLabels?: string | undefined;
|
|
159
171
|
};
|
|
@@ -166,6 +178,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
166
178
|
columnName: {
|
|
167
179
|
type: "column";
|
|
168
180
|
value: string;
|
|
181
|
+
format?: string | undefined;
|
|
169
182
|
label?: string | undefined;
|
|
170
183
|
valueLabels?: string | undefined;
|
|
171
184
|
};
|
|
@@ -186,6 +199,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
186
199
|
columnName: {
|
|
187
200
|
type: "column";
|
|
188
201
|
value: string;
|
|
202
|
+
format?: string | undefined;
|
|
189
203
|
label?: string | undefined;
|
|
190
204
|
valueLabels?: string | undefined;
|
|
191
205
|
};
|
|
@@ -201,6 +215,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
201
215
|
columnName: {
|
|
202
216
|
type: "column";
|
|
203
217
|
value: string;
|
|
218
|
+
format?: string | undefined;
|
|
204
219
|
label?: string | undefined;
|
|
205
220
|
valueLabels?: string | undefined;
|
|
206
221
|
};
|
|
@@ -221,6 +236,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
221
236
|
columnName: {
|
|
222
237
|
type: "column";
|
|
223
238
|
value: string;
|
|
239
|
+
format?: string | undefined;
|
|
224
240
|
label?: string | undefined;
|
|
225
241
|
valueLabels?: string | undefined;
|
|
226
242
|
};
|
|
@@ -236,6 +252,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
236
252
|
columnName: {
|
|
237
253
|
type: "column";
|
|
238
254
|
value: string;
|
|
255
|
+
format?: string | undefined;
|
|
239
256
|
label?: string | undefined;
|
|
240
257
|
valueLabels?: string | undefined;
|
|
241
258
|
};
|
|
@@ -256,6 +273,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
256
273
|
columnName: {
|
|
257
274
|
type: "column";
|
|
258
275
|
value: string;
|
|
276
|
+
format?: string | undefined;
|
|
259
277
|
label?: string | undefined;
|
|
260
278
|
valueLabels?: string | undefined;
|
|
261
279
|
};
|
|
@@ -287,16 +305,19 @@ declare const CurveUmapLayerSchema: z.ZodObject<{
|
|
|
287
305
|
columnName: z.ZodObject<{
|
|
288
306
|
type: z.ZodLiteral<"column">;
|
|
289
307
|
value: z.ZodString;
|
|
308
|
+
format: z.ZodOptional<z.ZodString>;
|
|
290
309
|
label: z.ZodOptional<z.ZodString>;
|
|
291
310
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
292
311
|
}, "strip", z.ZodTypeAny, {
|
|
293
312
|
type: "column";
|
|
294
313
|
value: string;
|
|
314
|
+
format?: string | undefined;
|
|
295
315
|
label?: string | undefined;
|
|
296
316
|
valueLabels?: string | undefined;
|
|
297
317
|
}, {
|
|
298
318
|
type: "column";
|
|
299
319
|
value: string;
|
|
320
|
+
format?: string | undefined;
|
|
300
321
|
label?: string | undefined;
|
|
301
322
|
valueLabels?: string | undefined;
|
|
302
323
|
}>;
|
|
@@ -307,6 +328,7 @@ declare const CurveUmapLayerSchema: z.ZodObject<{
|
|
|
307
328
|
columnName: {
|
|
308
329
|
type: "column";
|
|
309
330
|
value: string;
|
|
331
|
+
format?: string | undefined;
|
|
310
332
|
label?: string | undefined;
|
|
311
333
|
valueLabels?: string | undefined;
|
|
312
334
|
};
|
|
@@ -317,6 +339,7 @@ declare const CurveUmapLayerSchema: z.ZodObject<{
|
|
|
317
339
|
columnName: {
|
|
318
340
|
type: "column";
|
|
319
341
|
value: string;
|
|
342
|
+
format?: string | undefined;
|
|
320
343
|
label?: string | undefined;
|
|
321
344
|
valueLabels?: string | undefined;
|
|
322
345
|
};
|
|
@@ -332,6 +355,7 @@ declare const CurveUmapLayerSchema: z.ZodObject<{
|
|
|
332
355
|
columnName: {
|
|
333
356
|
type: "column";
|
|
334
357
|
value: string;
|
|
358
|
+
format?: string | undefined;
|
|
335
359
|
label?: string | undefined;
|
|
336
360
|
valueLabels?: string | undefined;
|
|
337
361
|
};
|
|
@@ -351,6 +375,7 @@ declare const CurveUmapLayerSchema: z.ZodObject<{
|
|
|
351
375
|
columnName: {
|
|
352
376
|
type: "column";
|
|
353
377
|
value: string;
|
|
378
|
+
format?: string | undefined;
|
|
354
379
|
label?: string | undefined;
|
|
355
380
|
valueLabels?: string | undefined;
|
|
356
381
|
};
|
|
@@ -373,6 +398,7 @@ declare const CurveUmapLayerSchema: z.ZodObject<{
|
|
|
373
398
|
columnName: {
|
|
374
399
|
type: "column";
|
|
375
400
|
value: string;
|
|
401
|
+
format?: string | undefined;
|
|
376
402
|
label?: string | undefined;
|
|
377
403
|
valueLabels?: string | undefined;
|
|
378
404
|
};
|
|
@@ -396,6 +422,7 @@ declare const CurveUmapLayerSchema: z.ZodObject<{
|
|
|
396
422
|
columnName: {
|
|
397
423
|
type: "column";
|
|
398
424
|
value: string;
|
|
425
|
+
format?: string | undefined;
|
|
399
426
|
label?: string | undefined;
|
|
400
427
|
valueLabels?: string | undefined;
|
|
401
428
|
};
|
|
@@ -430,16 +457,19 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
430
457
|
columnName: z.ZodObject<{
|
|
431
458
|
type: z.ZodLiteral<"column">;
|
|
432
459
|
value: z.ZodString;
|
|
460
|
+
format: z.ZodOptional<z.ZodString>;
|
|
433
461
|
label: z.ZodOptional<z.ZodString>;
|
|
434
462
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
435
463
|
}, "strip", z.ZodTypeAny, {
|
|
436
464
|
type: "column";
|
|
437
465
|
value: string;
|
|
466
|
+
format?: string | undefined;
|
|
438
467
|
label?: string | undefined;
|
|
439
468
|
valueLabels?: string | undefined;
|
|
440
469
|
}, {
|
|
441
470
|
type: "column";
|
|
442
471
|
value: string;
|
|
472
|
+
format?: string | undefined;
|
|
443
473
|
label?: string | undefined;
|
|
444
474
|
valueLabels?: string | undefined;
|
|
445
475
|
}>;
|
|
@@ -450,6 +480,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
450
480
|
columnName: {
|
|
451
481
|
type: "column";
|
|
452
482
|
value: string;
|
|
483
|
+
format?: string | undefined;
|
|
453
484
|
label?: string | undefined;
|
|
454
485
|
valueLabels?: string | undefined;
|
|
455
486
|
};
|
|
@@ -460,6 +491,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
460
491
|
columnName: {
|
|
461
492
|
type: "column";
|
|
462
493
|
value: string;
|
|
494
|
+
format?: string | undefined;
|
|
463
495
|
label?: string | undefined;
|
|
464
496
|
valueLabels?: string | undefined;
|
|
465
497
|
};
|
|
@@ -484,16 +516,19 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
484
516
|
columnName: z.ZodObject<{
|
|
485
517
|
type: z.ZodLiteral<"column">;
|
|
486
518
|
value: z.ZodString;
|
|
519
|
+
format: z.ZodOptional<z.ZodString>;
|
|
487
520
|
label: z.ZodOptional<z.ZodString>;
|
|
488
521
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
489
522
|
}, "strip", z.ZodTypeAny, {
|
|
490
523
|
type: "column";
|
|
491
524
|
value: string;
|
|
525
|
+
format?: string | undefined;
|
|
492
526
|
label?: string | undefined;
|
|
493
527
|
valueLabels?: string | undefined;
|
|
494
528
|
}, {
|
|
495
529
|
type: "column";
|
|
496
530
|
value: string;
|
|
531
|
+
format?: string | undefined;
|
|
497
532
|
label?: string | undefined;
|
|
498
533
|
valueLabels?: string | undefined;
|
|
499
534
|
}>;
|
|
@@ -504,6 +539,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
504
539
|
columnName: {
|
|
505
540
|
type: "column";
|
|
506
541
|
value: string;
|
|
542
|
+
format?: string | undefined;
|
|
507
543
|
label?: string | undefined;
|
|
508
544
|
valueLabels?: string | undefined;
|
|
509
545
|
};
|
|
@@ -514,6 +550,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
514
550
|
columnName: {
|
|
515
551
|
type: "column";
|
|
516
552
|
value: string;
|
|
553
|
+
format?: string | undefined;
|
|
517
554
|
label?: string | undefined;
|
|
518
555
|
valueLabels?: string | undefined;
|
|
519
556
|
};
|
|
@@ -526,6 +563,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
526
563
|
columnName: {
|
|
527
564
|
type: "column";
|
|
528
565
|
value: string;
|
|
566
|
+
format?: string | undefined;
|
|
529
567
|
label?: string | undefined;
|
|
530
568
|
valueLabels?: string | undefined;
|
|
531
569
|
};
|
|
@@ -546,6 +584,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
546
584
|
columnName: {
|
|
547
585
|
type: "column";
|
|
548
586
|
value: string;
|
|
587
|
+
format?: string | undefined;
|
|
549
588
|
label?: string | undefined;
|
|
550
589
|
valueLabels?: string | undefined;
|
|
551
590
|
};
|
|
@@ -558,6 +597,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
558
597
|
columnName: {
|
|
559
598
|
type: "column";
|
|
560
599
|
value: string;
|
|
600
|
+
format?: string | undefined;
|
|
561
601
|
label?: string | undefined;
|
|
562
602
|
valueLabels?: string | undefined;
|
|
563
603
|
};
|
|
@@ -578,6 +618,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
578
618
|
columnName: {
|
|
579
619
|
type: "column";
|
|
580
620
|
value: string;
|
|
621
|
+
format?: string | undefined;
|
|
581
622
|
label?: string | undefined;
|
|
582
623
|
valueLabels?: string | undefined;
|
|
583
624
|
};
|
|
@@ -593,6 +634,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
593
634
|
columnName: {
|
|
594
635
|
type: "column";
|
|
595
636
|
value: string;
|
|
637
|
+
format?: string | undefined;
|
|
596
638
|
label?: string | undefined;
|
|
597
639
|
valueLabels?: string | undefined;
|
|
598
640
|
};
|
|
@@ -613,6 +655,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
613
655
|
columnName: {
|
|
614
656
|
type: "column";
|
|
615
657
|
value: string;
|
|
658
|
+
format?: string | undefined;
|
|
616
659
|
label?: string | undefined;
|
|
617
660
|
valueLabels?: string | undefined;
|
|
618
661
|
};
|
|
@@ -628,6 +671,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
628
671
|
columnName: {
|
|
629
672
|
type: "column";
|
|
630
673
|
value: string;
|
|
674
|
+
format?: string | undefined;
|
|
631
675
|
label?: string | undefined;
|
|
632
676
|
valueLabels?: string | undefined;
|
|
633
677
|
};
|
|
@@ -648,6 +692,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
648
692
|
columnName: {
|
|
649
693
|
type: "column";
|
|
650
694
|
value: string;
|
|
695
|
+
format?: string | undefined;
|
|
651
696
|
label?: string | undefined;
|
|
652
697
|
valueLabels?: string | undefined;
|
|
653
698
|
};
|
|
@@ -678,16 +723,19 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
678
723
|
columnName: z.ZodObject<{
|
|
679
724
|
type: z.ZodLiteral<"column">;
|
|
680
725
|
value: z.ZodString;
|
|
726
|
+
format: z.ZodOptional<z.ZodString>;
|
|
681
727
|
label: z.ZodOptional<z.ZodString>;
|
|
682
728
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
683
729
|
}, "strip", z.ZodTypeAny, {
|
|
684
730
|
type: "column";
|
|
685
731
|
value: string;
|
|
732
|
+
format?: string | undefined;
|
|
686
733
|
label?: string | undefined;
|
|
687
734
|
valueLabels?: string | undefined;
|
|
688
735
|
}, {
|
|
689
736
|
type: "column";
|
|
690
737
|
value: string;
|
|
738
|
+
format?: string | undefined;
|
|
691
739
|
label?: string | undefined;
|
|
692
740
|
valueLabels?: string | undefined;
|
|
693
741
|
}>;
|
|
@@ -698,6 +746,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
698
746
|
columnName: {
|
|
699
747
|
type: "column";
|
|
700
748
|
value: string;
|
|
749
|
+
format?: string | undefined;
|
|
701
750
|
label?: string | undefined;
|
|
702
751
|
valueLabels?: string | undefined;
|
|
703
752
|
};
|
|
@@ -708,6 +757,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
708
757
|
columnName: {
|
|
709
758
|
type: "column";
|
|
710
759
|
value: string;
|
|
760
|
+
format?: string | undefined;
|
|
711
761
|
label?: string | undefined;
|
|
712
762
|
valueLabels?: string | undefined;
|
|
713
763
|
};
|
|
@@ -723,6 +773,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
723
773
|
columnName: {
|
|
724
774
|
type: "column";
|
|
725
775
|
value: string;
|
|
776
|
+
format?: string | undefined;
|
|
726
777
|
label?: string | undefined;
|
|
727
778
|
valueLabels?: string | undefined;
|
|
728
779
|
};
|
|
@@ -742,6 +793,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
742
793
|
columnName: {
|
|
743
794
|
type: "column";
|
|
744
795
|
value: string;
|
|
796
|
+
format?: string | undefined;
|
|
745
797
|
label?: string | undefined;
|
|
746
798
|
valueLabels?: string | undefined;
|
|
747
799
|
};
|
|
@@ -764,6 +816,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
764
816
|
columnName: {
|
|
765
817
|
type: "column";
|
|
766
818
|
value: string;
|
|
819
|
+
format?: string | undefined;
|
|
767
820
|
label?: string | undefined;
|
|
768
821
|
valueLabels?: string | undefined;
|
|
769
822
|
};
|
|
@@ -787,6 +840,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
787
840
|
columnName: {
|
|
788
841
|
type: "column";
|
|
789
842
|
value: string;
|
|
843
|
+
format?: string | undefined;
|
|
790
844
|
label?: string | undefined;
|
|
791
845
|
valueLabels?: string | undefined;
|
|
792
846
|
};
|
|
@@ -814,11 +868,11 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
814
868
|
}, "strip", z.ZodTypeAny, {
|
|
815
869
|
name: string;
|
|
816
870
|
show?: boolean | undefined;
|
|
817
|
-
position?: "
|
|
871
|
+
position?: "left" | "center" | "right" | undefined;
|
|
818
872
|
}, {
|
|
819
873
|
name: string;
|
|
820
874
|
show?: boolean | undefined;
|
|
821
|
-
position?: "
|
|
875
|
+
position?: "left" | "center" | "right" | undefined;
|
|
822
876
|
}>;
|
|
823
877
|
size: z.ZodOptional<z.ZodObject<{
|
|
824
878
|
width: z.ZodOptional<z.ZodNumber>;
|
|
@@ -835,26 +889,29 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
835
889
|
position: z.ZodOptional<z.ZodEnum<["inside", "right", "top", "bottom"]>>;
|
|
836
890
|
}, "strip", z.ZodTypeAny, {
|
|
837
891
|
show?: boolean | undefined;
|
|
838
|
-
position?: "right" | "
|
|
892
|
+
position?: "right" | "inside" | "top" | "bottom" | undefined;
|
|
839
893
|
}, {
|
|
840
894
|
show?: boolean | undefined;
|
|
841
|
-
position?: "right" | "
|
|
895
|
+
position?: "right" | "inside" | "top" | "bottom" | undefined;
|
|
842
896
|
}>>;
|
|
843
897
|
tooltips: z.ZodOptional<z.ZodObject<{
|
|
844
898
|
show: z.ZodOptional<z.ZodBoolean>;
|
|
845
899
|
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
846
900
|
type: z.ZodLiteral<"column">;
|
|
847
901
|
value: z.ZodString;
|
|
902
|
+
format: z.ZodOptional<z.ZodString>;
|
|
848
903
|
label: z.ZodOptional<z.ZodString>;
|
|
849
904
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
850
905
|
}, "strip", z.ZodTypeAny, {
|
|
851
906
|
type: "column";
|
|
852
907
|
value: string;
|
|
908
|
+
format?: string | undefined;
|
|
853
909
|
label?: string | undefined;
|
|
854
910
|
valueLabels?: string | undefined;
|
|
855
911
|
}, {
|
|
856
912
|
type: "column";
|
|
857
913
|
value: string;
|
|
914
|
+
format?: string | undefined;
|
|
858
915
|
label?: string | undefined;
|
|
859
916
|
valueLabels?: string | undefined;
|
|
860
917
|
}>, "many">>;
|
|
@@ -863,6 +920,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
863
920
|
content?: {
|
|
864
921
|
type: "column";
|
|
865
922
|
value: string;
|
|
923
|
+
format?: string | undefined;
|
|
866
924
|
label?: string | undefined;
|
|
867
925
|
valueLabels?: string | undefined;
|
|
868
926
|
}[] | undefined;
|
|
@@ -871,6 +929,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
871
929
|
content?: {
|
|
872
930
|
type: "column";
|
|
873
931
|
value: string;
|
|
932
|
+
format?: string | undefined;
|
|
874
933
|
label?: string | undefined;
|
|
875
934
|
valueLabels?: string | undefined;
|
|
876
935
|
}[] | undefined;
|
|
@@ -885,48 +944,57 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
885
944
|
keyColumn: z.ZodOptional<z.ZodObject<{
|
|
886
945
|
type: z.ZodLiteral<"column">;
|
|
887
946
|
value: z.ZodString;
|
|
947
|
+
format: z.ZodOptional<z.ZodString>;
|
|
888
948
|
label: z.ZodOptional<z.ZodString>;
|
|
889
949
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
890
950
|
}, "strip", z.ZodTypeAny, {
|
|
891
951
|
type: "column";
|
|
892
952
|
value: string;
|
|
953
|
+
format?: string | undefined;
|
|
893
954
|
label?: string | undefined;
|
|
894
955
|
valueLabels?: string | undefined;
|
|
895
956
|
}, {
|
|
896
957
|
type: "column";
|
|
897
958
|
value: string;
|
|
959
|
+
format?: string | undefined;
|
|
898
960
|
label?: string | undefined;
|
|
899
961
|
valueLabels?: string | undefined;
|
|
900
962
|
}>>;
|
|
901
963
|
x: z.ZodObject<{
|
|
902
964
|
type: z.ZodLiteral<"column">;
|
|
903
965
|
value: z.ZodString;
|
|
966
|
+
format: z.ZodOptional<z.ZodString>;
|
|
904
967
|
label: z.ZodOptional<z.ZodString>;
|
|
905
968
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
906
969
|
}, "strip", z.ZodTypeAny, {
|
|
907
970
|
type: "column";
|
|
908
971
|
value: string;
|
|
972
|
+
format?: string | undefined;
|
|
909
973
|
label?: string | undefined;
|
|
910
974
|
valueLabels?: string | undefined;
|
|
911
975
|
}, {
|
|
912
976
|
type: "column";
|
|
913
977
|
value: string;
|
|
978
|
+
format?: string | undefined;
|
|
914
979
|
label?: string | undefined;
|
|
915
980
|
valueLabels?: string | undefined;
|
|
916
981
|
}>;
|
|
917
982
|
y: z.ZodObject<{
|
|
918
983
|
type: z.ZodLiteral<"column">;
|
|
919
984
|
value: z.ZodString;
|
|
985
|
+
format: z.ZodOptional<z.ZodString>;
|
|
920
986
|
label: z.ZodOptional<z.ZodString>;
|
|
921
987
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
922
988
|
}, "strip", z.ZodTypeAny, {
|
|
923
989
|
type: "column";
|
|
924
990
|
value: string;
|
|
991
|
+
format?: string | undefined;
|
|
925
992
|
label?: string | undefined;
|
|
926
993
|
valueLabels?: string | undefined;
|
|
927
994
|
}, {
|
|
928
995
|
type: "column";
|
|
929
996
|
value: string;
|
|
997
|
+
format?: string | undefined;
|
|
930
998
|
label?: string | undefined;
|
|
931
999
|
valueLabels?: string | undefined;
|
|
932
1000
|
}>;
|
|
@@ -934,16 +1002,19 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
934
1002
|
title: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
935
1003
|
type: z.ZodLiteral<"column">;
|
|
936
1004
|
value: z.ZodString;
|
|
1005
|
+
format: z.ZodOptional<z.ZodString>;
|
|
937
1006
|
label: z.ZodOptional<z.ZodString>;
|
|
938
1007
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
939
1008
|
}, "strip", z.ZodTypeAny, {
|
|
940
1009
|
type: "column";
|
|
941
1010
|
value: string;
|
|
1011
|
+
format?: string | undefined;
|
|
942
1012
|
label?: string | undefined;
|
|
943
1013
|
valueLabels?: string | undefined;
|
|
944
1014
|
}, {
|
|
945
1015
|
type: "column";
|
|
946
1016
|
value: string;
|
|
1017
|
+
format?: string | undefined;
|
|
947
1018
|
label?: string | undefined;
|
|
948
1019
|
valueLabels?: string | undefined;
|
|
949
1020
|
}>]>>;
|
|
@@ -962,6 +1033,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
962
1033
|
title?: string | {
|
|
963
1034
|
type: "column";
|
|
964
1035
|
value: string;
|
|
1036
|
+
format?: string | undefined;
|
|
965
1037
|
label?: string | undefined;
|
|
966
1038
|
valueLabels?: string | undefined;
|
|
967
1039
|
} | undefined;
|
|
@@ -980,6 +1052,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
980
1052
|
title?: string | {
|
|
981
1053
|
type: "column";
|
|
982
1054
|
value: string;
|
|
1055
|
+
format?: string | undefined;
|
|
983
1056
|
label?: string | undefined;
|
|
984
1057
|
valueLabels?: string | undefined;
|
|
985
1058
|
} | undefined;
|
|
@@ -999,16 +1072,19 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
999
1072
|
title: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
1000
1073
|
type: z.ZodLiteral<"column">;
|
|
1001
1074
|
value: z.ZodString;
|
|
1075
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1002
1076
|
label: z.ZodOptional<z.ZodString>;
|
|
1003
1077
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1004
1078
|
}, "strip", z.ZodTypeAny, {
|
|
1005
1079
|
type: "column";
|
|
1006
1080
|
value: string;
|
|
1081
|
+
format?: string | undefined;
|
|
1007
1082
|
label?: string | undefined;
|
|
1008
1083
|
valueLabels?: string | undefined;
|
|
1009
1084
|
}, {
|
|
1010
1085
|
type: "column";
|
|
1011
1086
|
value: string;
|
|
1087
|
+
format?: string | undefined;
|
|
1012
1088
|
label?: string | undefined;
|
|
1013
1089
|
valueLabels?: string | undefined;
|
|
1014
1090
|
}>]>>;
|
|
@@ -1027,6 +1103,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1027
1103
|
title?: string | {
|
|
1028
1104
|
type: "column";
|
|
1029
1105
|
value: string;
|
|
1106
|
+
format?: string | undefined;
|
|
1030
1107
|
label?: string | undefined;
|
|
1031
1108
|
valueLabels?: string | undefined;
|
|
1032
1109
|
} | undefined;
|
|
@@ -1045,6 +1122,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1045
1122
|
title?: string | {
|
|
1046
1123
|
type: "column";
|
|
1047
1124
|
value: string;
|
|
1125
|
+
format?: string | undefined;
|
|
1048
1126
|
label?: string | undefined;
|
|
1049
1127
|
valueLabels?: string | undefined;
|
|
1050
1128
|
} | undefined;
|
|
@@ -1061,78 +1139,129 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1061
1139
|
hiddenLabels?: boolean | undefined;
|
|
1062
1140
|
}>>;
|
|
1063
1141
|
grouping: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1142
|
+
columnName: z.ZodObject<{
|
|
1143
|
+
type: z.ZodLiteral<"column">;
|
|
1144
|
+
value: z.ZodString;
|
|
1145
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1146
|
+
label: z.ZodOptional<z.ZodString>;
|
|
1147
|
+
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1148
|
+
}, "strip", z.ZodTypeAny, {
|
|
1149
|
+
type: "column";
|
|
1150
|
+
value: string;
|
|
1151
|
+
format?: string | undefined;
|
|
1152
|
+
label?: string | undefined;
|
|
1153
|
+
valueLabels?: string | undefined;
|
|
1154
|
+
}, {
|
|
1155
|
+
type: "column";
|
|
1156
|
+
value: string;
|
|
1157
|
+
format?: string | undefined;
|
|
1158
|
+
label?: string | undefined;
|
|
1159
|
+
valueLabels?: string | undefined;
|
|
1160
|
+
}>;
|
|
1161
|
+
order: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodNull]>, "many">>;
|
|
1162
|
+
inheritedAes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1163
|
+
fillColor: z.ZodOptional<z.ZodString>;
|
|
1164
|
+
lineColor: z.ZodOptional<z.ZodString>;
|
|
1165
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
1166
|
+
lineShape: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
|
|
1167
|
+
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"]>>;
|
|
1168
|
+
dotSize: z.ZodOptional<z.ZodNumber>;
|
|
1169
|
+
dotFill: z.ZodOptional<z.ZodString>;
|
|
1170
|
+
}, "strip", z.ZodTypeAny, {
|
|
1171
|
+
dotFill?: string | undefined;
|
|
1172
|
+
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;
|
|
1173
|
+
dotSize?: number | undefined;
|
|
1174
|
+
lineWidth?: number | undefined;
|
|
1175
|
+
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1176
|
+
lineColor?: string | undefined;
|
|
1177
|
+
fillColor?: string | undefined;
|
|
1178
|
+
}, {
|
|
1179
|
+
dotFill?: string | undefined;
|
|
1180
|
+
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;
|
|
1181
|
+
dotSize?: number | undefined;
|
|
1182
|
+
lineWidth?: number | undefined;
|
|
1183
|
+
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1184
|
+
lineColor?: string | undefined;
|
|
1185
|
+
fillColor?: string | undefined;
|
|
1186
|
+
}>>>;
|
|
1187
|
+
allowNullGroup: z.ZodOptional<z.ZodBoolean>;
|
|
1068
1188
|
}, "strip", z.ZodTypeAny, {
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1189
|
+
columnName: {
|
|
1190
|
+
type: "column";
|
|
1191
|
+
value: string;
|
|
1192
|
+
format?: string | undefined;
|
|
1193
|
+
label?: string | undefined;
|
|
1194
|
+
valueLabels?: string | undefined;
|
|
1195
|
+
};
|
|
1196
|
+
order?: (string | number | null)[] | undefined;
|
|
1197
|
+
inheritedAes?: Record<string, {
|
|
1198
|
+
dotFill?: string | undefined;
|
|
1199
|
+
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;
|
|
1200
|
+
dotSize?: number | undefined;
|
|
1201
|
+
lineWidth?: number | undefined;
|
|
1202
|
+
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1203
|
+
lineColor?: string | undefined;
|
|
1204
|
+
fillColor?: string | undefined;
|
|
1205
|
+
}> | undefined;
|
|
1206
|
+
allowNullGroup?: boolean | undefined;
|
|
1073
1207
|
}, {
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1208
|
+
columnName: {
|
|
1209
|
+
type: "column";
|
|
1210
|
+
value: string;
|
|
1211
|
+
format?: string | undefined;
|
|
1212
|
+
label?: string | undefined;
|
|
1213
|
+
valueLabels?: string | undefined;
|
|
1214
|
+
};
|
|
1215
|
+
order?: (string | number | null)[] | undefined;
|
|
1216
|
+
inheritedAes?: Record<string, {
|
|
1217
|
+
dotFill?: string | undefined;
|
|
1218
|
+
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;
|
|
1219
|
+
dotSize?: number | undefined;
|
|
1220
|
+
lineWidth?: number | undefined;
|
|
1221
|
+
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1222
|
+
lineColor?: string | undefined;
|
|
1223
|
+
fillColor?: string | undefined;
|
|
1224
|
+
}> | undefined;
|
|
1225
|
+
allowNullGroup?: boolean | undefined;
|
|
1078
1226
|
}>, "many">>;
|
|
1079
1227
|
label: z.ZodOptional<z.ZodObject<{
|
|
1080
1228
|
type: z.ZodLiteral<"column">;
|
|
1081
1229
|
value: z.ZodString;
|
|
1230
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1082
1231
|
label: z.ZodOptional<z.ZodString>;
|
|
1083
1232
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1084
1233
|
}, "strip", z.ZodTypeAny, {
|
|
1085
1234
|
type: "column";
|
|
1086
1235
|
value: string;
|
|
1236
|
+
format?: string | undefined;
|
|
1087
1237
|
label?: string | undefined;
|
|
1088
1238
|
valueLabels?: string | undefined;
|
|
1089
1239
|
}, {
|
|
1090
1240
|
type: "column";
|
|
1091
1241
|
value: string;
|
|
1242
|
+
format?: string | undefined;
|
|
1092
1243
|
label?: string | undefined;
|
|
1093
1244
|
valueLabels?: string | undefined;
|
|
1094
1245
|
}>>;
|
|
1095
1246
|
highlight: z.ZodOptional<z.ZodObject<{
|
|
1096
1247
|
type: z.ZodLiteral<"column">;
|
|
1097
1248
|
value: z.ZodString;
|
|
1249
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1098
1250
|
label: z.ZodOptional<z.ZodString>;
|
|
1099
1251
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1100
1252
|
}, "strip", z.ZodTypeAny, {
|
|
1101
1253
|
type: "column";
|
|
1102
1254
|
value: string;
|
|
1255
|
+
format?: string | undefined;
|
|
1103
1256
|
label?: string | undefined;
|
|
1104
1257
|
valueLabels?: string | undefined;
|
|
1105
1258
|
}, {
|
|
1106
1259
|
type: "column";
|
|
1107
1260
|
value: string;
|
|
1261
|
+
format?: string | undefined;
|
|
1108
1262
|
label?: string | undefined;
|
|
1109
1263
|
valueLabels?: string | undefined;
|
|
1110
1264
|
}>>;
|
|
1111
|
-
inheritedAes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1112
|
-
fillColor: z.ZodOptional<z.ZodString>;
|
|
1113
|
-
lineColor: z.ZodOptional<z.ZodString>;
|
|
1114
|
-
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
1115
|
-
lineShape: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
|
|
1116
|
-
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"]>>;
|
|
1117
|
-
dotSize: z.ZodOptional<z.ZodNumber>;
|
|
1118
|
-
dotFill: z.ZodOptional<z.ZodString>;
|
|
1119
|
-
}, "strip", z.ZodTypeAny, {
|
|
1120
|
-
dotFill?: string | undefined;
|
|
1121
|
-
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;
|
|
1122
|
-
dotSize?: number | undefined;
|
|
1123
|
-
lineWidth?: number | undefined;
|
|
1124
|
-
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1125
|
-
lineColor?: string | undefined;
|
|
1126
|
-
fillColor?: string | undefined;
|
|
1127
|
-
}, {
|
|
1128
|
-
dotFill?: string | undefined;
|
|
1129
|
-
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;
|
|
1130
|
-
dotSize?: number | undefined;
|
|
1131
|
-
lineWidth?: number | undefined;
|
|
1132
|
-
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1133
|
-
lineColor?: string | undefined;
|
|
1134
|
-
fillColor?: string | undefined;
|
|
1135
|
-
}>>>>;
|
|
1136
1265
|
layers: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
1137
1266
|
type: z.ZodLiteral<"dots">;
|
|
1138
1267
|
aes: z.ZodOptional<z.ZodObject<{
|
|
@@ -1152,16 +1281,19 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1152
1281
|
columnName: z.ZodObject<{
|
|
1153
1282
|
type: z.ZodLiteral<"column">;
|
|
1154
1283
|
value: z.ZodString;
|
|
1284
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1155
1285
|
label: z.ZodOptional<z.ZodString>;
|
|
1156
1286
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1157
1287
|
}, "strip", z.ZodTypeAny, {
|
|
1158
1288
|
type: "column";
|
|
1159
1289
|
value: string;
|
|
1290
|
+
format?: string | undefined;
|
|
1160
1291
|
label?: string | undefined;
|
|
1161
1292
|
valueLabels?: string | undefined;
|
|
1162
1293
|
}, {
|
|
1163
1294
|
type: "column";
|
|
1164
1295
|
value: string;
|
|
1296
|
+
format?: string | undefined;
|
|
1165
1297
|
label?: string | undefined;
|
|
1166
1298
|
valueLabels?: string | undefined;
|
|
1167
1299
|
}>;
|
|
@@ -1172,6 +1304,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1172
1304
|
columnName: {
|
|
1173
1305
|
type: "column";
|
|
1174
1306
|
value: string;
|
|
1307
|
+
format?: string | undefined;
|
|
1175
1308
|
label?: string | undefined;
|
|
1176
1309
|
valueLabels?: string | undefined;
|
|
1177
1310
|
};
|
|
@@ -1182,6 +1315,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1182
1315
|
columnName: {
|
|
1183
1316
|
type: "column";
|
|
1184
1317
|
value: string;
|
|
1318
|
+
format?: string | undefined;
|
|
1185
1319
|
label?: string | undefined;
|
|
1186
1320
|
valueLabels?: string | undefined;
|
|
1187
1321
|
};
|
|
@@ -1206,16 +1340,19 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1206
1340
|
columnName: z.ZodObject<{
|
|
1207
1341
|
type: z.ZodLiteral<"column">;
|
|
1208
1342
|
value: z.ZodString;
|
|
1343
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1209
1344
|
label: z.ZodOptional<z.ZodString>;
|
|
1210
1345
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1211
1346
|
}, "strip", z.ZodTypeAny, {
|
|
1212
1347
|
type: "column";
|
|
1213
1348
|
value: string;
|
|
1349
|
+
format?: string | undefined;
|
|
1214
1350
|
label?: string | undefined;
|
|
1215
1351
|
valueLabels?: string | undefined;
|
|
1216
1352
|
}, {
|
|
1217
1353
|
type: "column";
|
|
1218
1354
|
value: string;
|
|
1355
|
+
format?: string | undefined;
|
|
1219
1356
|
label?: string | undefined;
|
|
1220
1357
|
valueLabels?: string | undefined;
|
|
1221
1358
|
}>;
|
|
@@ -1226,6 +1363,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1226
1363
|
columnName: {
|
|
1227
1364
|
type: "column";
|
|
1228
1365
|
value: string;
|
|
1366
|
+
format?: string | undefined;
|
|
1229
1367
|
label?: string | undefined;
|
|
1230
1368
|
valueLabels?: string | undefined;
|
|
1231
1369
|
};
|
|
@@ -1236,6 +1374,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1236
1374
|
columnName: {
|
|
1237
1375
|
type: "column";
|
|
1238
1376
|
value: string;
|
|
1377
|
+
format?: string | undefined;
|
|
1239
1378
|
label?: string | undefined;
|
|
1240
1379
|
valueLabels?: string | undefined;
|
|
1241
1380
|
};
|
|
@@ -1248,6 +1387,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1248
1387
|
columnName: {
|
|
1249
1388
|
type: "column";
|
|
1250
1389
|
value: string;
|
|
1390
|
+
format?: string | undefined;
|
|
1251
1391
|
label?: string | undefined;
|
|
1252
1392
|
valueLabels?: string | undefined;
|
|
1253
1393
|
};
|
|
@@ -1268,6 +1408,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1268
1408
|
columnName: {
|
|
1269
1409
|
type: "column";
|
|
1270
1410
|
value: string;
|
|
1411
|
+
format?: string | undefined;
|
|
1271
1412
|
label?: string | undefined;
|
|
1272
1413
|
valueLabels?: string | undefined;
|
|
1273
1414
|
};
|
|
@@ -1280,6 +1421,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1280
1421
|
columnName: {
|
|
1281
1422
|
type: "column";
|
|
1282
1423
|
value: string;
|
|
1424
|
+
format?: string | undefined;
|
|
1283
1425
|
label?: string | undefined;
|
|
1284
1426
|
valueLabels?: string | undefined;
|
|
1285
1427
|
};
|
|
@@ -1300,6 +1442,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1300
1442
|
columnName: {
|
|
1301
1443
|
type: "column";
|
|
1302
1444
|
value: string;
|
|
1445
|
+
format?: string | undefined;
|
|
1303
1446
|
label?: string | undefined;
|
|
1304
1447
|
valueLabels?: string | undefined;
|
|
1305
1448
|
};
|
|
@@ -1315,6 +1458,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1315
1458
|
columnName: {
|
|
1316
1459
|
type: "column";
|
|
1317
1460
|
value: string;
|
|
1461
|
+
format?: string | undefined;
|
|
1318
1462
|
label?: string | undefined;
|
|
1319
1463
|
valueLabels?: string | undefined;
|
|
1320
1464
|
};
|
|
@@ -1335,6 +1479,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1335
1479
|
columnName: {
|
|
1336
1480
|
type: "column";
|
|
1337
1481
|
value: string;
|
|
1482
|
+
format?: string | undefined;
|
|
1338
1483
|
label?: string | undefined;
|
|
1339
1484
|
valueLabels?: string | undefined;
|
|
1340
1485
|
};
|
|
@@ -1350,6 +1495,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1350
1495
|
columnName: {
|
|
1351
1496
|
type: "column";
|
|
1352
1497
|
value: string;
|
|
1498
|
+
format?: string | undefined;
|
|
1353
1499
|
label?: string | undefined;
|
|
1354
1500
|
valueLabels?: string | undefined;
|
|
1355
1501
|
};
|
|
@@ -1370,6 +1516,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1370
1516
|
columnName: {
|
|
1371
1517
|
type: "column";
|
|
1372
1518
|
value: string;
|
|
1519
|
+
format?: string | undefined;
|
|
1373
1520
|
label?: string | undefined;
|
|
1374
1521
|
valueLabels?: string | undefined;
|
|
1375
1522
|
};
|
|
@@ -1400,16 +1547,19 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1400
1547
|
columnName: z.ZodObject<{
|
|
1401
1548
|
type: z.ZodLiteral<"column">;
|
|
1402
1549
|
value: z.ZodString;
|
|
1550
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1403
1551
|
label: z.ZodOptional<z.ZodString>;
|
|
1404
1552
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1405
1553
|
}, "strip", z.ZodTypeAny, {
|
|
1406
1554
|
type: "column";
|
|
1407
1555
|
value: string;
|
|
1556
|
+
format?: string | undefined;
|
|
1408
1557
|
label?: string | undefined;
|
|
1409
1558
|
valueLabels?: string | undefined;
|
|
1410
1559
|
}, {
|
|
1411
1560
|
type: "column";
|
|
1412
1561
|
value: string;
|
|
1562
|
+
format?: string | undefined;
|
|
1413
1563
|
label?: string | undefined;
|
|
1414
1564
|
valueLabels?: string | undefined;
|
|
1415
1565
|
}>;
|
|
@@ -1420,6 +1570,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1420
1570
|
columnName: {
|
|
1421
1571
|
type: "column";
|
|
1422
1572
|
value: string;
|
|
1573
|
+
format?: string | undefined;
|
|
1423
1574
|
label?: string | undefined;
|
|
1424
1575
|
valueLabels?: string | undefined;
|
|
1425
1576
|
};
|
|
@@ -1430,6 +1581,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1430
1581
|
columnName: {
|
|
1431
1582
|
type: "column";
|
|
1432
1583
|
value: string;
|
|
1584
|
+
format?: string | undefined;
|
|
1433
1585
|
label?: string | undefined;
|
|
1434
1586
|
valueLabels?: string | undefined;
|
|
1435
1587
|
};
|
|
@@ -1445,6 +1597,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1445
1597
|
columnName: {
|
|
1446
1598
|
type: "column";
|
|
1447
1599
|
value: string;
|
|
1600
|
+
format?: string | undefined;
|
|
1448
1601
|
label?: string | undefined;
|
|
1449
1602
|
valueLabels?: string | undefined;
|
|
1450
1603
|
};
|
|
@@ -1464,6 +1617,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1464
1617
|
columnName: {
|
|
1465
1618
|
type: "column";
|
|
1466
1619
|
value: string;
|
|
1620
|
+
format?: string | undefined;
|
|
1467
1621
|
label?: string | undefined;
|
|
1468
1622
|
valueLabels?: string | undefined;
|
|
1469
1623
|
};
|
|
@@ -1486,6 +1640,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1486
1640
|
columnName: {
|
|
1487
1641
|
type: "column";
|
|
1488
1642
|
value: string;
|
|
1643
|
+
format?: string | undefined;
|
|
1489
1644
|
label?: string | undefined;
|
|
1490
1645
|
valueLabels?: string | undefined;
|
|
1491
1646
|
};
|
|
@@ -1509,6 +1664,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1509
1664
|
columnName: {
|
|
1510
1665
|
type: "column";
|
|
1511
1666
|
value: string;
|
|
1667
|
+
format?: string | undefined;
|
|
1512
1668
|
label?: string | undefined;
|
|
1513
1669
|
valueLabels?: string | undefined;
|
|
1514
1670
|
};
|
|
@@ -1529,17 +1685,19 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1529
1685
|
title: {
|
|
1530
1686
|
name: string;
|
|
1531
1687
|
show?: boolean | undefined;
|
|
1532
|
-
position?: "
|
|
1688
|
+
position?: "left" | "center" | "right" | undefined;
|
|
1533
1689
|
};
|
|
1534
1690
|
x: {
|
|
1535
1691
|
type: "column";
|
|
1536
1692
|
value: string;
|
|
1693
|
+
format?: string | undefined;
|
|
1537
1694
|
label?: string | undefined;
|
|
1538
1695
|
valueLabels?: string | undefined;
|
|
1539
1696
|
};
|
|
1540
1697
|
y: {
|
|
1541
1698
|
type: "column";
|
|
1542
1699
|
value: string;
|
|
1700
|
+
format?: string | undefined;
|
|
1543
1701
|
label?: string | undefined;
|
|
1544
1702
|
valueLabels?: string | undefined;
|
|
1545
1703
|
};
|
|
@@ -1550,6 +1708,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1550
1708
|
columnName: {
|
|
1551
1709
|
type: "column";
|
|
1552
1710
|
value: string;
|
|
1711
|
+
format?: string | undefined;
|
|
1553
1712
|
label?: string | undefined;
|
|
1554
1713
|
valueLabels?: string | undefined;
|
|
1555
1714
|
};
|
|
@@ -1570,6 +1729,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1570
1729
|
columnName: {
|
|
1571
1730
|
type: "column";
|
|
1572
1731
|
value: string;
|
|
1732
|
+
format?: string | undefined;
|
|
1573
1733
|
label?: string | undefined;
|
|
1574
1734
|
valueLabels?: string | undefined;
|
|
1575
1735
|
};
|
|
@@ -1587,6 +1747,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1587
1747
|
columnName: {
|
|
1588
1748
|
type: "column";
|
|
1589
1749
|
value: string;
|
|
1750
|
+
format?: string | undefined;
|
|
1590
1751
|
label?: string | undefined;
|
|
1591
1752
|
valueLabels?: string | undefined;
|
|
1592
1753
|
};
|
|
@@ -1609,24 +1770,40 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1609
1770
|
label?: {
|
|
1610
1771
|
type: "column";
|
|
1611
1772
|
value: string;
|
|
1773
|
+
format?: string | undefined;
|
|
1612
1774
|
label?: string | undefined;
|
|
1613
1775
|
valueLabels?: string | undefined;
|
|
1614
1776
|
} | undefined;
|
|
1615
1777
|
grouping?: {
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1778
|
+
columnName: {
|
|
1779
|
+
type: "column";
|
|
1780
|
+
value: string;
|
|
1781
|
+
format?: string | undefined;
|
|
1782
|
+
label?: string | undefined;
|
|
1783
|
+
valueLabels?: string | undefined;
|
|
1784
|
+
};
|
|
1785
|
+
order?: (string | number | null)[] | undefined;
|
|
1786
|
+
inheritedAes?: Record<string, {
|
|
1787
|
+
dotFill?: string | undefined;
|
|
1788
|
+
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;
|
|
1789
|
+
dotSize?: number | undefined;
|
|
1790
|
+
lineWidth?: number | undefined;
|
|
1791
|
+
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1792
|
+
lineColor?: string | undefined;
|
|
1793
|
+
fillColor?: string | undefined;
|
|
1794
|
+
}> | undefined;
|
|
1795
|
+
allowNullGroup?: boolean | undefined;
|
|
1620
1796
|
}[] | undefined;
|
|
1621
1797
|
legend?: {
|
|
1622
1798
|
show?: boolean | undefined;
|
|
1623
|
-
position?: "right" | "
|
|
1799
|
+
position?: "right" | "inside" | "top" | "bottom" | undefined;
|
|
1624
1800
|
} | undefined;
|
|
1625
1801
|
tooltips?: {
|
|
1626
1802
|
show?: boolean | undefined;
|
|
1627
1803
|
content?: {
|
|
1628
1804
|
type: "column";
|
|
1629
1805
|
value: string;
|
|
1806
|
+
format?: string | undefined;
|
|
1630
1807
|
label?: string | undefined;
|
|
1631
1808
|
valueLabels?: string | undefined;
|
|
1632
1809
|
}[] | undefined;
|
|
@@ -1637,6 +1814,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1637
1814
|
keyColumn?: {
|
|
1638
1815
|
type: "column";
|
|
1639
1816
|
value: string;
|
|
1817
|
+
format?: string | undefined;
|
|
1640
1818
|
label?: string | undefined;
|
|
1641
1819
|
valueLabels?: string | undefined;
|
|
1642
1820
|
} | undefined;
|
|
@@ -1644,6 +1822,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1644
1822
|
title?: string | {
|
|
1645
1823
|
type: "column";
|
|
1646
1824
|
value: string;
|
|
1825
|
+
format?: string | undefined;
|
|
1647
1826
|
label?: string | undefined;
|
|
1648
1827
|
valueLabels?: string | undefined;
|
|
1649
1828
|
} | undefined;
|
|
@@ -1663,6 +1842,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1663
1842
|
title?: string | {
|
|
1664
1843
|
type: "column";
|
|
1665
1844
|
value: string;
|
|
1845
|
+
format?: string | undefined;
|
|
1666
1846
|
label?: string | undefined;
|
|
1667
1847
|
valueLabels?: string | undefined;
|
|
1668
1848
|
} | undefined;
|
|
@@ -1681,34 +1861,28 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1681
1861
|
highlight?: {
|
|
1682
1862
|
type: "column";
|
|
1683
1863
|
value: string;
|
|
1864
|
+
format?: string | undefined;
|
|
1684
1865
|
label?: string | undefined;
|
|
1685
1866
|
valueLabels?: string | undefined;
|
|
1686
1867
|
} | undefined;
|
|
1687
|
-
inheritedAes?: Record<string, Record<string, {
|
|
1688
|
-
dotFill?: string | undefined;
|
|
1689
|
-
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;
|
|
1690
|
-
dotSize?: number | undefined;
|
|
1691
|
-
lineWidth?: number | undefined;
|
|
1692
|
-
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1693
|
-
lineColor?: string | undefined;
|
|
1694
|
-
fillColor?: string | undefined;
|
|
1695
|
-
}>> | undefined;
|
|
1696
1868
|
}, {
|
|
1697
1869
|
type: "scatterplot-umap";
|
|
1698
1870
|
title: {
|
|
1699
1871
|
name: string;
|
|
1700
1872
|
show?: boolean | undefined;
|
|
1701
|
-
position?: "
|
|
1873
|
+
position?: "left" | "center" | "right" | undefined;
|
|
1702
1874
|
};
|
|
1703
1875
|
x: {
|
|
1704
1876
|
type: "column";
|
|
1705
1877
|
value: string;
|
|
1878
|
+
format?: string | undefined;
|
|
1706
1879
|
label?: string | undefined;
|
|
1707
1880
|
valueLabels?: string | undefined;
|
|
1708
1881
|
};
|
|
1709
1882
|
y: {
|
|
1710
1883
|
type: "column";
|
|
1711
1884
|
value: string;
|
|
1885
|
+
format?: string | undefined;
|
|
1712
1886
|
label?: string | undefined;
|
|
1713
1887
|
valueLabels?: string | undefined;
|
|
1714
1888
|
};
|
|
@@ -1719,6 +1893,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1719
1893
|
columnName: {
|
|
1720
1894
|
type: "column";
|
|
1721
1895
|
value: string;
|
|
1896
|
+
format?: string | undefined;
|
|
1722
1897
|
label?: string | undefined;
|
|
1723
1898
|
valueLabels?: string | undefined;
|
|
1724
1899
|
};
|
|
@@ -1739,6 +1914,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1739
1914
|
columnName: {
|
|
1740
1915
|
type: "column";
|
|
1741
1916
|
value: string;
|
|
1917
|
+
format?: string | undefined;
|
|
1742
1918
|
label?: string | undefined;
|
|
1743
1919
|
valueLabels?: string | undefined;
|
|
1744
1920
|
};
|
|
@@ -1756,6 +1932,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1756
1932
|
columnName: {
|
|
1757
1933
|
type: "column";
|
|
1758
1934
|
value: string;
|
|
1935
|
+
format?: string | undefined;
|
|
1759
1936
|
label?: string | undefined;
|
|
1760
1937
|
valueLabels?: string | undefined;
|
|
1761
1938
|
};
|
|
@@ -1778,24 +1955,40 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1778
1955
|
label?: {
|
|
1779
1956
|
type: "column";
|
|
1780
1957
|
value: string;
|
|
1958
|
+
format?: string | undefined;
|
|
1781
1959
|
label?: string | undefined;
|
|
1782
1960
|
valueLabels?: string | undefined;
|
|
1783
1961
|
} | undefined;
|
|
1784
1962
|
grouping?: {
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1963
|
+
columnName: {
|
|
1964
|
+
type: "column";
|
|
1965
|
+
value: string;
|
|
1966
|
+
format?: string | undefined;
|
|
1967
|
+
label?: string | undefined;
|
|
1968
|
+
valueLabels?: string | undefined;
|
|
1969
|
+
};
|
|
1970
|
+
order?: (string | number | null)[] | undefined;
|
|
1971
|
+
inheritedAes?: Record<string, {
|
|
1972
|
+
dotFill?: string | undefined;
|
|
1973
|
+
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;
|
|
1974
|
+
dotSize?: number | undefined;
|
|
1975
|
+
lineWidth?: number | undefined;
|
|
1976
|
+
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1977
|
+
lineColor?: string | undefined;
|
|
1978
|
+
fillColor?: string | undefined;
|
|
1979
|
+
}> | undefined;
|
|
1980
|
+
allowNullGroup?: boolean | undefined;
|
|
1789
1981
|
}[] | undefined;
|
|
1790
1982
|
legend?: {
|
|
1791
1983
|
show?: boolean | undefined;
|
|
1792
|
-
position?: "right" | "
|
|
1984
|
+
position?: "right" | "inside" | "top" | "bottom" | undefined;
|
|
1793
1985
|
} | undefined;
|
|
1794
1986
|
tooltips?: {
|
|
1795
1987
|
show?: boolean | undefined;
|
|
1796
1988
|
content?: {
|
|
1797
1989
|
type: "column";
|
|
1798
1990
|
value: string;
|
|
1991
|
+
format?: string | undefined;
|
|
1799
1992
|
label?: string | undefined;
|
|
1800
1993
|
valueLabels?: string | undefined;
|
|
1801
1994
|
}[] | undefined;
|
|
@@ -1806,6 +1999,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1806
1999
|
keyColumn?: {
|
|
1807
2000
|
type: "column";
|
|
1808
2001
|
value: string;
|
|
2002
|
+
format?: string | undefined;
|
|
1809
2003
|
label?: string | undefined;
|
|
1810
2004
|
valueLabels?: string | undefined;
|
|
1811
2005
|
} | undefined;
|
|
@@ -1813,6 +2007,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1813
2007
|
title?: string | {
|
|
1814
2008
|
type: "column";
|
|
1815
2009
|
value: string;
|
|
2010
|
+
format?: string | undefined;
|
|
1816
2011
|
label?: string | undefined;
|
|
1817
2012
|
valueLabels?: string | undefined;
|
|
1818
2013
|
} | undefined;
|
|
@@ -1832,6 +2027,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1832
2027
|
title?: string | {
|
|
1833
2028
|
type: "column";
|
|
1834
2029
|
value: string;
|
|
2030
|
+
format?: string | undefined;
|
|
1835
2031
|
label?: string | undefined;
|
|
1836
2032
|
valueLabels?: string | undefined;
|
|
1837
2033
|
} | undefined;
|
|
@@ -1850,18 +2046,10 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1850
2046
|
highlight?: {
|
|
1851
2047
|
type: "column";
|
|
1852
2048
|
value: string;
|
|
2049
|
+
format?: string | undefined;
|
|
1853
2050
|
label?: string | undefined;
|
|
1854
2051
|
valueLabels?: string | undefined;
|
|
1855
2052
|
} | undefined;
|
|
1856
|
-
inheritedAes?: Record<string, Record<string, {
|
|
1857
|
-
dotFill?: string | undefined;
|
|
1858
|
-
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;
|
|
1859
|
-
dotSize?: number | undefined;
|
|
1860
|
-
lineWidth?: number | undefined;
|
|
1861
|
-
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1862
|
-
lineColor?: string | undefined;
|
|
1863
|
-
fillColor?: string | undefined;
|
|
1864
|
-
}>> | undefined;
|
|
1865
2053
|
}>;
|
|
1866
2054
|
export type ScatterplotUmapSettings = z.infer<typeof ScatterplotUmapSettingsSchema>;
|
|
1867
2055
|
export type ScatterplotUmapLegendInfo = ScatterplotLegendInfo;
|