@milaboratories/miplots4 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/MiPlots.d.ts.map +1 -1
- package/dist/MiPlots.js +16 -14
- package/dist/MiPlots.js.map +1 -1
- package/dist/common/ContinuousAxis.d.ts +3 -1
- package/dist/common/ContinuousAxis.d.ts.map +1 -1
- package/dist/common/ContinuousAxis.js +8 -8
- package/dist/common/ContinuousAxis.js.map +1 -1
- package/dist/common/Legend.d.ts +12 -1
- package/dist/common/Legend.d.ts.map +1 -1
- package/dist/common/Legend.js +14 -6
- package/dist/common/Legend.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/selection/ChartRenderer.d.ts +90 -0
- package/dist/selection/ChartRenderer.d.ts.map +1 -0
- package/dist/selection/ChartRenderer.js +254 -0
- package/dist/selection/ChartRenderer.js.map +1 -0
- package/dist/selection/SelectionSettingsImpl.d.ts +53 -0
- package/dist/selection/SelectionSettingsImpl.d.ts.map +1 -0
- package/dist/selection/SelectionSettingsImpl.js +47 -0
- package/dist/selection/SelectionSettingsImpl.js.map +1 -0
- package/dist/selection/components/Chart/Bars/GroupSelectedBars.d.ts +8 -0
- package/dist/selection/components/Chart/Bars/GroupSelectedBars.d.ts.map +1 -0
- package/dist/selection/components/Chart/Bars/GroupSelectedBars.js +57 -0
- package/dist/selection/components/Chart/Bars/GroupSelectedBars.js.map +1 -0
- package/dist/selection/components/Chart/Bars/StackedBars.d.ts +12 -0
- package/dist/selection/components/Chart/Bars/StackedBars.d.ts.map +1 -0
- package/dist/selection/components/Chart/Bars/StackedBars.js +58 -0
- package/dist/selection/components/Chart/Bars/StackedBars.js.map +1 -0
- package/dist/selection/components/Chart/Bars/UngroupedBars.d.ts +6 -0
- package/dist/selection/components/Chart/Bars/UngroupedBars.d.ts.map +1 -0
- package/dist/selection/components/Chart/Bars/UngroupedBars.js +38 -0
- package/dist/selection/components/Chart/Bars/UngroupedBars.js.map +1 -0
- package/dist/selection/components/Chart/Bars.d.ts +10 -0
- package/dist/selection/components/Chart/Bars.d.ts.map +1 -0
- package/dist/selection/components/Chart/Bars.js +48 -0
- package/dist/selection/components/Chart/Bars.js.map +1 -0
- package/dist/selection/components/Chart/ChartAxes.d.ts +7 -0
- package/dist/selection/components/Chart/ChartAxes.d.ts.map +1 -0
- package/dist/selection/components/Chart/ChartAxes.js +51 -0
- package/dist/selection/components/Chart/ChartAxes.js.map +1 -0
- package/dist/selection/components/Chart/ChartFrame.d.ts +9 -0
- package/dist/selection/components/Chart/ChartFrame.d.ts.map +1 -0
- package/dist/selection/components/Chart/ChartFrame.js +41 -0
- package/dist/selection/components/Chart/ChartFrame.js.map +1 -0
- package/dist/selection/components/Chart/Dividers.d.ts +8 -0
- package/dist/selection/components/Chart/Dividers.d.ts.map +1 -0
- package/dist/selection/components/Chart/Dividers.js +27 -0
- package/dist/selection/components/Chart/Dividers.js.map +1 -0
- package/dist/selection/components/Chart/Gridlines.d.ts +10 -0
- package/dist/selection/components/Chart/Gridlines.d.ts.map +1 -0
- package/dist/selection/components/Chart/Gridlines.js +32 -0
- package/dist/selection/components/Chart/Gridlines.js.map +1 -0
- package/dist/selection/components/Chart/Ribbons/GroupFlowRibbon.d.ts +9 -0
- package/dist/selection/components/Chart/Ribbons/GroupFlowRibbon.d.ts.map +1 -0
- package/dist/selection/components/Chart/Ribbons/GroupFlowRibbon.js +36 -0
- package/dist/selection/components/Chart/Ribbons/GroupFlowRibbon.js.map +1 -0
- package/dist/selection/components/Chart/Ribbons/MultiGroupRibbon.d.ts +6 -0
- package/dist/selection/components/Chart/Ribbons/MultiGroupRibbon.d.ts.map +1 -0
- package/dist/selection/components/Chart/Ribbons/MultiGroupRibbon.js +22 -0
- package/dist/selection/components/Chart/Ribbons/MultiGroupRibbon.js.map +1 -0
- package/dist/selection/components/Chart/Ribbons/SimpleRibbon.d.ts +10 -0
- package/dist/selection/components/Chart/Ribbons/SimpleRibbon.d.ts.map +1 -0
- package/dist/selection/components/Chart/Ribbons/SimpleRibbon.js +33 -0
- package/dist/selection/components/Chart/Ribbons/SimpleRibbon.js.map +1 -0
- package/dist/selection/components/Chart/Ribbons/StackedGroupFlowRibbon.d.ts +10 -0
- package/dist/selection/components/Chart/Ribbons/StackedGroupFlowRibbon.d.ts.map +1 -0
- package/dist/selection/components/Chart/Ribbons/StackedGroupFlowRibbon.js +65 -0
- package/dist/selection/components/Chart/Ribbons/StackedGroupFlowRibbon.js.map +1 -0
- package/dist/selection/components/Chart/Ribbons/ribbonPath.d.ts +10 -0
- package/dist/selection/components/Chart/Ribbons/ribbonPath.d.ts.map +1 -0
- package/dist/selection/components/Chart/Ribbons/ribbonPath.js +13 -0
- package/dist/selection/components/Chart/Ribbons/ribbonPath.js.map +1 -0
- package/dist/selection/components/Chart/Ribbons.d.ts +9 -0
- package/dist/selection/components/Chart/Ribbons.d.ts.map +1 -0
- package/dist/selection/components/Chart/Ribbons.js +58 -0
- package/dist/selection/components/Chart/Ribbons.js.map +1 -0
- package/dist/selection/components/Chart/StageCounts.d.ts +7 -0
- package/dist/selection/components/Chart/StageCounts.d.ts.map +1 -0
- package/dist/selection/components/Chart/StageCounts.js +20 -0
- package/dist/selection/components/Chart/StageCounts.js.map +1 -0
- package/dist/selection/components/Chart/types.d.ts +132 -0
- package/dist/selection/components/Chart/types.d.ts.map +1 -0
- package/dist/selection/components/Chart.d.ts +22 -0
- package/dist/selection/components/Chart.d.ts.map +1 -0
- package/dist/selection/components/Chart.js +97 -0
- package/dist/selection/components/Chart.js.map +1 -0
- package/dist/selection/components/ChartsGroup.d.ts +18 -0
- package/dist/selection/components/ChartsGroup.d.ts.map +1 -0
- package/dist/selection/components/ChartsGroup.js +181 -0
- package/dist/selection/components/ChartsGroup.js.map +1 -0
- package/dist/selection/components/FacetCell.d.ts +22 -0
- package/dist/selection/components/FacetCell.d.ts.map +1 -0
- package/dist/selection/components/FacetCell.js +18 -0
- package/dist/selection/components/FacetCell.js.map +1 -0
- package/dist/selection/components/types.d.ts +58 -0
- package/dist/selection/components/types.d.ts.map +1 -0
- package/dist/selection/constants.d.ts +25 -0
- package/dist/selection/constants.d.ts.map +1 -0
- package/dist/selection/constants.js +4 -0
- package/dist/selection/constants.js.map +1 -0
- package/dist/selection/createSelectionData.d.ts +50 -0
- package/dist/selection/createSelectionData.d.ts.map +1 -0
- package/dist/selection/createSelectionData.js +92 -0
- package/dist/selection/createSelectionData.js.map +1 -0
- package/dist/selection/index.d.ts +26 -0
- package/dist/selection/index.d.ts.map +1 -0
- package/dist/selection/index.js +96 -0
- package/dist/selection/index.js.map +1 -0
- package/dist/selection/utils.d.ts +4 -0
- package/dist/selection/utils.d.ts.map +1 -0
- package/dist/selection/utils.js +13 -0
- package/dist/selection/utils.js.map +1 -0
- package/dist/types/bubble.d.ts +42 -0
- package/dist/types/bubble.d.ts.map +1 -1
- package/dist/types/common.d.ts +38 -0
- package/dist/types/common.d.ts.map +1 -1
- package/dist/types/common.js +1 -0
- package/dist/types/common.js.map +1 -1
- package/dist/types/dendro.d.ts +103 -0
- package/dist/types/dendro.d.ts.map +1 -1
- package/dist/types/discrete.d.ts +167 -0
- package/dist/types/discrete.d.ts.map +1 -1
- package/dist/types/heatmap.d.ts +159 -0
- package/dist/types/heatmap.d.ts.map +1 -1
- package/dist/types/histogram.d.ts +22 -0
- package/dist/types/histogram.d.ts.map +1 -1
- package/dist/types/index.d.ts +3 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +1 -0
- package/dist/types/scatterplot-umap.d.ts +188 -0
- package/dist/types/scatterplot-umap.d.ts.map +1 -1
- package/dist/types/scatterplot.d.ts +270 -0
- package/dist/types/scatterplot.d.ts.map +1 -1
- package/dist/types/selection.d.ts +452 -0
- package/dist/types/selection.d.ts.map +1 -0
- package/dist/types/selection.js +53 -0
- package/dist/types/selection.js.map +1 -0
- package/package.json +2 -2
|
@@ -40,6 +40,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
40
40
|
format: z.ZodOptional<z.ZodString>;
|
|
41
41
|
label: z.ZodOptional<z.ZodString>;
|
|
42
42
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
43
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
43
44
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
44
45
|
}, "strip", z.ZodTypeAny, {
|
|
45
46
|
type: "column";
|
|
@@ -47,6 +48,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
47
48
|
format?: string | undefined;
|
|
48
49
|
label?: string | undefined;
|
|
49
50
|
valueLabels?: string | undefined;
|
|
51
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
50
52
|
nullValueLabel?: string | undefined;
|
|
51
53
|
}, {
|
|
52
54
|
type: "column";
|
|
@@ -54,6 +56,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
54
56
|
format?: string | undefined;
|
|
55
57
|
label?: string | undefined;
|
|
56
58
|
valueLabels?: string | undefined;
|
|
59
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
57
60
|
nullValueLabel?: string | undefined;
|
|
58
61
|
}>;
|
|
59
62
|
domain: z.ZodArray<z.ZodNumber, "many">;
|
|
@@ -66,6 +69,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
66
69
|
format?: string | undefined;
|
|
67
70
|
label?: string | undefined;
|
|
68
71
|
valueLabels?: string | undefined;
|
|
72
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
69
73
|
nullValueLabel?: string | undefined;
|
|
70
74
|
};
|
|
71
75
|
domain: number[];
|
|
@@ -78,6 +82,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
78
82
|
format?: string | undefined;
|
|
79
83
|
label?: string | undefined;
|
|
80
84
|
valueLabels?: string | undefined;
|
|
85
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
81
86
|
nullValueLabel?: string | undefined;
|
|
82
87
|
};
|
|
83
88
|
domain: number[];
|
|
@@ -104,6 +109,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
104
109
|
format: z.ZodOptional<z.ZodString>;
|
|
105
110
|
label: z.ZodOptional<z.ZodString>;
|
|
106
111
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
112
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
107
113
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
108
114
|
}, "strip", z.ZodTypeAny, {
|
|
109
115
|
type: "column";
|
|
@@ -111,6 +117,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
111
117
|
format?: string | undefined;
|
|
112
118
|
label?: string | undefined;
|
|
113
119
|
valueLabels?: string | undefined;
|
|
120
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
114
121
|
nullValueLabel?: string | undefined;
|
|
115
122
|
}, {
|
|
116
123
|
type: "column";
|
|
@@ -118,6 +125,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
118
125
|
format?: string | undefined;
|
|
119
126
|
label?: string | undefined;
|
|
120
127
|
valueLabels?: string | undefined;
|
|
128
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
121
129
|
nullValueLabel?: string | undefined;
|
|
122
130
|
}>;
|
|
123
131
|
domain: z.ZodArray<z.ZodNumber, "many">;
|
|
@@ -130,6 +138,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
130
138
|
format?: string | undefined;
|
|
131
139
|
label?: string | undefined;
|
|
132
140
|
valueLabels?: string | undefined;
|
|
141
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
133
142
|
nullValueLabel?: string | undefined;
|
|
134
143
|
};
|
|
135
144
|
domain: number[];
|
|
@@ -142,6 +151,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
142
151
|
format?: string | undefined;
|
|
143
152
|
label?: string | undefined;
|
|
144
153
|
valueLabels?: string | undefined;
|
|
154
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
145
155
|
nullValueLabel?: string | undefined;
|
|
146
156
|
};
|
|
147
157
|
domain: number[];
|
|
@@ -160,6 +170,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
160
170
|
format?: string | undefined;
|
|
161
171
|
label?: string | undefined;
|
|
162
172
|
valueLabels?: string | undefined;
|
|
173
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
163
174
|
nullValueLabel?: string | undefined;
|
|
164
175
|
};
|
|
165
176
|
domain: number[];
|
|
@@ -178,6 +189,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
178
189
|
format?: string | undefined;
|
|
179
190
|
label?: string | undefined;
|
|
180
191
|
valueLabels?: string | undefined;
|
|
192
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
181
193
|
nullValueLabel?: string | undefined;
|
|
182
194
|
};
|
|
183
195
|
domain: number[];
|
|
@@ -196,6 +208,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
196
208
|
format?: string | undefined;
|
|
197
209
|
label?: string | undefined;
|
|
198
210
|
valueLabels?: string | undefined;
|
|
211
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
199
212
|
nullValueLabel?: string | undefined;
|
|
200
213
|
};
|
|
201
214
|
domain: number[];
|
|
@@ -214,6 +227,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
214
227
|
format?: string | undefined;
|
|
215
228
|
label?: string | undefined;
|
|
216
229
|
valueLabels?: string | undefined;
|
|
230
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
217
231
|
nullValueLabel?: string | undefined;
|
|
218
232
|
};
|
|
219
233
|
domain: number[];
|
|
@@ -235,6 +249,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
235
249
|
format?: string | undefined;
|
|
236
250
|
label?: string | undefined;
|
|
237
251
|
valueLabels?: string | undefined;
|
|
252
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
238
253
|
nullValueLabel?: string | undefined;
|
|
239
254
|
};
|
|
240
255
|
domain: number[];
|
|
@@ -253,6 +268,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
253
268
|
format?: string | undefined;
|
|
254
269
|
label?: string | undefined;
|
|
255
270
|
valueLabels?: string | undefined;
|
|
271
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
256
272
|
nullValueLabel?: string | undefined;
|
|
257
273
|
};
|
|
258
274
|
domain: number[];
|
|
@@ -274,6 +290,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
274
290
|
format?: string | undefined;
|
|
275
291
|
label?: string | undefined;
|
|
276
292
|
valueLabels?: string | undefined;
|
|
293
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
277
294
|
nullValueLabel?: string | undefined;
|
|
278
295
|
};
|
|
279
296
|
domain: number[];
|
|
@@ -292,6 +309,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
292
309
|
format?: string | undefined;
|
|
293
310
|
label?: string | undefined;
|
|
294
311
|
valueLabels?: string | undefined;
|
|
312
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
295
313
|
nullValueLabel?: string | undefined;
|
|
296
314
|
};
|
|
297
315
|
domain: number[];
|
|
@@ -325,6 +343,7 @@ declare const CurveLayerSchema: z.ZodObject<{
|
|
|
325
343
|
format: z.ZodOptional<z.ZodString>;
|
|
326
344
|
label: z.ZodOptional<z.ZodString>;
|
|
327
345
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
346
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
328
347
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
329
348
|
}, "strip", z.ZodTypeAny, {
|
|
330
349
|
type: "column";
|
|
@@ -332,6 +351,7 @@ declare const CurveLayerSchema: z.ZodObject<{
|
|
|
332
351
|
format?: string | undefined;
|
|
333
352
|
label?: string | undefined;
|
|
334
353
|
valueLabels?: string | undefined;
|
|
354
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
335
355
|
nullValueLabel?: string | undefined;
|
|
336
356
|
}, {
|
|
337
357
|
type: "column";
|
|
@@ -339,6 +359,7 @@ declare const CurveLayerSchema: z.ZodObject<{
|
|
|
339
359
|
format?: string | undefined;
|
|
340
360
|
label?: string | undefined;
|
|
341
361
|
valueLabels?: string | undefined;
|
|
362
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
342
363
|
nullValueLabel?: string | undefined;
|
|
343
364
|
}>;
|
|
344
365
|
domain: z.ZodArray<z.ZodNumber, "many">;
|
|
@@ -351,6 +372,7 @@ declare const CurveLayerSchema: z.ZodObject<{
|
|
|
351
372
|
format?: string | undefined;
|
|
352
373
|
label?: string | undefined;
|
|
353
374
|
valueLabels?: string | undefined;
|
|
375
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
354
376
|
nullValueLabel?: string | undefined;
|
|
355
377
|
};
|
|
356
378
|
domain: number[];
|
|
@@ -363,6 +385,7 @@ declare const CurveLayerSchema: z.ZodObject<{
|
|
|
363
385
|
format?: string | undefined;
|
|
364
386
|
label?: string | undefined;
|
|
365
387
|
valueLabels?: string | undefined;
|
|
388
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
366
389
|
nullValueLabel?: string | undefined;
|
|
367
390
|
};
|
|
368
391
|
domain: number[];
|
|
@@ -384,6 +407,7 @@ declare const CurveLayerSchema: z.ZodObject<{
|
|
|
384
407
|
format?: string | undefined;
|
|
385
408
|
label?: string | undefined;
|
|
386
409
|
valueLabels?: string | undefined;
|
|
410
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
387
411
|
nullValueLabel?: string | undefined;
|
|
388
412
|
};
|
|
389
413
|
domain: number[];
|
|
@@ -405,6 +429,7 @@ declare const CurveLayerSchema: z.ZodObject<{
|
|
|
405
429
|
format?: string | undefined;
|
|
406
430
|
label?: string | undefined;
|
|
407
431
|
valueLabels?: string | undefined;
|
|
432
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
408
433
|
nullValueLabel?: string | undefined;
|
|
409
434
|
};
|
|
410
435
|
domain: number[];
|
|
@@ -429,6 +454,7 @@ declare const CurveLayerSchema: z.ZodObject<{
|
|
|
429
454
|
format?: string | undefined;
|
|
430
455
|
label?: string | undefined;
|
|
431
456
|
valueLabels?: string | undefined;
|
|
457
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
432
458
|
nullValueLabel?: string | undefined;
|
|
433
459
|
};
|
|
434
460
|
domain: number[];
|
|
@@ -454,6 +480,7 @@ declare const CurveLayerSchema: z.ZodObject<{
|
|
|
454
480
|
format?: string | undefined;
|
|
455
481
|
label?: string | undefined;
|
|
456
482
|
valueLabels?: string | undefined;
|
|
483
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
457
484
|
nullValueLabel?: string | undefined;
|
|
458
485
|
};
|
|
459
486
|
domain: number[];
|
|
@@ -486,6 +513,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
486
513
|
format: z.ZodOptional<z.ZodString>;
|
|
487
514
|
label: z.ZodOptional<z.ZodString>;
|
|
488
515
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
516
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
489
517
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
490
518
|
}, "strip", z.ZodTypeAny, {
|
|
491
519
|
type: "column";
|
|
@@ -493,6 +521,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
493
521
|
format?: string | undefined;
|
|
494
522
|
label?: string | undefined;
|
|
495
523
|
valueLabels?: string | undefined;
|
|
524
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
496
525
|
nullValueLabel?: string | undefined;
|
|
497
526
|
}, {
|
|
498
527
|
type: "column";
|
|
@@ -500,6 +529,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
500
529
|
format?: string | undefined;
|
|
501
530
|
label?: string | undefined;
|
|
502
531
|
valueLabels?: string | undefined;
|
|
532
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
503
533
|
nullValueLabel?: string | undefined;
|
|
504
534
|
}>;
|
|
505
535
|
domain: z.ZodArray<z.ZodNumber, "many">;
|
|
@@ -512,6 +542,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
512
542
|
format?: string | undefined;
|
|
513
543
|
label?: string | undefined;
|
|
514
544
|
valueLabels?: string | undefined;
|
|
545
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
515
546
|
nullValueLabel?: string | undefined;
|
|
516
547
|
};
|
|
517
548
|
domain: number[];
|
|
@@ -524,6 +555,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
524
555
|
format?: string | undefined;
|
|
525
556
|
label?: string | undefined;
|
|
526
557
|
valueLabels?: string | undefined;
|
|
558
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
527
559
|
nullValueLabel?: string | undefined;
|
|
528
560
|
};
|
|
529
561
|
domain: number[];
|
|
@@ -550,6 +582,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
550
582
|
format: z.ZodOptional<z.ZodString>;
|
|
551
583
|
label: z.ZodOptional<z.ZodString>;
|
|
552
584
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
585
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
553
586
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
554
587
|
}, "strip", z.ZodTypeAny, {
|
|
555
588
|
type: "column";
|
|
@@ -557,6 +590,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
557
590
|
format?: string | undefined;
|
|
558
591
|
label?: string | undefined;
|
|
559
592
|
valueLabels?: string | undefined;
|
|
593
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
560
594
|
nullValueLabel?: string | undefined;
|
|
561
595
|
}, {
|
|
562
596
|
type: "column";
|
|
@@ -564,6 +598,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
564
598
|
format?: string | undefined;
|
|
565
599
|
label?: string | undefined;
|
|
566
600
|
valueLabels?: string | undefined;
|
|
601
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
567
602
|
nullValueLabel?: string | undefined;
|
|
568
603
|
}>;
|
|
569
604
|
domain: z.ZodArray<z.ZodNumber, "many">;
|
|
@@ -576,6 +611,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
576
611
|
format?: string | undefined;
|
|
577
612
|
label?: string | undefined;
|
|
578
613
|
valueLabels?: string | undefined;
|
|
614
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
579
615
|
nullValueLabel?: string | undefined;
|
|
580
616
|
};
|
|
581
617
|
domain: number[];
|
|
@@ -588,6 +624,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
588
624
|
format?: string | undefined;
|
|
589
625
|
label?: string | undefined;
|
|
590
626
|
valueLabels?: string | undefined;
|
|
627
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
591
628
|
nullValueLabel?: string | undefined;
|
|
592
629
|
};
|
|
593
630
|
domain: number[];
|
|
@@ -606,6 +643,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
606
643
|
format?: string | undefined;
|
|
607
644
|
label?: string | undefined;
|
|
608
645
|
valueLabels?: string | undefined;
|
|
646
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
609
647
|
nullValueLabel?: string | undefined;
|
|
610
648
|
};
|
|
611
649
|
domain: number[];
|
|
@@ -624,6 +662,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
624
662
|
format?: string | undefined;
|
|
625
663
|
label?: string | undefined;
|
|
626
664
|
valueLabels?: string | undefined;
|
|
665
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
627
666
|
nullValueLabel?: string | undefined;
|
|
628
667
|
};
|
|
629
668
|
domain: number[];
|
|
@@ -642,6 +681,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
642
681
|
format?: string | undefined;
|
|
643
682
|
label?: string | undefined;
|
|
644
683
|
valueLabels?: string | undefined;
|
|
684
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
645
685
|
nullValueLabel?: string | undefined;
|
|
646
686
|
};
|
|
647
687
|
domain: number[];
|
|
@@ -660,6 +700,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
660
700
|
format?: string | undefined;
|
|
661
701
|
label?: string | undefined;
|
|
662
702
|
valueLabels?: string | undefined;
|
|
703
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
663
704
|
nullValueLabel?: string | undefined;
|
|
664
705
|
};
|
|
665
706
|
domain: number[];
|
|
@@ -681,6 +722,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
681
722
|
format?: string | undefined;
|
|
682
723
|
label?: string | undefined;
|
|
683
724
|
valueLabels?: string | undefined;
|
|
725
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
684
726
|
nullValueLabel?: string | undefined;
|
|
685
727
|
};
|
|
686
728
|
domain: number[];
|
|
@@ -699,6 +741,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
699
741
|
format?: string | undefined;
|
|
700
742
|
label?: string | undefined;
|
|
701
743
|
valueLabels?: string | undefined;
|
|
744
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
702
745
|
nullValueLabel?: string | undefined;
|
|
703
746
|
};
|
|
704
747
|
domain: number[];
|
|
@@ -720,6 +763,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
720
763
|
format?: string | undefined;
|
|
721
764
|
label?: string | undefined;
|
|
722
765
|
valueLabels?: string | undefined;
|
|
766
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
723
767
|
nullValueLabel?: string | undefined;
|
|
724
768
|
};
|
|
725
769
|
domain: number[];
|
|
@@ -738,6 +782,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
738
782
|
format?: string | undefined;
|
|
739
783
|
label?: string | undefined;
|
|
740
784
|
valueLabels?: string | undefined;
|
|
785
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
741
786
|
nullValueLabel?: string | undefined;
|
|
742
787
|
};
|
|
743
788
|
domain: number[];
|
|
@@ -770,6 +815,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
770
815
|
format: z.ZodOptional<z.ZodString>;
|
|
771
816
|
label: z.ZodOptional<z.ZodString>;
|
|
772
817
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
818
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
773
819
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
774
820
|
}, "strip", z.ZodTypeAny, {
|
|
775
821
|
type: "column";
|
|
@@ -777,6 +823,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
777
823
|
format?: string | undefined;
|
|
778
824
|
label?: string | undefined;
|
|
779
825
|
valueLabels?: string | undefined;
|
|
826
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
780
827
|
nullValueLabel?: string | undefined;
|
|
781
828
|
}, {
|
|
782
829
|
type: "column";
|
|
@@ -784,6 +831,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
784
831
|
format?: string | undefined;
|
|
785
832
|
label?: string | undefined;
|
|
786
833
|
valueLabels?: string | undefined;
|
|
834
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
787
835
|
nullValueLabel?: string | undefined;
|
|
788
836
|
}>;
|
|
789
837
|
domain: z.ZodArray<z.ZodNumber, "many">;
|
|
@@ -796,6 +844,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
796
844
|
format?: string | undefined;
|
|
797
845
|
label?: string | undefined;
|
|
798
846
|
valueLabels?: string | undefined;
|
|
847
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
799
848
|
nullValueLabel?: string | undefined;
|
|
800
849
|
};
|
|
801
850
|
domain: number[];
|
|
@@ -808,6 +857,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
808
857
|
format?: string | undefined;
|
|
809
858
|
label?: string | undefined;
|
|
810
859
|
valueLabels?: string | undefined;
|
|
860
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
811
861
|
nullValueLabel?: string | undefined;
|
|
812
862
|
};
|
|
813
863
|
domain: number[];
|
|
@@ -829,6 +879,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
829
879
|
format?: string | undefined;
|
|
830
880
|
label?: string | undefined;
|
|
831
881
|
valueLabels?: string | undefined;
|
|
882
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
832
883
|
nullValueLabel?: string | undefined;
|
|
833
884
|
};
|
|
834
885
|
domain: number[];
|
|
@@ -850,6 +901,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
850
901
|
format?: string | undefined;
|
|
851
902
|
label?: string | undefined;
|
|
852
903
|
valueLabels?: string | undefined;
|
|
904
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
853
905
|
nullValueLabel?: string | undefined;
|
|
854
906
|
};
|
|
855
907
|
domain: number[];
|
|
@@ -874,6 +926,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
874
926
|
format?: string | undefined;
|
|
875
927
|
label?: string | undefined;
|
|
876
928
|
valueLabels?: string | undefined;
|
|
929
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
877
930
|
nullValueLabel?: string | undefined;
|
|
878
931
|
};
|
|
879
932
|
domain: number[];
|
|
@@ -899,6 +952,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
899
952
|
format?: string | undefined;
|
|
900
953
|
label?: string | undefined;
|
|
901
954
|
valueLabels?: string | undefined;
|
|
955
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
902
956
|
nullValueLabel?: string | undefined;
|
|
903
957
|
};
|
|
904
958
|
domain: number[];
|
|
@@ -932,6 +986,7 @@ declare const AdditionalCurveTrendSchema: z.ZodObject<{
|
|
|
932
986
|
format: z.ZodOptional<z.ZodString>;
|
|
933
987
|
label: z.ZodOptional<z.ZodString>;
|
|
934
988
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
989
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
935
990
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
936
991
|
}, "strip", z.ZodTypeAny, {
|
|
937
992
|
type: "column";
|
|
@@ -939,6 +994,7 @@ declare const AdditionalCurveTrendSchema: z.ZodObject<{
|
|
|
939
994
|
format?: string | undefined;
|
|
940
995
|
label?: string | undefined;
|
|
941
996
|
valueLabels?: string | undefined;
|
|
997
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
942
998
|
nullValueLabel?: string | undefined;
|
|
943
999
|
}, {
|
|
944
1000
|
type: "column";
|
|
@@ -946,6 +1002,7 @@ declare const AdditionalCurveTrendSchema: z.ZodObject<{
|
|
|
946
1002
|
format?: string | undefined;
|
|
947
1003
|
label?: string | undefined;
|
|
948
1004
|
valueLabels?: string | undefined;
|
|
1005
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
949
1006
|
nullValueLabel?: string | undefined;
|
|
950
1007
|
}>;
|
|
951
1008
|
domain: z.ZodArray<z.ZodNumber, "many">;
|
|
@@ -958,6 +1015,7 @@ declare const AdditionalCurveTrendSchema: z.ZodObject<{
|
|
|
958
1015
|
format?: string | undefined;
|
|
959
1016
|
label?: string | undefined;
|
|
960
1017
|
valueLabels?: string | undefined;
|
|
1018
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
961
1019
|
nullValueLabel?: string | undefined;
|
|
962
1020
|
};
|
|
963
1021
|
domain: number[];
|
|
@@ -970,6 +1028,7 @@ declare const AdditionalCurveTrendSchema: z.ZodObject<{
|
|
|
970
1028
|
format?: string | undefined;
|
|
971
1029
|
label?: string | undefined;
|
|
972
1030
|
valueLabels?: string | undefined;
|
|
1031
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
973
1032
|
nullValueLabel?: string | undefined;
|
|
974
1033
|
};
|
|
975
1034
|
domain: number[];
|
|
@@ -989,6 +1048,7 @@ declare const AdditionalCurveTrendSchema: z.ZodObject<{
|
|
|
989
1048
|
format?: string | undefined;
|
|
990
1049
|
label?: string | undefined;
|
|
991
1050
|
valueLabels?: string | undefined;
|
|
1051
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
992
1052
|
nullValueLabel?: string | undefined;
|
|
993
1053
|
};
|
|
994
1054
|
domain: number[];
|
|
@@ -1008,6 +1068,7 @@ declare const AdditionalCurveTrendSchema: z.ZodObject<{
|
|
|
1008
1068
|
format?: string | undefined;
|
|
1009
1069
|
label?: string | undefined;
|
|
1010
1070
|
valueLabels?: string | undefined;
|
|
1071
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1011
1072
|
nullValueLabel?: string | undefined;
|
|
1012
1073
|
};
|
|
1013
1074
|
domain: number[];
|
|
@@ -1023,6 +1084,7 @@ declare const AdditionalCurveEntrySchema: z.ZodObject<{
|
|
|
1023
1084
|
format: z.ZodOptional<z.ZodString>;
|
|
1024
1085
|
label: z.ZodOptional<z.ZodString>;
|
|
1025
1086
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1087
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1026
1088
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
1027
1089
|
}, "strip", z.ZodTypeAny, {
|
|
1028
1090
|
type: "column";
|
|
@@ -1030,6 +1092,7 @@ declare const AdditionalCurveEntrySchema: z.ZodObject<{
|
|
|
1030
1092
|
format?: string | undefined;
|
|
1031
1093
|
label?: string | undefined;
|
|
1032
1094
|
valueLabels?: string | undefined;
|
|
1095
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1033
1096
|
nullValueLabel?: string | undefined;
|
|
1034
1097
|
}, {
|
|
1035
1098
|
type: "column";
|
|
@@ -1037,6 +1100,7 @@ declare const AdditionalCurveEntrySchema: z.ZodObject<{
|
|
|
1037
1100
|
format?: string | undefined;
|
|
1038
1101
|
label?: string | undefined;
|
|
1039
1102
|
valueLabels?: string | undefined;
|
|
1103
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1040
1104
|
nullValueLabel?: string | undefined;
|
|
1041
1105
|
}>;
|
|
1042
1106
|
label: z.ZodString;
|
|
@@ -1061,6 +1125,7 @@ declare const AdditionalCurveEntrySchema: z.ZodObject<{
|
|
|
1061
1125
|
format: z.ZodOptional<z.ZodString>;
|
|
1062
1126
|
label: z.ZodOptional<z.ZodString>;
|
|
1063
1127
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1128
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1064
1129
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
1065
1130
|
}, "strip", z.ZodTypeAny, {
|
|
1066
1131
|
type: "column";
|
|
@@ -1068,6 +1133,7 @@ declare const AdditionalCurveEntrySchema: z.ZodObject<{
|
|
|
1068
1133
|
format?: string | undefined;
|
|
1069
1134
|
label?: string | undefined;
|
|
1070
1135
|
valueLabels?: string | undefined;
|
|
1136
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1071
1137
|
nullValueLabel?: string | undefined;
|
|
1072
1138
|
}, {
|
|
1073
1139
|
type: "column";
|
|
@@ -1075,6 +1141,7 @@ declare const AdditionalCurveEntrySchema: z.ZodObject<{
|
|
|
1075
1141
|
format?: string | undefined;
|
|
1076
1142
|
label?: string | undefined;
|
|
1077
1143
|
valueLabels?: string | undefined;
|
|
1144
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1078
1145
|
nullValueLabel?: string | undefined;
|
|
1079
1146
|
}>;
|
|
1080
1147
|
domain: z.ZodArray<z.ZodNumber, "many">;
|
|
@@ -1087,6 +1154,7 @@ declare const AdditionalCurveEntrySchema: z.ZodObject<{
|
|
|
1087
1154
|
format?: string | undefined;
|
|
1088
1155
|
label?: string | undefined;
|
|
1089
1156
|
valueLabels?: string | undefined;
|
|
1157
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1090
1158
|
nullValueLabel?: string | undefined;
|
|
1091
1159
|
};
|
|
1092
1160
|
domain: number[];
|
|
@@ -1099,6 +1167,7 @@ declare const AdditionalCurveEntrySchema: z.ZodObject<{
|
|
|
1099
1167
|
format?: string | undefined;
|
|
1100
1168
|
label?: string | undefined;
|
|
1101
1169
|
valueLabels?: string | undefined;
|
|
1170
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1102
1171
|
nullValueLabel?: string | undefined;
|
|
1103
1172
|
};
|
|
1104
1173
|
domain: number[];
|
|
@@ -1127,6 +1196,7 @@ declare const AdditionalCurveEntrySchema: z.ZodObject<{
|
|
|
1127
1196
|
format: z.ZodOptional<z.ZodString>;
|
|
1128
1197
|
label: z.ZodOptional<z.ZodString>;
|
|
1129
1198
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1199
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1130
1200
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
1131
1201
|
}, "strip", z.ZodTypeAny, {
|
|
1132
1202
|
type: "column";
|
|
@@ -1134,6 +1204,7 @@ declare const AdditionalCurveEntrySchema: z.ZodObject<{
|
|
|
1134
1204
|
format?: string | undefined;
|
|
1135
1205
|
label?: string | undefined;
|
|
1136
1206
|
valueLabels?: string | undefined;
|
|
1207
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1137
1208
|
nullValueLabel?: string | undefined;
|
|
1138
1209
|
}, {
|
|
1139
1210
|
type: "column";
|
|
@@ -1141,6 +1212,7 @@ declare const AdditionalCurveEntrySchema: z.ZodObject<{
|
|
|
1141
1212
|
format?: string | undefined;
|
|
1142
1213
|
label?: string | undefined;
|
|
1143
1214
|
valueLabels?: string | undefined;
|
|
1215
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1144
1216
|
nullValueLabel?: string | undefined;
|
|
1145
1217
|
}>;
|
|
1146
1218
|
domain: z.ZodArray<z.ZodNumber, "many">;
|
|
@@ -1153,6 +1225,7 @@ declare const AdditionalCurveEntrySchema: z.ZodObject<{
|
|
|
1153
1225
|
format?: string | undefined;
|
|
1154
1226
|
label?: string | undefined;
|
|
1155
1227
|
valueLabels?: string | undefined;
|
|
1228
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1156
1229
|
nullValueLabel?: string | undefined;
|
|
1157
1230
|
};
|
|
1158
1231
|
domain: number[];
|
|
@@ -1165,6 +1238,7 @@ declare const AdditionalCurveEntrySchema: z.ZodObject<{
|
|
|
1165
1238
|
format?: string | undefined;
|
|
1166
1239
|
label?: string | undefined;
|
|
1167
1240
|
valueLabels?: string | undefined;
|
|
1241
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1168
1242
|
nullValueLabel?: string | undefined;
|
|
1169
1243
|
};
|
|
1170
1244
|
domain: number[];
|
|
@@ -1184,6 +1258,7 @@ declare const AdditionalCurveEntrySchema: z.ZodObject<{
|
|
|
1184
1258
|
format?: string | undefined;
|
|
1185
1259
|
label?: string | undefined;
|
|
1186
1260
|
valueLabels?: string | undefined;
|
|
1261
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1187
1262
|
nullValueLabel?: string | undefined;
|
|
1188
1263
|
};
|
|
1189
1264
|
domain: number[];
|
|
@@ -1203,6 +1278,7 @@ declare const AdditionalCurveEntrySchema: z.ZodObject<{
|
|
|
1203
1278
|
format?: string | undefined;
|
|
1204
1279
|
label?: string | undefined;
|
|
1205
1280
|
valueLabels?: string | undefined;
|
|
1281
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1206
1282
|
nullValueLabel?: string | undefined;
|
|
1207
1283
|
};
|
|
1208
1284
|
domain: number[];
|
|
@@ -1219,6 +1295,7 @@ declare const AdditionalCurveEntrySchema: z.ZodObject<{
|
|
|
1219
1295
|
format?: string | undefined;
|
|
1220
1296
|
label?: string | undefined;
|
|
1221
1297
|
valueLabels?: string | undefined;
|
|
1298
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1222
1299
|
nullValueLabel?: string | undefined;
|
|
1223
1300
|
};
|
|
1224
1301
|
lineWidth?: number | undefined;
|
|
@@ -1234,6 +1311,7 @@ declare const AdditionalCurveEntrySchema: z.ZodObject<{
|
|
|
1234
1311
|
format?: string | undefined;
|
|
1235
1312
|
label?: string | undefined;
|
|
1236
1313
|
valueLabels?: string | undefined;
|
|
1314
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1237
1315
|
nullValueLabel?: string | undefined;
|
|
1238
1316
|
};
|
|
1239
1317
|
domain: number[];
|
|
@@ -1253,6 +1331,7 @@ declare const AdditionalCurveEntrySchema: z.ZodObject<{
|
|
|
1253
1331
|
format?: string | undefined;
|
|
1254
1332
|
label?: string | undefined;
|
|
1255
1333
|
valueLabels?: string | undefined;
|
|
1334
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1256
1335
|
nullValueLabel?: string | undefined;
|
|
1257
1336
|
};
|
|
1258
1337
|
domain: number[];
|
|
@@ -1270,6 +1349,7 @@ declare const AdditionalCurveEntrySchema: z.ZodObject<{
|
|
|
1270
1349
|
format?: string | undefined;
|
|
1271
1350
|
label?: string | undefined;
|
|
1272
1351
|
valueLabels?: string | undefined;
|
|
1352
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1273
1353
|
nullValueLabel?: string | undefined;
|
|
1274
1354
|
};
|
|
1275
1355
|
lineWidth?: number | undefined;
|
|
@@ -1285,6 +1365,7 @@ declare const AdditionalCurveEntrySchema: z.ZodObject<{
|
|
|
1285
1365
|
format?: string | undefined;
|
|
1286
1366
|
label?: string | undefined;
|
|
1287
1367
|
valueLabels?: string | undefined;
|
|
1368
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1288
1369
|
nullValueLabel?: string | undefined;
|
|
1289
1370
|
};
|
|
1290
1371
|
domain: number[];
|
|
@@ -1304,6 +1385,7 @@ declare const AdditionalCurveEntrySchema: z.ZodObject<{
|
|
|
1304
1385
|
format?: string | undefined;
|
|
1305
1386
|
label?: string | undefined;
|
|
1306
1387
|
valueLabels?: string | undefined;
|
|
1388
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1307
1389
|
nullValueLabel?: string | undefined;
|
|
1308
1390
|
};
|
|
1309
1391
|
domain: number[];
|
|
@@ -1322,6 +1404,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1322
1404
|
format: z.ZodOptional<z.ZodString>;
|
|
1323
1405
|
label: z.ZodOptional<z.ZodString>;
|
|
1324
1406
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1407
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1325
1408
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
1326
1409
|
}, "strip", z.ZodTypeAny, {
|
|
1327
1410
|
type: "column";
|
|
@@ -1329,6 +1412,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1329
1412
|
format?: string | undefined;
|
|
1330
1413
|
label?: string | undefined;
|
|
1331
1414
|
valueLabels?: string | undefined;
|
|
1415
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1332
1416
|
nullValueLabel?: string | undefined;
|
|
1333
1417
|
}, {
|
|
1334
1418
|
type: "column";
|
|
@@ -1336,6 +1420,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1336
1420
|
format?: string | undefined;
|
|
1337
1421
|
label?: string | undefined;
|
|
1338
1422
|
valueLabels?: string | undefined;
|
|
1423
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1339
1424
|
nullValueLabel?: string | undefined;
|
|
1340
1425
|
}>;
|
|
1341
1426
|
label: z.ZodString;
|
|
@@ -1360,6 +1445,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1360
1445
|
format: z.ZodOptional<z.ZodString>;
|
|
1361
1446
|
label: z.ZodOptional<z.ZodString>;
|
|
1362
1447
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1448
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1363
1449
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
1364
1450
|
}, "strip", z.ZodTypeAny, {
|
|
1365
1451
|
type: "column";
|
|
@@ -1367,6 +1453,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1367
1453
|
format?: string | undefined;
|
|
1368
1454
|
label?: string | undefined;
|
|
1369
1455
|
valueLabels?: string | undefined;
|
|
1456
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1370
1457
|
nullValueLabel?: string | undefined;
|
|
1371
1458
|
}, {
|
|
1372
1459
|
type: "column";
|
|
@@ -1374,6 +1461,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1374
1461
|
format?: string | undefined;
|
|
1375
1462
|
label?: string | undefined;
|
|
1376
1463
|
valueLabels?: string | undefined;
|
|
1464
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1377
1465
|
nullValueLabel?: string | undefined;
|
|
1378
1466
|
}>;
|
|
1379
1467
|
domain: z.ZodArray<z.ZodNumber, "many">;
|
|
@@ -1386,6 +1474,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1386
1474
|
format?: string | undefined;
|
|
1387
1475
|
label?: string | undefined;
|
|
1388
1476
|
valueLabels?: string | undefined;
|
|
1477
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1389
1478
|
nullValueLabel?: string | undefined;
|
|
1390
1479
|
};
|
|
1391
1480
|
domain: number[];
|
|
@@ -1398,6 +1487,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1398
1487
|
format?: string | undefined;
|
|
1399
1488
|
label?: string | undefined;
|
|
1400
1489
|
valueLabels?: string | undefined;
|
|
1490
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1401
1491
|
nullValueLabel?: string | undefined;
|
|
1402
1492
|
};
|
|
1403
1493
|
domain: number[];
|
|
@@ -1426,6 +1516,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1426
1516
|
format: z.ZodOptional<z.ZodString>;
|
|
1427
1517
|
label: z.ZodOptional<z.ZodString>;
|
|
1428
1518
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1519
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1429
1520
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
1430
1521
|
}, "strip", z.ZodTypeAny, {
|
|
1431
1522
|
type: "column";
|
|
@@ -1433,6 +1524,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1433
1524
|
format?: string | undefined;
|
|
1434
1525
|
label?: string | undefined;
|
|
1435
1526
|
valueLabels?: string | undefined;
|
|
1527
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1436
1528
|
nullValueLabel?: string | undefined;
|
|
1437
1529
|
}, {
|
|
1438
1530
|
type: "column";
|
|
@@ -1440,6 +1532,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1440
1532
|
format?: string | undefined;
|
|
1441
1533
|
label?: string | undefined;
|
|
1442
1534
|
valueLabels?: string | undefined;
|
|
1535
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1443
1536
|
nullValueLabel?: string | undefined;
|
|
1444
1537
|
}>;
|
|
1445
1538
|
domain: z.ZodArray<z.ZodNumber, "many">;
|
|
@@ -1452,6 +1545,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1452
1545
|
format?: string | undefined;
|
|
1453
1546
|
label?: string | undefined;
|
|
1454
1547
|
valueLabels?: string | undefined;
|
|
1548
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1455
1549
|
nullValueLabel?: string | undefined;
|
|
1456
1550
|
};
|
|
1457
1551
|
domain: number[];
|
|
@@ -1464,6 +1558,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1464
1558
|
format?: string | undefined;
|
|
1465
1559
|
label?: string | undefined;
|
|
1466
1560
|
valueLabels?: string | undefined;
|
|
1561
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1467
1562
|
nullValueLabel?: string | undefined;
|
|
1468
1563
|
};
|
|
1469
1564
|
domain: number[];
|
|
@@ -1483,6 +1578,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1483
1578
|
format?: string | undefined;
|
|
1484
1579
|
label?: string | undefined;
|
|
1485
1580
|
valueLabels?: string | undefined;
|
|
1581
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1486
1582
|
nullValueLabel?: string | undefined;
|
|
1487
1583
|
};
|
|
1488
1584
|
domain: number[];
|
|
@@ -1502,6 +1598,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1502
1598
|
format?: string | undefined;
|
|
1503
1599
|
label?: string | undefined;
|
|
1504
1600
|
valueLabels?: string | undefined;
|
|
1601
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1505
1602
|
nullValueLabel?: string | undefined;
|
|
1506
1603
|
};
|
|
1507
1604
|
domain: number[];
|
|
@@ -1518,6 +1615,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1518
1615
|
format?: string | undefined;
|
|
1519
1616
|
label?: string | undefined;
|
|
1520
1617
|
valueLabels?: string | undefined;
|
|
1618
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1521
1619
|
nullValueLabel?: string | undefined;
|
|
1522
1620
|
};
|
|
1523
1621
|
lineWidth?: number | undefined;
|
|
@@ -1533,6 +1631,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1533
1631
|
format?: string | undefined;
|
|
1534
1632
|
label?: string | undefined;
|
|
1535
1633
|
valueLabels?: string | undefined;
|
|
1634
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1536
1635
|
nullValueLabel?: string | undefined;
|
|
1537
1636
|
};
|
|
1538
1637
|
domain: number[];
|
|
@@ -1552,6 +1651,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1552
1651
|
format?: string | undefined;
|
|
1553
1652
|
label?: string | undefined;
|
|
1554
1653
|
valueLabels?: string | undefined;
|
|
1654
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1555
1655
|
nullValueLabel?: string | undefined;
|
|
1556
1656
|
};
|
|
1557
1657
|
domain: number[];
|
|
@@ -1569,6 +1669,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1569
1669
|
format?: string | undefined;
|
|
1570
1670
|
label?: string | undefined;
|
|
1571
1671
|
valueLabels?: string | undefined;
|
|
1672
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1572
1673
|
nullValueLabel?: string | undefined;
|
|
1573
1674
|
};
|
|
1574
1675
|
lineWidth?: number | undefined;
|
|
@@ -1584,6 +1685,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1584
1685
|
format?: string | undefined;
|
|
1585
1686
|
label?: string | undefined;
|
|
1586
1687
|
valueLabels?: string | undefined;
|
|
1688
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1587
1689
|
nullValueLabel?: string | undefined;
|
|
1588
1690
|
};
|
|
1589
1691
|
domain: number[];
|
|
@@ -1603,6 +1705,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1603
1705
|
format?: string | undefined;
|
|
1604
1706
|
label?: string | undefined;
|
|
1605
1707
|
valueLabels?: string | undefined;
|
|
1708
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1606
1709
|
nullValueLabel?: string | undefined;
|
|
1607
1710
|
};
|
|
1608
1711
|
domain: number[];
|
|
@@ -1623,6 +1726,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1623
1726
|
format?: string | undefined;
|
|
1624
1727
|
label?: string | undefined;
|
|
1625
1728
|
valueLabels?: string | undefined;
|
|
1729
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1626
1730
|
nullValueLabel?: string | undefined;
|
|
1627
1731
|
};
|
|
1628
1732
|
lineWidth?: number | undefined;
|
|
@@ -1638,6 +1742,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1638
1742
|
format?: string | undefined;
|
|
1639
1743
|
label?: string | undefined;
|
|
1640
1744
|
valueLabels?: string | undefined;
|
|
1745
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1641
1746
|
nullValueLabel?: string | undefined;
|
|
1642
1747
|
};
|
|
1643
1748
|
domain: number[];
|
|
@@ -1657,6 +1762,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1657
1762
|
format?: string | undefined;
|
|
1658
1763
|
label?: string | undefined;
|
|
1659
1764
|
valueLabels?: string | undefined;
|
|
1765
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1660
1766
|
nullValueLabel?: string | undefined;
|
|
1661
1767
|
};
|
|
1662
1768
|
domain: number[];
|
|
@@ -1677,6 +1783,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1677
1783
|
format?: string | undefined;
|
|
1678
1784
|
label?: string | undefined;
|
|
1679
1785
|
valueLabels?: string | undefined;
|
|
1786
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1680
1787
|
nullValueLabel?: string | undefined;
|
|
1681
1788
|
};
|
|
1682
1789
|
lineWidth?: number | undefined;
|
|
@@ -1692,6 +1799,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1692
1799
|
format?: string | undefined;
|
|
1693
1800
|
label?: string | undefined;
|
|
1694
1801
|
valueLabels?: string | undefined;
|
|
1802
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1695
1803
|
nullValueLabel?: string | undefined;
|
|
1696
1804
|
};
|
|
1697
1805
|
domain: number[];
|
|
@@ -1711,6 +1819,7 @@ declare const AdditionalCurvesSchema: z.ZodObject<{
|
|
|
1711
1819
|
format?: string | undefined;
|
|
1712
1820
|
label?: string | undefined;
|
|
1713
1821
|
valueLabels?: string | undefined;
|
|
1822
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1714
1823
|
nullValueLabel?: string | undefined;
|
|
1715
1824
|
};
|
|
1716
1825
|
domain: number[];
|
|
@@ -1769,6 +1878,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1769
1878
|
format: z.ZodOptional<z.ZodString>;
|
|
1770
1879
|
label: z.ZodOptional<z.ZodString>;
|
|
1771
1880
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1881
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1772
1882
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
1773
1883
|
}, "strip", z.ZodTypeAny, {
|
|
1774
1884
|
type: "column";
|
|
@@ -1776,6 +1886,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1776
1886
|
format?: string | undefined;
|
|
1777
1887
|
label?: string | undefined;
|
|
1778
1888
|
valueLabels?: string | undefined;
|
|
1889
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1779
1890
|
nullValueLabel?: string | undefined;
|
|
1780
1891
|
}, {
|
|
1781
1892
|
type: "column";
|
|
@@ -1783,6 +1894,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1783
1894
|
format?: string | undefined;
|
|
1784
1895
|
label?: string | undefined;
|
|
1785
1896
|
valueLabels?: string | undefined;
|
|
1897
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1786
1898
|
nullValueLabel?: string | undefined;
|
|
1787
1899
|
}>, "many">>;
|
|
1788
1900
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1793,6 +1905,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1793
1905
|
format?: string | undefined;
|
|
1794
1906
|
label?: string | undefined;
|
|
1795
1907
|
valueLabels?: string | undefined;
|
|
1908
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1796
1909
|
nullValueLabel?: string | undefined;
|
|
1797
1910
|
}[] | undefined;
|
|
1798
1911
|
}, {
|
|
@@ -1803,6 +1916,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1803
1916
|
format?: string | undefined;
|
|
1804
1917
|
label?: string | undefined;
|
|
1805
1918
|
valueLabels?: string | undefined;
|
|
1919
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1806
1920
|
nullValueLabel?: string | undefined;
|
|
1807
1921
|
}[] | undefined;
|
|
1808
1922
|
}>>;
|
|
@@ -1839,6 +1953,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1839
1953
|
format: z.ZodOptional<z.ZodString>;
|
|
1840
1954
|
label: z.ZodOptional<z.ZodString>;
|
|
1841
1955
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1956
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1842
1957
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
1843
1958
|
}, "strip", z.ZodTypeAny, {
|
|
1844
1959
|
type: "column";
|
|
@@ -1846,6 +1961,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1846
1961
|
format?: string | undefined;
|
|
1847
1962
|
label?: string | undefined;
|
|
1848
1963
|
valueLabels?: string | undefined;
|
|
1964
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1849
1965
|
nullValueLabel?: string | undefined;
|
|
1850
1966
|
}, {
|
|
1851
1967
|
type: "column";
|
|
@@ -1853,6 +1969,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1853
1969
|
format?: string | undefined;
|
|
1854
1970
|
label?: string | undefined;
|
|
1855
1971
|
valueLabels?: string | undefined;
|
|
1972
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1856
1973
|
nullValueLabel?: string | undefined;
|
|
1857
1974
|
}>;
|
|
1858
1975
|
x: z.ZodObject<{
|
|
@@ -1861,6 +1978,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1861
1978
|
format: z.ZodOptional<z.ZodString>;
|
|
1862
1979
|
label: z.ZodOptional<z.ZodString>;
|
|
1863
1980
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1981
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1864
1982
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
1865
1983
|
}, "strip", z.ZodTypeAny, {
|
|
1866
1984
|
type: "column";
|
|
@@ -1868,6 +1986,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1868
1986
|
format?: string | undefined;
|
|
1869
1987
|
label?: string | undefined;
|
|
1870
1988
|
valueLabels?: string | undefined;
|
|
1989
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1871
1990
|
nullValueLabel?: string | undefined;
|
|
1872
1991
|
}, {
|
|
1873
1992
|
type: "column";
|
|
@@ -1875,6 +1994,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1875
1994
|
format?: string | undefined;
|
|
1876
1995
|
label?: string | undefined;
|
|
1877
1996
|
valueLabels?: string | undefined;
|
|
1997
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1878
1998
|
nullValueLabel?: string | undefined;
|
|
1879
1999
|
}>;
|
|
1880
2000
|
y: z.ZodObject<{
|
|
@@ -1883,6 +2003,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1883
2003
|
format: z.ZodOptional<z.ZodString>;
|
|
1884
2004
|
label: z.ZodOptional<z.ZodString>;
|
|
1885
2005
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
2006
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1886
2007
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
1887
2008
|
}, "strip", z.ZodTypeAny, {
|
|
1888
2009
|
type: "column";
|
|
@@ -1890,6 +2011,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1890
2011
|
format?: string | undefined;
|
|
1891
2012
|
label?: string | undefined;
|
|
1892
2013
|
valueLabels?: string | undefined;
|
|
2014
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1893
2015
|
nullValueLabel?: string | undefined;
|
|
1894
2016
|
}, {
|
|
1895
2017
|
type: "column";
|
|
@@ -1897,6 +2019,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1897
2019
|
format?: string | undefined;
|
|
1898
2020
|
label?: string | undefined;
|
|
1899
2021
|
valueLabels?: string | undefined;
|
|
2022
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1900
2023
|
nullValueLabel?: string | undefined;
|
|
1901
2024
|
}>;
|
|
1902
2025
|
xAxis: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
@@ -1906,6 +2029,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1906
2029
|
format: z.ZodOptional<z.ZodString>;
|
|
1907
2030
|
label: z.ZodOptional<z.ZodString>;
|
|
1908
2031
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
2032
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1909
2033
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
1910
2034
|
}, "strip", z.ZodTypeAny, {
|
|
1911
2035
|
type: "column";
|
|
@@ -1913,6 +2037,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1913
2037
|
format?: string | undefined;
|
|
1914
2038
|
label?: string | undefined;
|
|
1915
2039
|
valueLabels?: string | undefined;
|
|
2040
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1916
2041
|
nullValueLabel?: string | undefined;
|
|
1917
2042
|
}, {
|
|
1918
2043
|
type: "column";
|
|
@@ -1920,6 +2045,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1920
2045
|
format?: string | undefined;
|
|
1921
2046
|
label?: string | undefined;
|
|
1922
2047
|
valueLabels?: string | undefined;
|
|
2048
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1923
2049
|
nullValueLabel?: string | undefined;
|
|
1924
2050
|
}>]>>;
|
|
1925
2051
|
scale: z.ZodOptional<z.ZodLiteral<"discrete">>;
|
|
@@ -1938,6 +2064,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1938
2064
|
format?: string | undefined;
|
|
1939
2065
|
label?: string | undefined;
|
|
1940
2066
|
valueLabels?: string | undefined;
|
|
2067
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1941
2068
|
nullValueLabel?: string | undefined;
|
|
1942
2069
|
} | undefined;
|
|
1943
2070
|
scale?: "discrete" | undefined;
|
|
@@ -1955,6 +2082,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1955
2082
|
format?: string | undefined;
|
|
1956
2083
|
label?: string | undefined;
|
|
1957
2084
|
valueLabels?: string | undefined;
|
|
2085
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1958
2086
|
nullValueLabel?: string | undefined;
|
|
1959
2087
|
} | undefined;
|
|
1960
2088
|
scale?: "discrete" | undefined;
|
|
@@ -1971,6 +2099,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1971
2099
|
format: z.ZodOptional<z.ZodString>;
|
|
1972
2100
|
label: z.ZodOptional<z.ZodString>;
|
|
1973
2101
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
2102
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1974
2103
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
1975
2104
|
}, "strip", z.ZodTypeAny, {
|
|
1976
2105
|
type: "column";
|
|
@@ -1978,6 +2107,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1978
2107
|
format?: string | undefined;
|
|
1979
2108
|
label?: string | undefined;
|
|
1980
2109
|
valueLabels?: string | undefined;
|
|
2110
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1981
2111
|
nullValueLabel?: string | undefined;
|
|
1982
2112
|
}, {
|
|
1983
2113
|
type: "column";
|
|
@@ -1985,6 +2115,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1985
2115
|
format?: string | undefined;
|
|
1986
2116
|
label?: string | undefined;
|
|
1987
2117
|
valueLabels?: string | undefined;
|
|
2118
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
1988
2119
|
nullValueLabel?: string | undefined;
|
|
1989
2120
|
}>]>>;
|
|
1990
2121
|
scale: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
|
|
@@ -2003,6 +2134,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2003
2134
|
format?: string | undefined;
|
|
2004
2135
|
label?: string | undefined;
|
|
2005
2136
|
valueLabels?: string | undefined;
|
|
2137
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2006
2138
|
nullValueLabel?: string | undefined;
|
|
2007
2139
|
} | undefined;
|
|
2008
2140
|
scale?: "linear" | "log" | undefined;
|
|
@@ -2021,6 +2153,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2021
2153
|
format?: string | undefined;
|
|
2022
2154
|
label?: string | undefined;
|
|
2023
2155
|
valueLabels?: string | undefined;
|
|
2156
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2024
2157
|
nullValueLabel?: string | undefined;
|
|
2025
2158
|
} | undefined;
|
|
2026
2159
|
scale?: "linear" | "log" | undefined;
|
|
@@ -2040,6 +2173,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2040
2173
|
format: z.ZodOptional<z.ZodString>;
|
|
2041
2174
|
label: z.ZodOptional<z.ZodString>;
|
|
2042
2175
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
2176
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2043
2177
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
2044
2178
|
}, "strip", z.ZodTypeAny, {
|
|
2045
2179
|
type: "column";
|
|
@@ -2047,6 +2181,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2047
2181
|
format?: string | undefined;
|
|
2048
2182
|
label?: string | undefined;
|
|
2049
2183
|
valueLabels?: string | undefined;
|
|
2184
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2050
2185
|
nullValueLabel?: string | undefined;
|
|
2051
2186
|
}, {
|
|
2052
2187
|
type: "column";
|
|
@@ -2054,6 +2189,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2054
2189
|
format?: string | undefined;
|
|
2055
2190
|
label?: string | undefined;
|
|
2056
2191
|
valueLabels?: string | undefined;
|
|
2192
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2057
2193
|
nullValueLabel?: string | undefined;
|
|
2058
2194
|
}>]>>;
|
|
2059
2195
|
scale: z.ZodOptional<z.ZodLiteral<"discrete">>;
|
|
@@ -2072,6 +2208,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2072
2208
|
format?: string | undefined;
|
|
2073
2209
|
label?: string | undefined;
|
|
2074
2210
|
valueLabels?: string | undefined;
|
|
2211
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2075
2212
|
nullValueLabel?: string | undefined;
|
|
2076
2213
|
} | undefined;
|
|
2077
2214
|
scale?: "discrete" | undefined;
|
|
@@ -2089,6 +2226,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2089
2226
|
format?: string | undefined;
|
|
2090
2227
|
label?: string | undefined;
|
|
2091
2228
|
valueLabels?: string | undefined;
|
|
2229
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2092
2230
|
nullValueLabel?: string | undefined;
|
|
2093
2231
|
} | undefined;
|
|
2094
2232
|
scale?: "discrete" | undefined;
|
|
@@ -2105,6 +2243,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2105
2243
|
format: z.ZodOptional<z.ZodString>;
|
|
2106
2244
|
label: z.ZodOptional<z.ZodString>;
|
|
2107
2245
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
2246
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2108
2247
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
2109
2248
|
}, "strip", z.ZodTypeAny, {
|
|
2110
2249
|
type: "column";
|
|
@@ -2112,6 +2251,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2112
2251
|
format?: string | undefined;
|
|
2113
2252
|
label?: string | undefined;
|
|
2114
2253
|
valueLabels?: string | undefined;
|
|
2254
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2115
2255
|
nullValueLabel?: string | undefined;
|
|
2116
2256
|
}, {
|
|
2117
2257
|
type: "column";
|
|
@@ -2119,6 +2259,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2119
2259
|
format?: string | undefined;
|
|
2120
2260
|
label?: string | undefined;
|
|
2121
2261
|
valueLabels?: string | undefined;
|
|
2262
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2122
2263
|
nullValueLabel?: string | undefined;
|
|
2123
2264
|
}>]>>;
|
|
2124
2265
|
scale: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
|
|
@@ -2137,6 +2278,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2137
2278
|
format?: string | undefined;
|
|
2138
2279
|
label?: string | undefined;
|
|
2139
2280
|
valueLabels?: string | undefined;
|
|
2281
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2140
2282
|
nullValueLabel?: string | undefined;
|
|
2141
2283
|
} | undefined;
|
|
2142
2284
|
scale?: "linear" | "log" | undefined;
|
|
@@ -2155,6 +2297,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2155
2297
|
format?: string | undefined;
|
|
2156
2298
|
label?: string | undefined;
|
|
2157
2299
|
valueLabels?: string | undefined;
|
|
2300
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2158
2301
|
nullValueLabel?: string | undefined;
|
|
2159
2302
|
} | undefined;
|
|
2160
2303
|
scale?: "linear" | "log" | undefined;
|
|
@@ -2174,6 +2317,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2174
2317
|
format: z.ZodOptional<z.ZodString>;
|
|
2175
2318
|
label: z.ZodOptional<z.ZodString>;
|
|
2176
2319
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
2320
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2177
2321
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
2178
2322
|
}, "strip", z.ZodTypeAny, {
|
|
2179
2323
|
type: "column";
|
|
@@ -2181,6 +2325,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2181
2325
|
format?: string | undefined;
|
|
2182
2326
|
label?: string | undefined;
|
|
2183
2327
|
valueLabels?: string | undefined;
|
|
2328
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2184
2329
|
nullValueLabel?: string | undefined;
|
|
2185
2330
|
}, {
|
|
2186
2331
|
type: "column";
|
|
@@ -2188,6 +2333,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2188
2333
|
format?: string | undefined;
|
|
2189
2334
|
label?: string | undefined;
|
|
2190
2335
|
valueLabels?: string | undefined;
|
|
2336
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2191
2337
|
nullValueLabel?: string | undefined;
|
|
2192
2338
|
}>;
|
|
2193
2339
|
order: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodNull]>, "many">>;
|
|
@@ -2224,6 +2370,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2224
2370
|
format?: string | undefined;
|
|
2225
2371
|
label?: string | undefined;
|
|
2226
2372
|
valueLabels?: string | undefined;
|
|
2373
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2227
2374
|
nullValueLabel?: string | undefined;
|
|
2228
2375
|
};
|
|
2229
2376
|
order?: (string | number | null)[] | undefined;
|
|
@@ -2244,6 +2391,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2244
2391
|
format?: string | undefined;
|
|
2245
2392
|
label?: string | undefined;
|
|
2246
2393
|
valueLabels?: string | undefined;
|
|
2394
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2247
2395
|
nullValueLabel?: string | undefined;
|
|
2248
2396
|
};
|
|
2249
2397
|
order?: (string | number | null)[] | undefined;
|
|
@@ -2265,6 +2413,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2265
2413
|
format: z.ZodOptional<z.ZodString>;
|
|
2266
2414
|
label: z.ZodOptional<z.ZodString>;
|
|
2267
2415
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
2416
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2268
2417
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
2269
2418
|
}, "strip", z.ZodTypeAny, {
|
|
2270
2419
|
type: "column";
|
|
@@ -2272,6 +2421,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2272
2421
|
format?: string | undefined;
|
|
2273
2422
|
label?: string | undefined;
|
|
2274
2423
|
valueLabels?: string | undefined;
|
|
2424
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2275
2425
|
nullValueLabel?: string | undefined;
|
|
2276
2426
|
}, {
|
|
2277
2427
|
type: "column";
|
|
@@ -2279,6 +2429,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2279
2429
|
format?: string | undefined;
|
|
2280
2430
|
label?: string | undefined;
|
|
2281
2431
|
valueLabels?: string | undefined;
|
|
2432
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2282
2433
|
nullValueLabel?: string | undefined;
|
|
2283
2434
|
}>;
|
|
2284
2435
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2288,6 +2439,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2288
2439
|
format?: string | undefined;
|
|
2289
2440
|
label?: string | undefined;
|
|
2290
2441
|
valueLabels?: string | undefined;
|
|
2442
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2291
2443
|
nullValueLabel?: string | undefined;
|
|
2292
2444
|
};
|
|
2293
2445
|
}, {
|
|
@@ -2297,6 +2449,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2297
2449
|
format?: string | undefined;
|
|
2298
2450
|
label?: string | undefined;
|
|
2299
2451
|
valueLabels?: string | undefined;
|
|
2452
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2300
2453
|
nullValueLabel?: string | undefined;
|
|
2301
2454
|
};
|
|
2302
2455
|
}>, "many">>;
|
|
@@ -2307,6 +2460,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2307
2460
|
format: z.ZodOptional<z.ZodString>;
|
|
2308
2461
|
label: z.ZodOptional<z.ZodString>;
|
|
2309
2462
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
2463
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2310
2464
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
2311
2465
|
}, "strip", z.ZodTypeAny, {
|
|
2312
2466
|
type: "column";
|
|
@@ -2314,6 +2468,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2314
2468
|
format?: string | undefined;
|
|
2315
2469
|
label?: string | undefined;
|
|
2316
2470
|
valueLabels?: string | undefined;
|
|
2471
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2317
2472
|
nullValueLabel?: string | undefined;
|
|
2318
2473
|
}, {
|
|
2319
2474
|
type: "column";
|
|
@@ -2321,6 +2476,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2321
2476
|
format?: string | undefined;
|
|
2322
2477
|
label?: string | undefined;
|
|
2323
2478
|
valueLabels?: string | undefined;
|
|
2479
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2324
2480
|
nullValueLabel?: string | undefined;
|
|
2325
2481
|
}>;
|
|
2326
2482
|
order: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodNull]>, "many">>;
|
|
@@ -2356,6 +2512,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2356
2512
|
format?: string | undefined;
|
|
2357
2513
|
label?: string | undefined;
|
|
2358
2514
|
valueLabels?: string | undefined;
|
|
2515
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2359
2516
|
nullValueLabel?: string | undefined;
|
|
2360
2517
|
};
|
|
2361
2518
|
order?: (string | number | null)[] | undefined;
|
|
@@ -2375,6 +2532,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2375
2532
|
format?: string | undefined;
|
|
2376
2533
|
label?: string | undefined;
|
|
2377
2534
|
valueLabels?: string | undefined;
|
|
2535
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2378
2536
|
nullValueLabel?: string | undefined;
|
|
2379
2537
|
};
|
|
2380
2538
|
order?: (string | number | null)[] | undefined;
|
|
@@ -2394,6 +2552,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2394
2552
|
format: z.ZodOptional<z.ZodString>;
|
|
2395
2553
|
label: z.ZodOptional<z.ZodString>;
|
|
2396
2554
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
2555
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2397
2556
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
2398
2557
|
}, "strip", z.ZodTypeAny, {
|
|
2399
2558
|
type: "column";
|
|
@@ -2401,6 +2560,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2401
2560
|
format?: string | undefined;
|
|
2402
2561
|
label?: string | undefined;
|
|
2403
2562
|
valueLabels?: string | undefined;
|
|
2563
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2404
2564
|
nullValueLabel?: string | undefined;
|
|
2405
2565
|
}, {
|
|
2406
2566
|
type: "column";
|
|
@@ -2408,6 +2568,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2408
2568
|
format?: string | undefined;
|
|
2409
2569
|
label?: string | undefined;
|
|
2410
2570
|
valueLabels?: string | undefined;
|
|
2571
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2411
2572
|
nullValueLabel?: string | undefined;
|
|
2412
2573
|
}>, "many">>;
|
|
2413
2574
|
label: z.ZodOptional<z.ZodObject<{
|
|
@@ -2416,6 +2577,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2416
2577
|
format: z.ZodOptional<z.ZodString>;
|
|
2417
2578
|
label: z.ZodOptional<z.ZodString>;
|
|
2418
2579
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
2580
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2419
2581
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
2420
2582
|
}, "strip", z.ZodTypeAny, {
|
|
2421
2583
|
type: "column";
|
|
@@ -2423,6 +2585,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2423
2585
|
format?: string | undefined;
|
|
2424
2586
|
label?: string | undefined;
|
|
2425
2587
|
valueLabels?: string | undefined;
|
|
2588
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2426
2589
|
nullValueLabel?: string | undefined;
|
|
2427
2590
|
}, {
|
|
2428
2591
|
type: "column";
|
|
@@ -2430,6 +2593,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2430
2593
|
format?: string | undefined;
|
|
2431
2594
|
label?: string | undefined;
|
|
2432
2595
|
valueLabels?: string | undefined;
|
|
2596
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2433
2597
|
nullValueLabel?: string | undefined;
|
|
2434
2598
|
}>>;
|
|
2435
2599
|
highlight: z.ZodOptional<z.ZodObject<{
|
|
@@ -2438,6 +2602,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2438
2602
|
format: z.ZodOptional<z.ZodString>;
|
|
2439
2603
|
label: z.ZodOptional<z.ZodString>;
|
|
2440
2604
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
2605
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2441
2606
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
2442
2607
|
}, "strip", z.ZodTypeAny, {
|
|
2443
2608
|
type: "column";
|
|
@@ -2445,6 +2610,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2445
2610
|
format?: string | undefined;
|
|
2446
2611
|
label?: string | undefined;
|
|
2447
2612
|
valueLabels?: string | undefined;
|
|
2613
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2448
2614
|
nullValueLabel?: string | undefined;
|
|
2449
2615
|
}, {
|
|
2450
2616
|
type: "column";
|
|
@@ -2452,6 +2618,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2452
2618
|
format?: string | undefined;
|
|
2453
2619
|
label?: string | undefined;
|
|
2454
2620
|
valueLabels?: string | undefined;
|
|
2621
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2455
2622
|
nullValueLabel?: string | undefined;
|
|
2456
2623
|
}>>;
|
|
2457
2624
|
trend: z.ZodOptional<z.ZodObject<{
|
|
@@ -2474,6 +2641,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2474
2641
|
format: z.ZodOptional<z.ZodString>;
|
|
2475
2642
|
label: z.ZodOptional<z.ZodString>;
|
|
2476
2643
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
2644
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2477
2645
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
2478
2646
|
}, "strip", z.ZodTypeAny, {
|
|
2479
2647
|
type: "column";
|
|
@@ -2481,6 +2649,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2481
2649
|
format?: string | undefined;
|
|
2482
2650
|
label?: string | undefined;
|
|
2483
2651
|
valueLabels?: string | undefined;
|
|
2652
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2484
2653
|
nullValueLabel?: string | undefined;
|
|
2485
2654
|
}, {
|
|
2486
2655
|
type: "column";
|
|
@@ -2488,6 +2657,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2488
2657
|
format?: string | undefined;
|
|
2489
2658
|
label?: string | undefined;
|
|
2490
2659
|
valueLabels?: string | undefined;
|
|
2660
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2491
2661
|
nullValueLabel?: string | undefined;
|
|
2492
2662
|
}>;
|
|
2493
2663
|
domain: z.ZodArray<z.ZodNumber, "many">;
|
|
@@ -2500,6 +2670,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2500
2670
|
format?: string | undefined;
|
|
2501
2671
|
label?: string | undefined;
|
|
2502
2672
|
valueLabels?: string | undefined;
|
|
2673
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2503
2674
|
nullValueLabel?: string | undefined;
|
|
2504
2675
|
};
|
|
2505
2676
|
domain: number[];
|
|
@@ -2512,6 +2683,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2512
2683
|
format?: string | undefined;
|
|
2513
2684
|
label?: string | undefined;
|
|
2514
2685
|
valueLabels?: string | undefined;
|
|
2686
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2515
2687
|
nullValueLabel?: string | undefined;
|
|
2516
2688
|
};
|
|
2517
2689
|
domain: number[];
|
|
@@ -2531,6 +2703,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2531
2703
|
format?: string | undefined;
|
|
2532
2704
|
label?: string | undefined;
|
|
2533
2705
|
valueLabels?: string | undefined;
|
|
2706
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2534
2707
|
nullValueLabel?: string | undefined;
|
|
2535
2708
|
};
|
|
2536
2709
|
domain: number[];
|
|
@@ -2550,6 +2723,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2550
2723
|
format?: string | undefined;
|
|
2551
2724
|
label?: string | undefined;
|
|
2552
2725
|
valueLabels?: string | undefined;
|
|
2726
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2553
2727
|
nullValueLabel?: string | undefined;
|
|
2554
2728
|
};
|
|
2555
2729
|
domain: number[];
|
|
@@ -2566,6 +2740,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2566
2740
|
format: z.ZodOptional<z.ZodString>;
|
|
2567
2741
|
label: z.ZodOptional<z.ZodString>;
|
|
2568
2742
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
2743
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2569
2744
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
2570
2745
|
}, "strip", z.ZodTypeAny, {
|
|
2571
2746
|
type: "column";
|
|
@@ -2573,6 +2748,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2573
2748
|
format?: string | undefined;
|
|
2574
2749
|
label?: string | undefined;
|
|
2575
2750
|
valueLabels?: string | undefined;
|
|
2751
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2576
2752
|
nullValueLabel?: string | undefined;
|
|
2577
2753
|
}, {
|
|
2578
2754
|
type: "column";
|
|
@@ -2580,6 +2756,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2580
2756
|
format?: string | undefined;
|
|
2581
2757
|
label?: string | undefined;
|
|
2582
2758
|
valueLabels?: string | undefined;
|
|
2759
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2583
2760
|
nullValueLabel?: string | undefined;
|
|
2584
2761
|
}>;
|
|
2585
2762
|
label: z.ZodString;
|
|
@@ -2604,6 +2781,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2604
2781
|
format: z.ZodOptional<z.ZodString>;
|
|
2605
2782
|
label: z.ZodOptional<z.ZodString>;
|
|
2606
2783
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
2784
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2607
2785
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
2608
2786
|
}, "strip", z.ZodTypeAny, {
|
|
2609
2787
|
type: "column";
|
|
@@ -2611,6 +2789,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2611
2789
|
format?: string | undefined;
|
|
2612
2790
|
label?: string | undefined;
|
|
2613
2791
|
valueLabels?: string | undefined;
|
|
2792
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2614
2793
|
nullValueLabel?: string | undefined;
|
|
2615
2794
|
}, {
|
|
2616
2795
|
type: "column";
|
|
@@ -2618,6 +2797,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2618
2797
|
format?: string | undefined;
|
|
2619
2798
|
label?: string | undefined;
|
|
2620
2799
|
valueLabels?: string | undefined;
|
|
2800
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2621
2801
|
nullValueLabel?: string | undefined;
|
|
2622
2802
|
}>;
|
|
2623
2803
|
domain: z.ZodArray<z.ZodNumber, "many">;
|
|
@@ -2630,6 +2810,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2630
2810
|
format?: string | undefined;
|
|
2631
2811
|
label?: string | undefined;
|
|
2632
2812
|
valueLabels?: string | undefined;
|
|
2813
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2633
2814
|
nullValueLabel?: string | undefined;
|
|
2634
2815
|
};
|
|
2635
2816
|
domain: number[];
|
|
@@ -2642,6 +2823,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2642
2823
|
format?: string | undefined;
|
|
2643
2824
|
label?: string | undefined;
|
|
2644
2825
|
valueLabels?: string | undefined;
|
|
2826
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2645
2827
|
nullValueLabel?: string | undefined;
|
|
2646
2828
|
};
|
|
2647
2829
|
domain: number[];
|
|
@@ -2670,6 +2852,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2670
2852
|
format: z.ZodOptional<z.ZodString>;
|
|
2671
2853
|
label: z.ZodOptional<z.ZodString>;
|
|
2672
2854
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
2855
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2673
2856
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
2674
2857
|
}, "strip", z.ZodTypeAny, {
|
|
2675
2858
|
type: "column";
|
|
@@ -2677,6 +2860,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2677
2860
|
format?: string | undefined;
|
|
2678
2861
|
label?: string | undefined;
|
|
2679
2862
|
valueLabels?: string | undefined;
|
|
2863
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2680
2864
|
nullValueLabel?: string | undefined;
|
|
2681
2865
|
}, {
|
|
2682
2866
|
type: "column";
|
|
@@ -2684,6 +2868,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2684
2868
|
format?: string | undefined;
|
|
2685
2869
|
label?: string | undefined;
|
|
2686
2870
|
valueLabels?: string | undefined;
|
|
2871
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2687
2872
|
nullValueLabel?: string | undefined;
|
|
2688
2873
|
}>;
|
|
2689
2874
|
domain: z.ZodArray<z.ZodNumber, "many">;
|
|
@@ -2696,6 +2881,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2696
2881
|
format?: string | undefined;
|
|
2697
2882
|
label?: string | undefined;
|
|
2698
2883
|
valueLabels?: string | undefined;
|
|
2884
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2699
2885
|
nullValueLabel?: string | undefined;
|
|
2700
2886
|
};
|
|
2701
2887
|
domain: number[];
|
|
@@ -2708,6 +2894,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2708
2894
|
format?: string | undefined;
|
|
2709
2895
|
label?: string | undefined;
|
|
2710
2896
|
valueLabels?: string | undefined;
|
|
2897
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2711
2898
|
nullValueLabel?: string | undefined;
|
|
2712
2899
|
};
|
|
2713
2900
|
domain: number[];
|
|
@@ -2727,6 +2914,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2727
2914
|
format?: string | undefined;
|
|
2728
2915
|
label?: string | undefined;
|
|
2729
2916
|
valueLabels?: string | undefined;
|
|
2917
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2730
2918
|
nullValueLabel?: string | undefined;
|
|
2731
2919
|
};
|
|
2732
2920
|
domain: number[];
|
|
@@ -2746,6 +2934,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2746
2934
|
format?: string | undefined;
|
|
2747
2935
|
label?: string | undefined;
|
|
2748
2936
|
valueLabels?: string | undefined;
|
|
2937
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2749
2938
|
nullValueLabel?: string | undefined;
|
|
2750
2939
|
};
|
|
2751
2940
|
domain: number[];
|
|
@@ -2762,6 +2951,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2762
2951
|
format?: string | undefined;
|
|
2763
2952
|
label?: string | undefined;
|
|
2764
2953
|
valueLabels?: string | undefined;
|
|
2954
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2765
2955
|
nullValueLabel?: string | undefined;
|
|
2766
2956
|
};
|
|
2767
2957
|
lineWidth?: number | undefined;
|
|
@@ -2777,6 +2967,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2777
2967
|
format?: string | undefined;
|
|
2778
2968
|
label?: string | undefined;
|
|
2779
2969
|
valueLabels?: string | undefined;
|
|
2970
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2780
2971
|
nullValueLabel?: string | undefined;
|
|
2781
2972
|
};
|
|
2782
2973
|
domain: number[];
|
|
@@ -2796,6 +2987,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2796
2987
|
format?: string | undefined;
|
|
2797
2988
|
label?: string | undefined;
|
|
2798
2989
|
valueLabels?: string | undefined;
|
|
2990
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2799
2991
|
nullValueLabel?: string | undefined;
|
|
2800
2992
|
};
|
|
2801
2993
|
domain: number[];
|
|
@@ -2813,6 +3005,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2813
3005
|
format?: string | undefined;
|
|
2814
3006
|
label?: string | undefined;
|
|
2815
3007
|
valueLabels?: string | undefined;
|
|
3008
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2816
3009
|
nullValueLabel?: string | undefined;
|
|
2817
3010
|
};
|
|
2818
3011
|
lineWidth?: number | undefined;
|
|
@@ -2828,6 +3021,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2828
3021
|
format?: string | undefined;
|
|
2829
3022
|
label?: string | undefined;
|
|
2830
3023
|
valueLabels?: string | undefined;
|
|
3024
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2831
3025
|
nullValueLabel?: string | undefined;
|
|
2832
3026
|
};
|
|
2833
3027
|
domain: number[];
|
|
@@ -2847,6 +3041,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2847
3041
|
format?: string | undefined;
|
|
2848
3042
|
label?: string | undefined;
|
|
2849
3043
|
valueLabels?: string | undefined;
|
|
3044
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2850
3045
|
nullValueLabel?: string | undefined;
|
|
2851
3046
|
};
|
|
2852
3047
|
domain: number[];
|
|
@@ -2867,6 +3062,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2867
3062
|
format?: string | undefined;
|
|
2868
3063
|
label?: string | undefined;
|
|
2869
3064
|
valueLabels?: string | undefined;
|
|
3065
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2870
3066
|
nullValueLabel?: string | undefined;
|
|
2871
3067
|
};
|
|
2872
3068
|
lineWidth?: number | undefined;
|
|
@@ -2882,6 +3078,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2882
3078
|
format?: string | undefined;
|
|
2883
3079
|
label?: string | undefined;
|
|
2884
3080
|
valueLabels?: string | undefined;
|
|
3081
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2885
3082
|
nullValueLabel?: string | undefined;
|
|
2886
3083
|
};
|
|
2887
3084
|
domain: number[];
|
|
@@ -2901,6 +3098,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2901
3098
|
format?: string | undefined;
|
|
2902
3099
|
label?: string | undefined;
|
|
2903
3100
|
valueLabels?: string | undefined;
|
|
3101
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2904
3102
|
nullValueLabel?: string | undefined;
|
|
2905
3103
|
};
|
|
2906
3104
|
domain: number[];
|
|
@@ -2921,6 +3119,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2921
3119
|
format?: string | undefined;
|
|
2922
3120
|
label?: string | undefined;
|
|
2923
3121
|
valueLabels?: string | undefined;
|
|
3122
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2924
3123
|
nullValueLabel?: string | undefined;
|
|
2925
3124
|
};
|
|
2926
3125
|
lineWidth?: number | undefined;
|
|
@@ -2936,6 +3135,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2936
3135
|
format?: string | undefined;
|
|
2937
3136
|
label?: string | undefined;
|
|
2938
3137
|
valueLabels?: string | undefined;
|
|
3138
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2939
3139
|
nullValueLabel?: string | undefined;
|
|
2940
3140
|
};
|
|
2941
3141
|
domain: number[];
|
|
@@ -2955,6 +3155,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2955
3155
|
format?: string | undefined;
|
|
2956
3156
|
label?: string | undefined;
|
|
2957
3157
|
valueLabels?: string | undefined;
|
|
3158
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2958
3159
|
nullValueLabel?: string | undefined;
|
|
2959
3160
|
};
|
|
2960
3161
|
domain: number[];
|
|
@@ -2989,6 +3190,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2989
3190
|
format: z.ZodOptional<z.ZodString>;
|
|
2990
3191
|
label: z.ZodOptional<z.ZodString>;
|
|
2991
3192
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
3193
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2992
3194
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
2993
3195
|
}, "strip", z.ZodTypeAny, {
|
|
2994
3196
|
type: "column";
|
|
@@ -2996,6 +3198,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2996
3198
|
format?: string | undefined;
|
|
2997
3199
|
label?: string | undefined;
|
|
2998
3200
|
valueLabels?: string | undefined;
|
|
3201
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
2999
3202
|
nullValueLabel?: string | undefined;
|
|
3000
3203
|
}, {
|
|
3001
3204
|
type: "column";
|
|
@@ -3003,6 +3206,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3003
3206
|
format?: string | undefined;
|
|
3004
3207
|
label?: string | undefined;
|
|
3005
3208
|
valueLabels?: string | undefined;
|
|
3209
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3006
3210
|
nullValueLabel?: string | undefined;
|
|
3007
3211
|
}>;
|
|
3008
3212
|
domain: z.ZodArray<z.ZodNumber, "many">;
|
|
@@ -3015,6 +3219,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3015
3219
|
format?: string | undefined;
|
|
3016
3220
|
label?: string | undefined;
|
|
3017
3221
|
valueLabels?: string | undefined;
|
|
3222
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3018
3223
|
nullValueLabel?: string | undefined;
|
|
3019
3224
|
};
|
|
3020
3225
|
domain: number[];
|
|
@@ -3027,6 +3232,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3027
3232
|
format?: string | undefined;
|
|
3028
3233
|
label?: string | undefined;
|
|
3029
3234
|
valueLabels?: string | undefined;
|
|
3235
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3030
3236
|
nullValueLabel?: string | undefined;
|
|
3031
3237
|
};
|
|
3032
3238
|
domain: number[];
|
|
@@ -3053,6 +3259,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3053
3259
|
format: z.ZodOptional<z.ZodString>;
|
|
3054
3260
|
label: z.ZodOptional<z.ZodString>;
|
|
3055
3261
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
3262
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3056
3263
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
3057
3264
|
}, "strip", z.ZodTypeAny, {
|
|
3058
3265
|
type: "column";
|
|
@@ -3060,6 +3267,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3060
3267
|
format?: string | undefined;
|
|
3061
3268
|
label?: string | undefined;
|
|
3062
3269
|
valueLabels?: string | undefined;
|
|
3270
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3063
3271
|
nullValueLabel?: string | undefined;
|
|
3064
3272
|
}, {
|
|
3065
3273
|
type: "column";
|
|
@@ -3067,6 +3275,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3067
3275
|
format?: string | undefined;
|
|
3068
3276
|
label?: string | undefined;
|
|
3069
3277
|
valueLabels?: string | undefined;
|
|
3278
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3070
3279
|
nullValueLabel?: string | undefined;
|
|
3071
3280
|
}>;
|
|
3072
3281
|
domain: z.ZodArray<z.ZodNumber, "many">;
|
|
@@ -3079,6 +3288,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3079
3288
|
format?: string | undefined;
|
|
3080
3289
|
label?: string | undefined;
|
|
3081
3290
|
valueLabels?: string | undefined;
|
|
3291
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3082
3292
|
nullValueLabel?: string | undefined;
|
|
3083
3293
|
};
|
|
3084
3294
|
domain: number[];
|
|
@@ -3091,6 +3301,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3091
3301
|
format?: string | undefined;
|
|
3092
3302
|
label?: string | undefined;
|
|
3093
3303
|
valueLabels?: string | undefined;
|
|
3304
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3094
3305
|
nullValueLabel?: string | undefined;
|
|
3095
3306
|
};
|
|
3096
3307
|
domain: number[];
|
|
@@ -3109,6 +3320,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3109
3320
|
format?: string | undefined;
|
|
3110
3321
|
label?: string | undefined;
|
|
3111
3322
|
valueLabels?: string | undefined;
|
|
3323
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3112
3324
|
nullValueLabel?: string | undefined;
|
|
3113
3325
|
};
|
|
3114
3326
|
domain: number[];
|
|
@@ -3127,6 +3339,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3127
3339
|
format?: string | undefined;
|
|
3128
3340
|
label?: string | undefined;
|
|
3129
3341
|
valueLabels?: string | undefined;
|
|
3342
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3130
3343
|
nullValueLabel?: string | undefined;
|
|
3131
3344
|
};
|
|
3132
3345
|
domain: number[];
|
|
@@ -3145,6 +3358,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3145
3358
|
format?: string | undefined;
|
|
3146
3359
|
label?: string | undefined;
|
|
3147
3360
|
valueLabels?: string | undefined;
|
|
3361
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3148
3362
|
nullValueLabel?: string | undefined;
|
|
3149
3363
|
};
|
|
3150
3364
|
domain: number[];
|
|
@@ -3163,6 +3377,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3163
3377
|
format?: string | undefined;
|
|
3164
3378
|
label?: string | undefined;
|
|
3165
3379
|
valueLabels?: string | undefined;
|
|
3380
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3166
3381
|
nullValueLabel?: string | undefined;
|
|
3167
3382
|
};
|
|
3168
3383
|
domain: number[];
|
|
@@ -3184,6 +3399,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3184
3399
|
format?: string | undefined;
|
|
3185
3400
|
label?: string | undefined;
|
|
3186
3401
|
valueLabels?: string | undefined;
|
|
3402
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3187
3403
|
nullValueLabel?: string | undefined;
|
|
3188
3404
|
};
|
|
3189
3405
|
domain: number[];
|
|
@@ -3202,6 +3418,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3202
3418
|
format?: string | undefined;
|
|
3203
3419
|
label?: string | undefined;
|
|
3204
3420
|
valueLabels?: string | undefined;
|
|
3421
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3205
3422
|
nullValueLabel?: string | undefined;
|
|
3206
3423
|
};
|
|
3207
3424
|
domain: number[];
|
|
@@ -3223,6 +3440,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3223
3440
|
format?: string | undefined;
|
|
3224
3441
|
label?: string | undefined;
|
|
3225
3442
|
valueLabels?: string | undefined;
|
|
3443
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3226
3444
|
nullValueLabel?: string | undefined;
|
|
3227
3445
|
};
|
|
3228
3446
|
domain: number[];
|
|
@@ -3241,6 +3459,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3241
3459
|
format?: string | undefined;
|
|
3242
3460
|
label?: string | undefined;
|
|
3243
3461
|
valueLabels?: string | undefined;
|
|
3462
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3244
3463
|
nullValueLabel?: string | undefined;
|
|
3245
3464
|
};
|
|
3246
3465
|
domain: number[];
|
|
@@ -3273,6 +3492,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3273
3492
|
format: z.ZodOptional<z.ZodString>;
|
|
3274
3493
|
label: z.ZodOptional<z.ZodString>;
|
|
3275
3494
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
3495
|
+
valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3276
3496
|
nullValueLabel: z.ZodOptional<z.ZodString>;
|
|
3277
3497
|
}, "strip", z.ZodTypeAny, {
|
|
3278
3498
|
type: "column";
|
|
@@ -3280,6 +3500,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3280
3500
|
format?: string | undefined;
|
|
3281
3501
|
label?: string | undefined;
|
|
3282
3502
|
valueLabels?: string | undefined;
|
|
3503
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3283
3504
|
nullValueLabel?: string | undefined;
|
|
3284
3505
|
}, {
|
|
3285
3506
|
type: "column";
|
|
@@ -3287,6 +3508,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3287
3508
|
format?: string | undefined;
|
|
3288
3509
|
label?: string | undefined;
|
|
3289
3510
|
valueLabels?: string | undefined;
|
|
3511
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3290
3512
|
nullValueLabel?: string | undefined;
|
|
3291
3513
|
}>;
|
|
3292
3514
|
domain: z.ZodArray<z.ZodNumber, "many">;
|
|
@@ -3299,6 +3521,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3299
3521
|
format?: string | undefined;
|
|
3300
3522
|
label?: string | undefined;
|
|
3301
3523
|
valueLabels?: string | undefined;
|
|
3524
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3302
3525
|
nullValueLabel?: string | undefined;
|
|
3303
3526
|
};
|
|
3304
3527
|
domain: number[];
|
|
@@ -3311,6 +3534,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3311
3534
|
format?: string | undefined;
|
|
3312
3535
|
label?: string | undefined;
|
|
3313
3536
|
valueLabels?: string | undefined;
|
|
3537
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3314
3538
|
nullValueLabel?: string | undefined;
|
|
3315
3539
|
};
|
|
3316
3540
|
domain: number[];
|
|
@@ -3332,6 +3556,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3332
3556
|
format?: string | undefined;
|
|
3333
3557
|
label?: string | undefined;
|
|
3334
3558
|
valueLabels?: string | undefined;
|
|
3559
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3335
3560
|
nullValueLabel?: string | undefined;
|
|
3336
3561
|
};
|
|
3337
3562
|
domain: number[];
|
|
@@ -3353,6 +3578,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3353
3578
|
format?: string | undefined;
|
|
3354
3579
|
label?: string | undefined;
|
|
3355
3580
|
valueLabels?: string | undefined;
|
|
3581
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3356
3582
|
nullValueLabel?: string | undefined;
|
|
3357
3583
|
};
|
|
3358
3584
|
domain: number[];
|
|
@@ -3377,6 +3603,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3377
3603
|
format?: string | undefined;
|
|
3378
3604
|
label?: string | undefined;
|
|
3379
3605
|
valueLabels?: string | undefined;
|
|
3606
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3380
3607
|
nullValueLabel?: string | undefined;
|
|
3381
3608
|
};
|
|
3382
3609
|
domain: number[];
|
|
@@ -3402,6 +3629,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3402
3629
|
format?: string | undefined;
|
|
3403
3630
|
label?: string | undefined;
|
|
3404
3631
|
valueLabels?: string | undefined;
|
|
3632
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3405
3633
|
nullValueLabel?: string | undefined;
|
|
3406
3634
|
};
|
|
3407
3635
|
domain: number[];
|
|
@@ -3425,6 +3653,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3425
3653
|
format?: string | undefined;
|
|
3426
3654
|
label?: string | undefined;
|
|
3427
3655
|
valueLabels?: string | undefined;
|
|
3656
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3428
3657
|
nullValueLabel?: string | undefined;
|
|
3429
3658
|
};
|
|
3430
3659
|
x: {
|
|
@@ -3433,6 +3662,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3433
3662
|
format?: string | undefined;
|
|
3434
3663
|
label?: string | undefined;
|
|
3435
3664
|
valueLabels?: string | undefined;
|
|
3665
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3436
3666
|
nullValueLabel?: string | undefined;
|
|
3437
3667
|
};
|
|
3438
3668
|
y: {
|
|
@@ -3441,6 +3671,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3441
3671
|
format?: string | undefined;
|
|
3442
3672
|
label?: string | undefined;
|
|
3443
3673
|
valueLabels?: string | undefined;
|
|
3674
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3444
3675
|
nullValueLabel?: string | undefined;
|
|
3445
3676
|
};
|
|
3446
3677
|
layers: ({
|
|
@@ -3457,6 +3688,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3457
3688
|
format?: string | undefined;
|
|
3458
3689
|
label?: string | undefined;
|
|
3459
3690
|
valueLabels?: string | undefined;
|
|
3691
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3460
3692
|
nullValueLabel?: string | undefined;
|
|
3461
3693
|
};
|
|
3462
3694
|
domain: number[];
|
|
@@ -3475,6 +3707,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3475
3707
|
format?: string | undefined;
|
|
3476
3708
|
label?: string | undefined;
|
|
3477
3709
|
valueLabels?: string | undefined;
|
|
3710
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3478
3711
|
nullValueLabel?: string | undefined;
|
|
3479
3712
|
};
|
|
3480
3713
|
domain: number[];
|
|
@@ -3498,6 +3731,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3498
3731
|
format?: string | undefined;
|
|
3499
3732
|
label?: string | undefined;
|
|
3500
3733
|
valueLabels?: string | undefined;
|
|
3734
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3501
3735
|
nullValueLabel?: string | undefined;
|
|
3502
3736
|
};
|
|
3503
3737
|
domain: number[];
|
|
@@ -3518,6 +3752,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3518
3752
|
format?: string | undefined;
|
|
3519
3753
|
label?: string | undefined;
|
|
3520
3754
|
valueLabels?: string | undefined;
|
|
3755
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3521
3756
|
nullValueLabel?: string | undefined;
|
|
3522
3757
|
} | undefined;
|
|
3523
3758
|
grouping?: {
|
|
@@ -3527,6 +3762,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3527
3762
|
format?: string | undefined;
|
|
3528
3763
|
label?: string | undefined;
|
|
3529
3764
|
valueLabels?: string | undefined;
|
|
3765
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3530
3766
|
nullValueLabel?: string | undefined;
|
|
3531
3767
|
};
|
|
3532
3768
|
order?: (string | number | null)[] | undefined;
|
|
@@ -3548,6 +3784,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3548
3784
|
format?: string | undefined;
|
|
3549
3785
|
label?: string | undefined;
|
|
3550
3786
|
valueLabels?: string | undefined;
|
|
3787
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3551
3788
|
nullValueLabel?: string | undefined;
|
|
3552
3789
|
};
|
|
3553
3790
|
order?: (string | number | null)[] | undefined;
|
|
@@ -3568,6 +3805,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3568
3805
|
format?: string | undefined;
|
|
3569
3806
|
label?: string | undefined;
|
|
3570
3807
|
valueLabels?: string | undefined;
|
|
3808
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3571
3809
|
nullValueLabel?: string | undefined;
|
|
3572
3810
|
};
|
|
3573
3811
|
}[] | undefined;
|
|
@@ -3583,6 +3821,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3583
3821
|
format?: string | undefined;
|
|
3584
3822
|
label?: string | undefined;
|
|
3585
3823
|
valueLabels?: string | undefined;
|
|
3824
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3586
3825
|
nullValueLabel?: string | undefined;
|
|
3587
3826
|
}[] | undefined;
|
|
3588
3827
|
} | undefined;
|
|
@@ -3604,6 +3843,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3604
3843
|
format?: string | undefined;
|
|
3605
3844
|
label?: string | undefined;
|
|
3606
3845
|
valueLabels?: string | undefined;
|
|
3846
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3607
3847
|
nullValueLabel?: string | undefined;
|
|
3608
3848
|
} | undefined;
|
|
3609
3849
|
scale?: "discrete" | undefined;
|
|
@@ -3620,6 +3860,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3620
3860
|
format?: string | undefined;
|
|
3621
3861
|
label?: string | undefined;
|
|
3622
3862
|
valueLabels?: string | undefined;
|
|
3863
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3623
3864
|
nullValueLabel?: string | undefined;
|
|
3624
3865
|
} | undefined;
|
|
3625
3866
|
scale?: "linear" | "log" | undefined;
|
|
@@ -3640,6 +3881,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3640
3881
|
format?: string | undefined;
|
|
3641
3882
|
label?: string | undefined;
|
|
3642
3883
|
valueLabels?: string | undefined;
|
|
3884
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3643
3885
|
nullValueLabel?: string | undefined;
|
|
3644
3886
|
} | undefined;
|
|
3645
3887
|
scale?: "discrete" | undefined;
|
|
@@ -3656,6 +3898,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3656
3898
|
format?: string | undefined;
|
|
3657
3899
|
label?: string | undefined;
|
|
3658
3900
|
valueLabels?: string | undefined;
|
|
3901
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3659
3902
|
nullValueLabel?: string | undefined;
|
|
3660
3903
|
} | undefined;
|
|
3661
3904
|
scale?: "linear" | "log" | undefined;
|
|
@@ -3674,6 +3917,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3674
3917
|
format?: string | undefined;
|
|
3675
3918
|
label?: string | undefined;
|
|
3676
3919
|
valueLabels?: string | undefined;
|
|
3920
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3677
3921
|
nullValueLabel?: string | undefined;
|
|
3678
3922
|
}[] | undefined;
|
|
3679
3923
|
highlight?: {
|
|
@@ -3682,6 +3926,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3682
3926
|
format?: string | undefined;
|
|
3683
3927
|
label?: string | undefined;
|
|
3684
3928
|
valueLabels?: string | undefined;
|
|
3929
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3685
3930
|
nullValueLabel?: string | undefined;
|
|
3686
3931
|
} | undefined;
|
|
3687
3932
|
trend?: {
|
|
@@ -3696,6 +3941,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3696
3941
|
format?: string | undefined;
|
|
3697
3942
|
label?: string | undefined;
|
|
3698
3943
|
valueLabels?: string | undefined;
|
|
3944
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3699
3945
|
nullValueLabel?: string | undefined;
|
|
3700
3946
|
};
|
|
3701
3947
|
domain: number[];
|
|
@@ -3713,6 +3959,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3713
3959
|
format?: string | undefined;
|
|
3714
3960
|
label?: string | undefined;
|
|
3715
3961
|
valueLabels?: string | undefined;
|
|
3962
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3716
3963
|
nullValueLabel?: string | undefined;
|
|
3717
3964
|
};
|
|
3718
3965
|
lineWidth?: number | undefined;
|
|
@@ -3728,6 +3975,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3728
3975
|
format?: string | undefined;
|
|
3729
3976
|
label?: string | undefined;
|
|
3730
3977
|
valueLabels?: string | undefined;
|
|
3978
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3731
3979
|
nullValueLabel?: string | undefined;
|
|
3732
3980
|
};
|
|
3733
3981
|
domain: number[];
|
|
@@ -3747,6 +3995,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3747
3995
|
format?: string | undefined;
|
|
3748
3996
|
label?: string | undefined;
|
|
3749
3997
|
valueLabels?: string | undefined;
|
|
3998
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3750
3999
|
nullValueLabel?: string | undefined;
|
|
3751
4000
|
};
|
|
3752
4001
|
domain: number[];
|
|
@@ -3772,6 +4021,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3772
4021
|
format?: string | undefined;
|
|
3773
4022
|
label?: string | undefined;
|
|
3774
4023
|
valueLabels?: string | undefined;
|
|
4024
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3775
4025
|
nullValueLabel?: string | undefined;
|
|
3776
4026
|
};
|
|
3777
4027
|
x: {
|
|
@@ -3780,6 +4030,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3780
4030
|
format?: string | undefined;
|
|
3781
4031
|
label?: string | undefined;
|
|
3782
4032
|
valueLabels?: string | undefined;
|
|
4033
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3783
4034
|
nullValueLabel?: string | undefined;
|
|
3784
4035
|
};
|
|
3785
4036
|
y: {
|
|
@@ -3788,6 +4039,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3788
4039
|
format?: string | undefined;
|
|
3789
4040
|
label?: string | undefined;
|
|
3790
4041
|
valueLabels?: string | undefined;
|
|
4042
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3791
4043
|
nullValueLabel?: string | undefined;
|
|
3792
4044
|
};
|
|
3793
4045
|
layers: ({
|
|
@@ -3804,6 +4056,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3804
4056
|
format?: string | undefined;
|
|
3805
4057
|
label?: string | undefined;
|
|
3806
4058
|
valueLabels?: string | undefined;
|
|
4059
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3807
4060
|
nullValueLabel?: string | undefined;
|
|
3808
4061
|
};
|
|
3809
4062
|
domain: number[];
|
|
@@ -3822,6 +4075,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3822
4075
|
format?: string | undefined;
|
|
3823
4076
|
label?: string | undefined;
|
|
3824
4077
|
valueLabels?: string | undefined;
|
|
4078
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3825
4079
|
nullValueLabel?: string | undefined;
|
|
3826
4080
|
};
|
|
3827
4081
|
domain: number[];
|
|
@@ -3845,6 +4099,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3845
4099
|
format?: string | undefined;
|
|
3846
4100
|
label?: string | undefined;
|
|
3847
4101
|
valueLabels?: string | undefined;
|
|
4102
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3848
4103
|
nullValueLabel?: string | undefined;
|
|
3849
4104
|
};
|
|
3850
4105
|
domain: number[];
|
|
@@ -3865,6 +4120,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3865
4120
|
format?: string | undefined;
|
|
3866
4121
|
label?: string | undefined;
|
|
3867
4122
|
valueLabels?: string | undefined;
|
|
4123
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3868
4124
|
nullValueLabel?: string | undefined;
|
|
3869
4125
|
} | undefined;
|
|
3870
4126
|
grouping?: {
|
|
@@ -3874,6 +4130,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3874
4130
|
format?: string | undefined;
|
|
3875
4131
|
label?: string | undefined;
|
|
3876
4132
|
valueLabels?: string | undefined;
|
|
4133
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3877
4134
|
nullValueLabel?: string | undefined;
|
|
3878
4135
|
};
|
|
3879
4136
|
order?: (string | number | null)[] | undefined;
|
|
@@ -3895,6 +4152,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3895
4152
|
format?: string | undefined;
|
|
3896
4153
|
label?: string | undefined;
|
|
3897
4154
|
valueLabels?: string | undefined;
|
|
4155
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3898
4156
|
nullValueLabel?: string | undefined;
|
|
3899
4157
|
};
|
|
3900
4158
|
order?: (string | number | null)[] | undefined;
|
|
@@ -3915,6 +4173,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3915
4173
|
format?: string | undefined;
|
|
3916
4174
|
label?: string | undefined;
|
|
3917
4175
|
valueLabels?: string | undefined;
|
|
4176
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3918
4177
|
nullValueLabel?: string | undefined;
|
|
3919
4178
|
};
|
|
3920
4179
|
}[] | undefined;
|
|
@@ -3930,6 +4189,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3930
4189
|
format?: string | undefined;
|
|
3931
4190
|
label?: string | undefined;
|
|
3932
4191
|
valueLabels?: string | undefined;
|
|
4192
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3933
4193
|
nullValueLabel?: string | undefined;
|
|
3934
4194
|
}[] | undefined;
|
|
3935
4195
|
} | undefined;
|
|
@@ -3951,6 +4211,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3951
4211
|
format?: string | undefined;
|
|
3952
4212
|
label?: string | undefined;
|
|
3953
4213
|
valueLabels?: string | undefined;
|
|
4214
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3954
4215
|
nullValueLabel?: string | undefined;
|
|
3955
4216
|
} | undefined;
|
|
3956
4217
|
scale?: "discrete" | undefined;
|
|
@@ -3967,6 +4228,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3967
4228
|
format?: string | undefined;
|
|
3968
4229
|
label?: string | undefined;
|
|
3969
4230
|
valueLabels?: string | undefined;
|
|
4231
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3970
4232
|
nullValueLabel?: string | undefined;
|
|
3971
4233
|
} | undefined;
|
|
3972
4234
|
scale?: "linear" | "log" | undefined;
|
|
@@ -3987,6 +4249,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
3987
4249
|
format?: string | undefined;
|
|
3988
4250
|
label?: string | undefined;
|
|
3989
4251
|
valueLabels?: string | undefined;
|
|
4252
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
3990
4253
|
nullValueLabel?: string | undefined;
|
|
3991
4254
|
} | undefined;
|
|
3992
4255
|
scale?: "discrete" | undefined;
|
|
@@ -4003,6 +4266,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
4003
4266
|
format?: string | undefined;
|
|
4004
4267
|
label?: string | undefined;
|
|
4005
4268
|
valueLabels?: string | undefined;
|
|
4269
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
4006
4270
|
nullValueLabel?: string | undefined;
|
|
4007
4271
|
} | undefined;
|
|
4008
4272
|
scale?: "linear" | "log" | undefined;
|
|
@@ -4021,6 +4285,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
4021
4285
|
format?: string | undefined;
|
|
4022
4286
|
label?: string | undefined;
|
|
4023
4287
|
valueLabels?: string | undefined;
|
|
4288
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
4024
4289
|
nullValueLabel?: string | undefined;
|
|
4025
4290
|
}[] | undefined;
|
|
4026
4291
|
highlight?: {
|
|
@@ -4029,6 +4294,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
4029
4294
|
format?: string | undefined;
|
|
4030
4295
|
label?: string | undefined;
|
|
4031
4296
|
valueLabels?: string | undefined;
|
|
4297
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
4032
4298
|
nullValueLabel?: string | undefined;
|
|
4033
4299
|
} | undefined;
|
|
4034
4300
|
trend?: {
|
|
@@ -4043,6 +4309,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
4043
4309
|
format?: string | undefined;
|
|
4044
4310
|
label?: string | undefined;
|
|
4045
4311
|
valueLabels?: string | undefined;
|
|
4312
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
4046
4313
|
nullValueLabel?: string | undefined;
|
|
4047
4314
|
};
|
|
4048
4315
|
domain: number[];
|
|
@@ -4060,6 +4327,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
4060
4327
|
format?: string | undefined;
|
|
4061
4328
|
label?: string | undefined;
|
|
4062
4329
|
valueLabels?: string | undefined;
|
|
4330
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
4063
4331
|
nullValueLabel?: string | undefined;
|
|
4064
4332
|
};
|
|
4065
4333
|
lineWidth?: number | undefined;
|
|
@@ -4075,6 +4343,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
4075
4343
|
format?: string | undefined;
|
|
4076
4344
|
label?: string | undefined;
|
|
4077
4345
|
valueLabels?: string | undefined;
|
|
4346
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
4078
4347
|
nullValueLabel?: string | undefined;
|
|
4079
4348
|
};
|
|
4080
4349
|
domain: number[];
|
|
@@ -4094,6 +4363,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
4094
4363
|
format?: string | undefined;
|
|
4095
4364
|
label?: string | undefined;
|
|
4096
4365
|
valueLabels?: string | undefined;
|
|
4366
|
+
valueLabelsMap?: Record<string, string> | undefined;
|
|
4097
4367
|
nullValueLabel?: string | undefined;
|
|
4098
4368
|
};
|
|
4099
4369
|
domain: number[];
|