@milaboratories/miplots4 1.0.179 → 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.
Files changed (194) hide show
  1. package/dist/MiPlots.d.ts.map +1 -1
  2. package/dist/MiPlots.js +16 -14
  3. package/dist/MiPlots.js.map +1 -1
  4. package/dist/common/ContinuousAxis.d.ts +3 -1
  5. package/dist/common/ContinuousAxis.d.ts.map +1 -1
  6. package/dist/common/ContinuousAxis.js +8 -8
  7. package/dist/common/ContinuousAxis.js.map +1 -1
  8. package/dist/common/Legend.d.ts +12 -1
  9. package/dist/common/Legend.d.ts.map +1 -1
  10. package/dist/common/Legend.js +14 -6
  11. package/dist/common/Legend.js.map +1 -1
  12. package/dist/index.d.ts +2 -2
  13. package/dist/index.d.ts.map +1 -1
  14. package/dist/scatterplot/ChartRenderer.d.ts +2 -2
  15. package/dist/scatterplot/ChartRenderer.d.ts.map +1 -1
  16. package/dist/scatterplot/ChartRenderer.js +155 -115
  17. package/dist/scatterplot/ChartRenderer.js.map +1 -1
  18. package/dist/scatterplot/ScatterplotSettingsImpl.d.ts +11 -1
  19. package/dist/scatterplot/ScatterplotSettingsImpl.d.ts.map +1 -1
  20. package/dist/scatterplot/ScatterplotSettingsImpl.js +20 -0
  21. package/dist/scatterplot/ScatterplotSettingsImpl.js.map +1 -1
  22. package/dist/scatterplot/components/ChartLayersData.d.ts +5 -0
  23. package/dist/scatterplot/components/ChartLayersData.d.ts.map +1 -1
  24. package/dist/scatterplot/components/ChartLayersData.js +115 -35
  25. package/dist/scatterplot/components/ChartLayersData.js.map +1 -1
  26. package/dist/scatterplot/components/types.d.ts +2 -0
  27. package/dist/scatterplot/components/types.d.ts.map +1 -1
  28. package/dist/scatterplot/getLayersData.d.ts +11 -2
  29. package/dist/scatterplot/getLayersData.d.ts.map +1 -1
  30. package/dist/scatterplot/getLayersData.js +36 -19
  31. package/dist/scatterplot/getLayersData.js.map +1 -1
  32. package/dist/scatterplot/index.d.ts.map +1 -1
  33. package/dist/scatterplot/index.js +51 -33
  34. package/dist/scatterplot/index.js.map +1 -1
  35. package/dist/scatterplot/linearRegression.js +1 -1
  36. package/dist/scatterplot/utils/createAesGetter.d.ts.map +1 -1
  37. package/dist/scatterplot/utils/createAesGetter.js +5 -3
  38. package/dist/scatterplot/utils/createAesGetter.js.map +1 -1
  39. package/dist/scatterplot/utils/createLegendInfo.d.ts +11 -2
  40. package/dist/scatterplot/utils/createLegendInfo.d.ts.map +1 -1
  41. package/dist/scatterplot/utils/createLegendInfo.js +21 -16
  42. package/dist/scatterplot/utils/createLegendInfo.js.map +1 -1
  43. package/dist/scatterplot-umap/ChartRenderer.d.ts +6 -6
  44. package/dist/scatterplot-umap/ChartRenderer.d.ts.map +1 -1
  45. package/dist/scatterplot-umap/ChartRenderer.js +99 -57
  46. package/dist/scatterplot-umap/ChartRenderer.js.map +1 -1
  47. package/dist/scatterplot-umap/SettingsImpl.d.ts +11 -1
  48. package/dist/scatterplot-umap/SettingsImpl.d.ts.map +1 -1
  49. package/dist/scatterplot-umap/SettingsImpl.js +21 -1
  50. package/dist/scatterplot-umap/SettingsImpl.js.map +1 -1
  51. package/dist/scatterplot-umap/components/LowerSVG.d.ts +3 -2
  52. package/dist/scatterplot-umap/components/LowerSVG.d.ts.map +1 -1
  53. package/dist/scatterplot-umap/components/LowerSVG.js +159 -108
  54. package/dist/scatterplot-umap/components/LowerSVG.js.map +1 -1
  55. package/dist/scatterplot-umap/components/SVGLayer.d.ts +1 -1
  56. package/dist/scatterplot-umap/components/SVGLayer.d.ts.map +1 -1
  57. package/dist/scatterplot-umap/components/SVGLayer.js +9 -8
  58. package/dist/scatterplot-umap/components/SVGLayer.js.map +1 -1
  59. package/dist/scatterplot-umap/index.d.ts +6 -1
  60. package/dist/scatterplot-umap/index.d.ts.map +1 -1
  61. package/dist/scatterplot-umap/index.js +65 -31
  62. package/dist/scatterplot-umap/index.js.map +1 -1
  63. package/dist/scatterplot-umap/types.d.ts +7 -0
  64. package/dist/scatterplot-umap/types.d.ts.map +1 -1
  65. package/dist/selection/ChartRenderer.d.ts +90 -0
  66. package/dist/selection/ChartRenderer.d.ts.map +1 -0
  67. package/dist/selection/ChartRenderer.js +254 -0
  68. package/dist/selection/ChartRenderer.js.map +1 -0
  69. package/dist/selection/SelectionSettingsImpl.d.ts +53 -0
  70. package/dist/selection/SelectionSettingsImpl.d.ts.map +1 -0
  71. package/dist/selection/SelectionSettingsImpl.js +47 -0
  72. package/dist/selection/SelectionSettingsImpl.js.map +1 -0
  73. package/dist/selection/components/Chart/Bars/GroupSelectedBars.d.ts +8 -0
  74. package/dist/selection/components/Chart/Bars/GroupSelectedBars.d.ts.map +1 -0
  75. package/dist/selection/components/Chart/Bars/GroupSelectedBars.js +57 -0
  76. package/dist/selection/components/Chart/Bars/GroupSelectedBars.js.map +1 -0
  77. package/dist/selection/components/Chart/Bars/StackedBars.d.ts +12 -0
  78. package/dist/selection/components/Chart/Bars/StackedBars.d.ts.map +1 -0
  79. package/dist/selection/components/Chart/Bars/StackedBars.js +58 -0
  80. package/dist/selection/components/Chart/Bars/StackedBars.js.map +1 -0
  81. package/dist/selection/components/Chart/Bars/UngroupedBars.d.ts +6 -0
  82. package/dist/selection/components/Chart/Bars/UngroupedBars.d.ts.map +1 -0
  83. package/dist/selection/components/Chart/Bars/UngroupedBars.js +38 -0
  84. package/dist/selection/components/Chart/Bars/UngroupedBars.js.map +1 -0
  85. package/dist/selection/components/Chart/Bars.d.ts +10 -0
  86. package/dist/selection/components/Chart/Bars.d.ts.map +1 -0
  87. package/dist/selection/components/Chart/Bars.js +48 -0
  88. package/dist/selection/components/Chart/Bars.js.map +1 -0
  89. package/dist/selection/components/Chart/ChartAxes.d.ts +7 -0
  90. package/dist/selection/components/Chart/ChartAxes.d.ts.map +1 -0
  91. package/dist/selection/components/Chart/ChartAxes.js +51 -0
  92. package/dist/selection/components/Chart/ChartAxes.js.map +1 -0
  93. package/dist/selection/components/Chart/ChartFrame.d.ts +9 -0
  94. package/dist/selection/components/Chart/ChartFrame.d.ts.map +1 -0
  95. package/dist/selection/components/Chart/ChartFrame.js +41 -0
  96. package/dist/selection/components/Chart/ChartFrame.js.map +1 -0
  97. package/dist/selection/components/Chart/Dividers.d.ts +8 -0
  98. package/dist/selection/components/Chart/Dividers.d.ts.map +1 -0
  99. package/dist/selection/components/Chart/Dividers.js +27 -0
  100. package/dist/selection/components/Chart/Dividers.js.map +1 -0
  101. package/dist/selection/components/Chart/Gridlines.d.ts +10 -0
  102. package/dist/selection/components/Chart/Gridlines.d.ts.map +1 -0
  103. package/dist/selection/components/Chart/Gridlines.js +32 -0
  104. package/dist/selection/components/Chart/Gridlines.js.map +1 -0
  105. package/dist/selection/components/Chart/Ribbons/GroupFlowRibbon.d.ts +9 -0
  106. package/dist/selection/components/Chart/Ribbons/GroupFlowRibbon.d.ts.map +1 -0
  107. package/dist/selection/components/Chart/Ribbons/GroupFlowRibbon.js +36 -0
  108. package/dist/selection/components/Chart/Ribbons/GroupFlowRibbon.js.map +1 -0
  109. package/dist/selection/components/Chart/Ribbons/MultiGroupRibbon.d.ts +6 -0
  110. package/dist/selection/components/Chart/Ribbons/MultiGroupRibbon.d.ts.map +1 -0
  111. package/dist/selection/components/Chart/Ribbons/MultiGroupRibbon.js +22 -0
  112. package/dist/selection/components/Chart/Ribbons/MultiGroupRibbon.js.map +1 -0
  113. package/dist/selection/components/Chart/Ribbons/SimpleRibbon.d.ts +10 -0
  114. package/dist/selection/components/Chart/Ribbons/SimpleRibbon.d.ts.map +1 -0
  115. package/dist/selection/components/Chart/Ribbons/SimpleRibbon.js +33 -0
  116. package/dist/selection/components/Chart/Ribbons/SimpleRibbon.js.map +1 -0
  117. package/dist/selection/components/Chart/Ribbons/StackedGroupFlowRibbon.d.ts +10 -0
  118. package/dist/selection/components/Chart/Ribbons/StackedGroupFlowRibbon.d.ts.map +1 -0
  119. package/dist/selection/components/Chart/Ribbons/StackedGroupFlowRibbon.js +65 -0
  120. package/dist/selection/components/Chart/Ribbons/StackedGroupFlowRibbon.js.map +1 -0
  121. package/dist/selection/components/Chart/Ribbons/ribbonPath.d.ts +10 -0
  122. package/dist/selection/components/Chart/Ribbons/ribbonPath.d.ts.map +1 -0
  123. package/dist/selection/components/Chart/Ribbons/ribbonPath.js +13 -0
  124. package/dist/selection/components/Chart/Ribbons/ribbonPath.js.map +1 -0
  125. package/dist/selection/components/Chart/Ribbons.d.ts +9 -0
  126. package/dist/selection/components/Chart/Ribbons.d.ts.map +1 -0
  127. package/dist/selection/components/Chart/Ribbons.js +58 -0
  128. package/dist/selection/components/Chart/Ribbons.js.map +1 -0
  129. package/dist/selection/components/Chart/StageCounts.d.ts +7 -0
  130. package/dist/selection/components/Chart/StageCounts.d.ts.map +1 -0
  131. package/dist/selection/components/Chart/StageCounts.js +20 -0
  132. package/dist/selection/components/Chart/StageCounts.js.map +1 -0
  133. package/dist/selection/components/Chart/types.d.ts +132 -0
  134. package/dist/selection/components/Chart/types.d.ts.map +1 -0
  135. package/dist/selection/components/Chart.d.ts +22 -0
  136. package/dist/selection/components/Chart.d.ts.map +1 -0
  137. package/dist/selection/components/Chart.js +97 -0
  138. package/dist/selection/components/Chart.js.map +1 -0
  139. package/dist/selection/components/ChartsGroup.d.ts +18 -0
  140. package/dist/selection/components/ChartsGroup.d.ts.map +1 -0
  141. package/dist/selection/components/ChartsGroup.js +181 -0
  142. package/dist/selection/components/ChartsGroup.js.map +1 -0
  143. package/dist/selection/components/FacetCell.d.ts +22 -0
  144. package/dist/selection/components/FacetCell.d.ts.map +1 -0
  145. package/dist/selection/components/FacetCell.js +18 -0
  146. package/dist/selection/components/FacetCell.js.map +1 -0
  147. package/dist/selection/components/types.d.ts +58 -0
  148. package/dist/selection/components/types.d.ts.map +1 -0
  149. package/dist/selection/constants.d.ts +25 -0
  150. package/dist/selection/constants.d.ts.map +1 -0
  151. package/dist/selection/constants.js +4 -0
  152. package/dist/selection/constants.js.map +1 -0
  153. package/dist/selection/createSelectionData.d.ts +50 -0
  154. package/dist/selection/createSelectionData.d.ts.map +1 -0
  155. package/dist/selection/createSelectionData.js +92 -0
  156. package/dist/selection/createSelectionData.js.map +1 -0
  157. package/dist/selection/index.d.ts +26 -0
  158. package/dist/selection/index.d.ts.map +1 -0
  159. package/dist/selection/index.js +96 -0
  160. package/dist/selection/index.js.map +1 -0
  161. package/dist/selection/utils.d.ts +4 -0
  162. package/dist/selection/utils.d.ts.map +1 -0
  163. package/dist/selection/utils.js +13 -0
  164. package/dist/selection/utils.js.map +1 -0
  165. package/dist/types/bubble.d.ts +42 -0
  166. package/dist/types/bubble.d.ts.map +1 -1
  167. package/dist/types/common.d.ts +38 -0
  168. package/dist/types/common.d.ts.map +1 -1
  169. package/dist/types/common.js +1 -0
  170. package/dist/types/common.js.map +1 -1
  171. package/dist/types/dendro.d.ts +103 -0
  172. package/dist/types/dendro.d.ts.map +1 -1
  173. package/dist/types/discrete.d.ts +167 -0
  174. package/dist/types/discrete.d.ts.map +1 -1
  175. package/dist/types/heatmap.d.ts +159 -0
  176. package/dist/types/heatmap.d.ts.map +1 -1
  177. package/dist/types/histogram.d.ts +22 -0
  178. package/dist/types/histogram.d.ts.map +1 -1
  179. package/dist/types/index.d.ts +3 -1
  180. package/dist/types/index.d.ts.map +1 -1
  181. package/dist/types/index.js +1 -0
  182. package/dist/types/scatterplot-umap.d.ts +951 -87
  183. package/dist/types/scatterplot-umap.d.ts.map +1 -1
  184. package/dist/types/scatterplot-umap.js +19 -3
  185. package/dist/types/scatterplot-umap.js.map +1 -1
  186. package/dist/types/scatterplot.d.ts +1647 -44
  187. package/dist/types/scatterplot.d.ts.map +1 -1
  188. package/dist/types/scatterplot.js +27 -3
  189. package/dist/types/scatterplot.js.map +1 -1
  190. package/dist/types/selection.d.ts +452 -0
  191. package/dist/types/selection.d.ts.map +1 -0
  192. package/dist/types/selection.js +53 -0
  193. package/dist/types/selection.js.map +1 -0
  194. 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[];
@@ -912,6 +966,875 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
912
966
  export type DotsLayer = z.infer<typeof DotsLayerSchema>;
913
967
  export type CurveLayer = z.infer<typeof CurveLayerSchema>;
914
968
  export type ScatterplotLayer = z.infer<typeof ScatterplotLayerSchema>;
969
+ declare const AdditionalCurveTrendSchema: z.ZodObject<{
970
+ color: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
971
+ type: z.ZodLiteral<"grouping">;
972
+ value: z.ZodString;
973
+ palette: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
974
+ }, "strip", z.ZodTypeAny, {
975
+ type: "grouping";
976
+ value: string;
977
+ palette?: string[] | undefined;
978
+ }, {
979
+ type: "grouping";
980
+ value: string;
981
+ palette?: string[] | undefined;
982
+ }>, z.ZodObject<{
983
+ columnName: z.ZodObject<{
984
+ type: z.ZodLiteral<"column">;
985
+ value: z.ZodString;
986
+ format: z.ZodOptional<z.ZodString>;
987
+ label: z.ZodOptional<z.ZodString>;
988
+ valueLabels: z.ZodOptional<z.ZodString>;
989
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
990
+ nullValueLabel: z.ZodOptional<z.ZodString>;
991
+ }, "strip", z.ZodTypeAny, {
992
+ type: "column";
993
+ value: string;
994
+ format?: string | undefined;
995
+ label?: string | undefined;
996
+ valueLabels?: string | undefined;
997
+ valueLabelsMap?: Record<string, string> | undefined;
998
+ nullValueLabel?: string | undefined;
999
+ }, {
1000
+ type: "column";
1001
+ value: string;
1002
+ format?: string | undefined;
1003
+ label?: string | undefined;
1004
+ valueLabels?: string | undefined;
1005
+ valueLabelsMap?: Record<string, string> | undefined;
1006
+ nullValueLabel?: string | undefined;
1007
+ }>;
1008
+ domain: z.ZodArray<z.ZodNumber, "many">;
1009
+ range: z.ZodArray<z.ZodString, "many">;
1010
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
1011
+ }, "strip", z.ZodTypeAny, {
1012
+ columnName: {
1013
+ type: "column";
1014
+ value: string;
1015
+ format?: string | undefined;
1016
+ label?: string | undefined;
1017
+ valueLabels?: string | undefined;
1018
+ valueLabelsMap?: Record<string, string> | undefined;
1019
+ nullValueLabel?: string | undefined;
1020
+ };
1021
+ domain: number[];
1022
+ range: string[];
1023
+ type?: "linear" | "log" | undefined;
1024
+ }, {
1025
+ columnName: {
1026
+ type: "column";
1027
+ value: string;
1028
+ format?: string | undefined;
1029
+ label?: string | undefined;
1030
+ valueLabels?: string | undefined;
1031
+ valueLabelsMap?: Record<string, string> | undefined;
1032
+ nullValueLabel?: string | undefined;
1033
+ };
1034
+ domain: number[];
1035
+ range: string[];
1036
+ type?: "linear" | "log" | undefined;
1037
+ }>]>>;
1038
+ bounded: z.ZodOptional<z.ZodBoolean>;
1039
+ }, "strip", z.ZodTypeAny, {
1040
+ color?: string | {
1041
+ type: "grouping";
1042
+ value: string;
1043
+ palette?: string[] | undefined;
1044
+ } | {
1045
+ columnName: {
1046
+ type: "column";
1047
+ value: string;
1048
+ format?: string | undefined;
1049
+ label?: string | undefined;
1050
+ valueLabels?: string | undefined;
1051
+ valueLabelsMap?: Record<string, string> | undefined;
1052
+ nullValueLabel?: string | undefined;
1053
+ };
1054
+ domain: number[];
1055
+ range: string[];
1056
+ type?: "linear" | "log" | undefined;
1057
+ } | undefined;
1058
+ bounded?: boolean | undefined;
1059
+ }, {
1060
+ color?: string | {
1061
+ type: "grouping";
1062
+ value: string;
1063
+ palette?: string[] | undefined;
1064
+ } | {
1065
+ columnName: {
1066
+ type: "column";
1067
+ value: string;
1068
+ format?: string | undefined;
1069
+ label?: string | undefined;
1070
+ valueLabels?: string | undefined;
1071
+ valueLabelsMap?: Record<string, string> | undefined;
1072
+ nullValueLabel?: string | undefined;
1073
+ };
1074
+ domain: number[];
1075
+ range: string[];
1076
+ type?: "linear" | "log" | undefined;
1077
+ } | undefined;
1078
+ bounded?: boolean | undefined;
1079
+ }>;
1080
+ declare const AdditionalCurveEntrySchema: z.ZodObject<{
1081
+ columnName: z.ZodObject<{
1082
+ type: z.ZodLiteral<"column">;
1083
+ value: z.ZodString;
1084
+ format: z.ZodOptional<z.ZodString>;
1085
+ label: z.ZodOptional<z.ZodString>;
1086
+ valueLabels: z.ZodOptional<z.ZodString>;
1087
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1088
+ nullValueLabel: z.ZodOptional<z.ZodString>;
1089
+ }, "strip", z.ZodTypeAny, {
1090
+ type: "column";
1091
+ value: string;
1092
+ format?: string | undefined;
1093
+ label?: string | undefined;
1094
+ valueLabels?: string | undefined;
1095
+ valueLabelsMap?: Record<string, string> | undefined;
1096
+ nullValueLabel?: string | undefined;
1097
+ }, {
1098
+ type: "column";
1099
+ value: string;
1100
+ format?: string | undefined;
1101
+ label?: string | undefined;
1102
+ valueLabels?: string | undefined;
1103
+ valueLabelsMap?: Record<string, string> | undefined;
1104
+ nullValueLabel?: string | undefined;
1105
+ }>;
1106
+ label: z.ZodString;
1107
+ lineShape: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
1108
+ lineWidth: z.ZodOptional<z.ZodNumber>;
1109
+ lineColor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1110
+ type: z.ZodLiteral<"grouping">;
1111
+ value: z.ZodString;
1112
+ palette: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1113
+ }, "strip", z.ZodTypeAny, {
1114
+ type: "grouping";
1115
+ value: string;
1116
+ palette?: string[] | undefined;
1117
+ }, {
1118
+ type: "grouping";
1119
+ value: string;
1120
+ palette?: string[] | undefined;
1121
+ }>, z.ZodObject<{
1122
+ columnName: z.ZodObject<{
1123
+ type: z.ZodLiteral<"column">;
1124
+ value: z.ZodString;
1125
+ format: z.ZodOptional<z.ZodString>;
1126
+ label: z.ZodOptional<z.ZodString>;
1127
+ valueLabels: z.ZodOptional<z.ZodString>;
1128
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1129
+ nullValueLabel: z.ZodOptional<z.ZodString>;
1130
+ }, "strip", z.ZodTypeAny, {
1131
+ type: "column";
1132
+ value: string;
1133
+ format?: string | undefined;
1134
+ label?: string | undefined;
1135
+ valueLabels?: string | undefined;
1136
+ valueLabelsMap?: Record<string, string> | undefined;
1137
+ nullValueLabel?: string | undefined;
1138
+ }, {
1139
+ type: "column";
1140
+ value: string;
1141
+ format?: string | undefined;
1142
+ label?: string | undefined;
1143
+ valueLabels?: string | undefined;
1144
+ valueLabelsMap?: Record<string, string> | undefined;
1145
+ nullValueLabel?: string | undefined;
1146
+ }>;
1147
+ domain: z.ZodArray<z.ZodNumber, "many">;
1148
+ range: z.ZodArray<z.ZodString, "many">;
1149
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
1150
+ }, "strip", z.ZodTypeAny, {
1151
+ columnName: {
1152
+ type: "column";
1153
+ value: string;
1154
+ format?: string | undefined;
1155
+ label?: string | undefined;
1156
+ valueLabels?: string | undefined;
1157
+ valueLabelsMap?: Record<string, string> | undefined;
1158
+ nullValueLabel?: string | undefined;
1159
+ };
1160
+ domain: number[];
1161
+ range: string[];
1162
+ type?: "linear" | "log" | undefined;
1163
+ }, {
1164
+ columnName: {
1165
+ type: "column";
1166
+ value: string;
1167
+ format?: string | undefined;
1168
+ label?: string | undefined;
1169
+ valueLabels?: string | undefined;
1170
+ valueLabelsMap?: Record<string, string> | undefined;
1171
+ nullValueLabel?: string | undefined;
1172
+ };
1173
+ domain: number[];
1174
+ range: string[];
1175
+ type?: "linear" | "log" | undefined;
1176
+ }>]>>;
1177
+ opacity: z.ZodOptional<z.ZodNumber>;
1178
+ showDots: z.ZodOptional<z.ZodBoolean>;
1179
+ trend: z.ZodOptional<z.ZodObject<{
1180
+ color: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1181
+ type: z.ZodLiteral<"grouping">;
1182
+ value: z.ZodString;
1183
+ palette: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1184
+ }, "strip", z.ZodTypeAny, {
1185
+ type: "grouping";
1186
+ value: string;
1187
+ palette?: string[] | undefined;
1188
+ }, {
1189
+ type: "grouping";
1190
+ value: string;
1191
+ palette?: string[] | undefined;
1192
+ }>, z.ZodObject<{
1193
+ columnName: z.ZodObject<{
1194
+ type: z.ZodLiteral<"column">;
1195
+ value: z.ZodString;
1196
+ format: z.ZodOptional<z.ZodString>;
1197
+ label: z.ZodOptional<z.ZodString>;
1198
+ valueLabels: z.ZodOptional<z.ZodString>;
1199
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1200
+ nullValueLabel: z.ZodOptional<z.ZodString>;
1201
+ }, "strip", z.ZodTypeAny, {
1202
+ type: "column";
1203
+ value: string;
1204
+ format?: string | undefined;
1205
+ label?: string | undefined;
1206
+ valueLabels?: string | undefined;
1207
+ valueLabelsMap?: Record<string, string> | undefined;
1208
+ nullValueLabel?: string | undefined;
1209
+ }, {
1210
+ type: "column";
1211
+ value: string;
1212
+ format?: string | undefined;
1213
+ label?: string | undefined;
1214
+ valueLabels?: string | undefined;
1215
+ valueLabelsMap?: Record<string, string> | undefined;
1216
+ nullValueLabel?: string | undefined;
1217
+ }>;
1218
+ domain: z.ZodArray<z.ZodNumber, "many">;
1219
+ range: z.ZodArray<z.ZodString, "many">;
1220
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
1221
+ }, "strip", z.ZodTypeAny, {
1222
+ columnName: {
1223
+ type: "column";
1224
+ value: string;
1225
+ format?: string | undefined;
1226
+ label?: string | undefined;
1227
+ valueLabels?: string | undefined;
1228
+ valueLabelsMap?: Record<string, string> | undefined;
1229
+ nullValueLabel?: string | undefined;
1230
+ };
1231
+ domain: number[];
1232
+ range: string[];
1233
+ type?: "linear" | "log" | undefined;
1234
+ }, {
1235
+ columnName: {
1236
+ type: "column";
1237
+ value: string;
1238
+ format?: string | undefined;
1239
+ label?: string | undefined;
1240
+ valueLabels?: string | undefined;
1241
+ valueLabelsMap?: Record<string, string> | undefined;
1242
+ nullValueLabel?: string | undefined;
1243
+ };
1244
+ domain: number[];
1245
+ range: string[];
1246
+ type?: "linear" | "log" | undefined;
1247
+ }>]>>;
1248
+ bounded: z.ZodOptional<z.ZodBoolean>;
1249
+ }, "strip", z.ZodTypeAny, {
1250
+ color?: string | {
1251
+ type: "grouping";
1252
+ value: string;
1253
+ palette?: string[] | undefined;
1254
+ } | {
1255
+ columnName: {
1256
+ type: "column";
1257
+ value: string;
1258
+ format?: string | undefined;
1259
+ label?: string | undefined;
1260
+ valueLabels?: string | undefined;
1261
+ valueLabelsMap?: Record<string, string> | undefined;
1262
+ nullValueLabel?: string | undefined;
1263
+ };
1264
+ domain: number[];
1265
+ range: string[];
1266
+ type?: "linear" | "log" | undefined;
1267
+ } | undefined;
1268
+ bounded?: boolean | undefined;
1269
+ }, {
1270
+ color?: string | {
1271
+ type: "grouping";
1272
+ value: string;
1273
+ palette?: string[] | undefined;
1274
+ } | {
1275
+ columnName: {
1276
+ type: "column";
1277
+ value: string;
1278
+ format?: string | undefined;
1279
+ label?: string | undefined;
1280
+ valueLabels?: string | undefined;
1281
+ valueLabelsMap?: Record<string, string> | undefined;
1282
+ nullValueLabel?: string | undefined;
1283
+ };
1284
+ domain: number[];
1285
+ range: string[];
1286
+ type?: "linear" | "log" | undefined;
1287
+ } | undefined;
1288
+ bounded?: boolean | undefined;
1289
+ }>>;
1290
+ }, "strip", z.ZodTypeAny, {
1291
+ label: string;
1292
+ columnName: {
1293
+ type: "column";
1294
+ value: string;
1295
+ format?: string | undefined;
1296
+ label?: string | undefined;
1297
+ valueLabels?: string | undefined;
1298
+ valueLabelsMap?: Record<string, string> | undefined;
1299
+ nullValueLabel?: string | undefined;
1300
+ };
1301
+ lineWidth?: number | undefined;
1302
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1303
+ lineColor?: string | {
1304
+ type: "grouping";
1305
+ value: string;
1306
+ palette?: string[] | undefined;
1307
+ } | {
1308
+ columnName: {
1309
+ type: "column";
1310
+ value: string;
1311
+ format?: string | undefined;
1312
+ label?: string | undefined;
1313
+ valueLabels?: string | undefined;
1314
+ valueLabelsMap?: Record<string, string> | undefined;
1315
+ nullValueLabel?: string | undefined;
1316
+ };
1317
+ domain: number[];
1318
+ range: string[];
1319
+ type?: "linear" | "log" | undefined;
1320
+ } | undefined;
1321
+ opacity?: number | undefined;
1322
+ trend?: {
1323
+ color?: string | {
1324
+ type: "grouping";
1325
+ value: string;
1326
+ palette?: string[] | undefined;
1327
+ } | {
1328
+ columnName: {
1329
+ type: "column";
1330
+ value: string;
1331
+ format?: string | undefined;
1332
+ label?: string | undefined;
1333
+ valueLabels?: string | undefined;
1334
+ valueLabelsMap?: Record<string, string> | undefined;
1335
+ nullValueLabel?: string | undefined;
1336
+ };
1337
+ domain: number[];
1338
+ range: string[];
1339
+ type?: "linear" | "log" | undefined;
1340
+ } | undefined;
1341
+ bounded?: boolean | undefined;
1342
+ } | undefined;
1343
+ showDots?: boolean | undefined;
1344
+ }, {
1345
+ label: string;
1346
+ columnName: {
1347
+ type: "column";
1348
+ value: string;
1349
+ format?: string | undefined;
1350
+ label?: string | undefined;
1351
+ valueLabels?: string | undefined;
1352
+ valueLabelsMap?: Record<string, string> | undefined;
1353
+ nullValueLabel?: string | undefined;
1354
+ };
1355
+ lineWidth?: number | undefined;
1356
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1357
+ lineColor?: string | {
1358
+ type: "grouping";
1359
+ value: string;
1360
+ palette?: string[] | undefined;
1361
+ } | {
1362
+ columnName: {
1363
+ type: "column";
1364
+ value: string;
1365
+ format?: string | undefined;
1366
+ label?: string | undefined;
1367
+ valueLabels?: string | undefined;
1368
+ valueLabelsMap?: Record<string, string> | undefined;
1369
+ nullValueLabel?: string | undefined;
1370
+ };
1371
+ domain: number[];
1372
+ range: string[];
1373
+ type?: "linear" | "log" | undefined;
1374
+ } | undefined;
1375
+ opacity?: number | undefined;
1376
+ trend?: {
1377
+ color?: string | {
1378
+ type: "grouping";
1379
+ value: string;
1380
+ palette?: string[] | undefined;
1381
+ } | {
1382
+ columnName: {
1383
+ type: "column";
1384
+ value: string;
1385
+ format?: string | undefined;
1386
+ label?: string | undefined;
1387
+ valueLabels?: string | undefined;
1388
+ valueLabelsMap?: Record<string, string> | undefined;
1389
+ nullValueLabel?: string | undefined;
1390
+ };
1391
+ domain: number[];
1392
+ range: string[];
1393
+ type?: "linear" | "log" | undefined;
1394
+ } | undefined;
1395
+ bounded?: boolean | undefined;
1396
+ } | undefined;
1397
+ showDots?: boolean | undefined;
1398
+ }>;
1399
+ declare const AdditionalCurvesSchema: z.ZodObject<{
1400
+ curves: z.ZodArray<z.ZodObject<{
1401
+ columnName: z.ZodObject<{
1402
+ type: z.ZodLiteral<"column">;
1403
+ value: z.ZodString;
1404
+ format: z.ZodOptional<z.ZodString>;
1405
+ label: z.ZodOptional<z.ZodString>;
1406
+ valueLabels: z.ZodOptional<z.ZodString>;
1407
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1408
+ nullValueLabel: z.ZodOptional<z.ZodString>;
1409
+ }, "strip", z.ZodTypeAny, {
1410
+ type: "column";
1411
+ value: string;
1412
+ format?: string | undefined;
1413
+ label?: string | undefined;
1414
+ valueLabels?: string | undefined;
1415
+ valueLabelsMap?: Record<string, string> | undefined;
1416
+ nullValueLabel?: string | undefined;
1417
+ }, {
1418
+ type: "column";
1419
+ value: string;
1420
+ format?: string | undefined;
1421
+ label?: string | undefined;
1422
+ valueLabels?: string | undefined;
1423
+ valueLabelsMap?: Record<string, string> | undefined;
1424
+ nullValueLabel?: string | undefined;
1425
+ }>;
1426
+ label: z.ZodString;
1427
+ lineShape: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
1428
+ lineWidth: z.ZodOptional<z.ZodNumber>;
1429
+ lineColor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1430
+ type: z.ZodLiteral<"grouping">;
1431
+ value: z.ZodString;
1432
+ palette: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1433
+ }, "strip", z.ZodTypeAny, {
1434
+ type: "grouping";
1435
+ value: string;
1436
+ palette?: string[] | undefined;
1437
+ }, {
1438
+ type: "grouping";
1439
+ value: string;
1440
+ palette?: string[] | undefined;
1441
+ }>, z.ZodObject<{
1442
+ columnName: z.ZodObject<{
1443
+ type: z.ZodLiteral<"column">;
1444
+ value: z.ZodString;
1445
+ format: z.ZodOptional<z.ZodString>;
1446
+ label: z.ZodOptional<z.ZodString>;
1447
+ valueLabels: z.ZodOptional<z.ZodString>;
1448
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1449
+ nullValueLabel: z.ZodOptional<z.ZodString>;
1450
+ }, "strip", z.ZodTypeAny, {
1451
+ type: "column";
1452
+ value: string;
1453
+ format?: string | undefined;
1454
+ label?: string | undefined;
1455
+ valueLabels?: string | undefined;
1456
+ valueLabelsMap?: Record<string, string> | undefined;
1457
+ nullValueLabel?: string | undefined;
1458
+ }, {
1459
+ type: "column";
1460
+ value: string;
1461
+ format?: string | undefined;
1462
+ label?: string | undefined;
1463
+ valueLabels?: string | undefined;
1464
+ valueLabelsMap?: Record<string, string> | undefined;
1465
+ nullValueLabel?: string | undefined;
1466
+ }>;
1467
+ domain: z.ZodArray<z.ZodNumber, "many">;
1468
+ range: z.ZodArray<z.ZodString, "many">;
1469
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
1470
+ }, "strip", z.ZodTypeAny, {
1471
+ columnName: {
1472
+ type: "column";
1473
+ value: string;
1474
+ format?: string | undefined;
1475
+ label?: string | undefined;
1476
+ valueLabels?: string | undefined;
1477
+ valueLabelsMap?: Record<string, string> | undefined;
1478
+ nullValueLabel?: string | undefined;
1479
+ };
1480
+ domain: number[];
1481
+ range: string[];
1482
+ type?: "linear" | "log" | undefined;
1483
+ }, {
1484
+ columnName: {
1485
+ type: "column";
1486
+ value: string;
1487
+ format?: string | undefined;
1488
+ label?: string | undefined;
1489
+ valueLabels?: string | undefined;
1490
+ valueLabelsMap?: Record<string, string> | undefined;
1491
+ nullValueLabel?: string | undefined;
1492
+ };
1493
+ domain: number[];
1494
+ range: string[];
1495
+ type?: "linear" | "log" | undefined;
1496
+ }>]>>;
1497
+ opacity: z.ZodOptional<z.ZodNumber>;
1498
+ showDots: z.ZodOptional<z.ZodBoolean>;
1499
+ trend: z.ZodOptional<z.ZodObject<{
1500
+ color: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1501
+ type: z.ZodLiteral<"grouping">;
1502
+ value: z.ZodString;
1503
+ palette: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1504
+ }, "strip", z.ZodTypeAny, {
1505
+ type: "grouping";
1506
+ value: string;
1507
+ palette?: string[] | undefined;
1508
+ }, {
1509
+ type: "grouping";
1510
+ value: string;
1511
+ palette?: string[] | undefined;
1512
+ }>, z.ZodObject<{
1513
+ columnName: z.ZodObject<{
1514
+ type: z.ZodLiteral<"column">;
1515
+ value: z.ZodString;
1516
+ format: z.ZodOptional<z.ZodString>;
1517
+ label: z.ZodOptional<z.ZodString>;
1518
+ valueLabels: z.ZodOptional<z.ZodString>;
1519
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1520
+ nullValueLabel: z.ZodOptional<z.ZodString>;
1521
+ }, "strip", z.ZodTypeAny, {
1522
+ type: "column";
1523
+ value: string;
1524
+ format?: string | undefined;
1525
+ label?: string | undefined;
1526
+ valueLabels?: string | undefined;
1527
+ valueLabelsMap?: Record<string, string> | undefined;
1528
+ nullValueLabel?: string | undefined;
1529
+ }, {
1530
+ type: "column";
1531
+ value: string;
1532
+ format?: string | undefined;
1533
+ label?: string | undefined;
1534
+ valueLabels?: string | undefined;
1535
+ valueLabelsMap?: Record<string, string> | undefined;
1536
+ nullValueLabel?: string | undefined;
1537
+ }>;
1538
+ domain: z.ZodArray<z.ZodNumber, "many">;
1539
+ range: z.ZodArray<z.ZodString, "many">;
1540
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
1541
+ }, "strip", z.ZodTypeAny, {
1542
+ columnName: {
1543
+ type: "column";
1544
+ value: string;
1545
+ format?: string | undefined;
1546
+ label?: string | undefined;
1547
+ valueLabels?: string | undefined;
1548
+ valueLabelsMap?: Record<string, string> | undefined;
1549
+ nullValueLabel?: string | undefined;
1550
+ };
1551
+ domain: number[];
1552
+ range: string[];
1553
+ type?: "linear" | "log" | undefined;
1554
+ }, {
1555
+ columnName: {
1556
+ type: "column";
1557
+ value: string;
1558
+ format?: string | undefined;
1559
+ label?: string | undefined;
1560
+ valueLabels?: string | undefined;
1561
+ valueLabelsMap?: Record<string, string> | undefined;
1562
+ nullValueLabel?: string | undefined;
1563
+ };
1564
+ domain: number[];
1565
+ range: string[];
1566
+ type?: "linear" | "log" | undefined;
1567
+ }>]>>;
1568
+ bounded: z.ZodOptional<z.ZodBoolean>;
1569
+ }, "strip", z.ZodTypeAny, {
1570
+ color?: string | {
1571
+ type: "grouping";
1572
+ value: string;
1573
+ palette?: string[] | undefined;
1574
+ } | {
1575
+ columnName: {
1576
+ type: "column";
1577
+ value: string;
1578
+ format?: string | undefined;
1579
+ label?: string | undefined;
1580
+ valueLabels?: string | undefined;
1581
+ valueLabelsMap?: Record<string, string> | undefined;
1582
+ nullValueLabel?: string | undefined;
1583
+ };
1584
+ domain: number[];
1585
+ range: string[];
1586
+ type?: "linear" | "log" | undefined;
1587
+ } | undefined;
1588
+ bounded?: boolean | undefined;
1589
+ }, {
1590
+ color?: string | {
1591
+ type: "grouping";
1592
+ value: string;
1593
+ palette?: string[] | undefined;
1594
+ } | {
1595
+ columnName: {
1596
+ type: "column";
1597
+ value: string;
1598
+ format?: string | undefined;
1599
+ label?: string | undefined;
1600
+ valueLabels?: string | undefined;
1601
+ valueLabelsMap?: Record<string, string> | undefined;
1602
+ nullValueLabel?: string | undefined;
1603
+ };
1604
+ domain: number[];
1605
+ range: string[];
1606
+ type?: "linear" | "log" | undefined;
1607
+ } | undefined;
1608
+ bounded?: boolean | undefined;
1609
+ }>>;
1610
+ }, "strip", z.ZodTypeAny, {
1611
+ label: string;
1612
+ columnName: {
1613
+ type: "column";
1614
+ value: string;
1615
+ format?: string | undefined;
1616
+ label?: string | undefined;
1617
+ valueLabels?: string | undefined;
1618
+ valueLabelsMap?: Record<string, string> | undefined;
1619
+ nullValueLabel?: string | undefined;
1620
+ };
1621
+ lineWidth?: number | undefined;
1622
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1623
+ lineColor?: string | {
1624
+ type: "grouping";
1625
+ value: string;
1626
+ palette?: string[] | undefined;
1627
+ } | {
1628
+ columnName: {
1629
+ type: "column";
1630
+ value: string;
1631
+ format?: string | undefined;
1632
+ label?: string | undefined;
1633
+ valueLabels?: string | undefined;
1634
+ valueLabelsMap?: Record<string, string> | undefined;
1635
+ nullValueLabel?: string | undefined;
1636
+ };
1637
+ domain: number[];
1638
+ range: string[];
1639
+ type?: "linear" | "log" | undefined;
1640
+ } | undefined;
1641
+ opacity?: number | undefined;
1642
+ trend?: {
1643
+ color?: string | {
1644
+ type: "grouping";
1645
+ value: string;
1646
+ palette?: string[] | undefined;
1647
+ } | {
1648
+ columnName: {
1649
+ type: "column";
1650
+ value: string;
1651
+ format?: string | undefined;
1652
+ label?: string | undefined;
1653
+ valueLabels?: string | undefined;
1654
+ valueLabelsMap?: Record<string, string> | undefined;
1655
+ nullValueLabel?: string | undefined;
1656
+ };
1657
+ domain: number[];
1658
+ range: string[];
1659
+ type?: "linear" | "log" | undefined;
1660
+ } | undefined;
1661
+ bounded?: boolean | undefined;
1662
+ } | undefined;
1663
+ showDots?: boolean | undefined;
1664
+ }, {
1665
+ label: string;
1666
+ columnName: {
1667
+ type: "column";
1668
+ value: string;
1669
+ format?: string | undefined;
1670
+ label?: string | undefined;
1671
+ valueLabels?: string | undefined;
1672
+ valueLabelsMap?: Record<string, string> | undefined;
1673
+ nullValueLabel?: string | undefined;
1674
+ };
1675
+ lineWidth?: number | undefined;
1676
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1677
+ lineColor?: string | {
1678
+ type: "grouping";
1679
+ value: string;
1680
+ palette?: string[] | undefined;
1681
+ } | {
1682
+ columnName: {
1683
+ type: "column";
1684
+ value: string;
1685
+ format?: string | undefined;
1686
+ label?: string | undefined;
1687
+ valueLabels?: string | undefined;
1688
+ valueLabelsMap?: Record<string, string> | undefined;
1689
+ nullValueLabel?: string | undefined;
1690
+ };
1691
+ domain: number[];
1692
+ range: string[];
1693
+ type?: "linear" | "log" | undefined;
1694
+ } | undefined;
1695
+ opacity?: number | undefined;
1696
+ trend?: {
1697
+ color?: string | {
1698
+ type: "grouping";
1699
+ value: string;
1700
+ palette?: string[] | undefined;
1701
+ } | {
1702
+ columnName: {
1703
+ type: "column";
1704
+ value: string;
1705
+ format?: string | undefined;
1706
+ label?: string | undefined;
1707
+ valueLabels?: string | undefined;
1708
+ valueLabelsMap?: Record<string, string> | undefined;
1709
+ nullValueLabel?: string | undefined;
1710
+ };
1711
+ domain: number[];
1712
+ range: string[];
1713
+ type?: "linear" | "log" | undefined;
1714
+ } | undefined;
1715
+ bounded?: boolean | undefined;
1716
+ } | undefined;
1717
+ showDots?: boolean | undefined;
1718
+ }>, "many">;
1719
+ smoothing: z.ZodOptional<z.ZodBoolean>;
1720
+ }, "strip", z.ZodTypeAny, {
1721
+ curves: {
1722
+ label: string;
1723
+ columnName: {
1724
+ type: "column";
1725
+ value: string;
1726
+ format?: string | undefined;
1727
+ label?: string | undefined;
1728
+ valueLabels?: string | undefined;
1729
+ valueLabelsMap?: Record<string, string> | undefined;
1730
+ nullValueLabel?: string | undefined;
1731
+ };
1732
+ lineWidth?: number | undefined;
1733
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1734
+ lineColor?: string | {
1735
+ type: "grouping";
1736
+ value: string;
1737
+ palette?: string[] | undefined;
1738
+ } | {
1739
+ columnName: {
1740
+ type: "column";
1741
+ value: string;
1742
+ format?: string | undefined;
1743
+ label?: string | undefined;
1744
+ valueLabels?: string | undefined;
1745
+ valueLabelsMap?: Record<string, string> | undefined;
1746
+ nullValueLabel?: string | undefined;
1747
+ };
1748
+ domain: number[];
1749
+ range: string[];
1750
+ type?: "linear" | "log" | undefined;
1751
+ } | undefined;
1752
+ opacity?: number | undefined;
1753
+ trend?: {
1754
+ color?: string | {
1755
+ type: "grouping";
1756
+ value: string;
1757
+ palette?: string[] | undefined;
1758
+ } | {
1759
+ columnName: {
1760
+ type: "column";
1761
+ value: string;
1762
+ format?: string | undefined;
1763
+ label?: string | undefined;
1764
+ valueLabels?: string | undefined;
1765
+ valueLabelsMap?: Record<string, string> | undefined;
1766
+ nullValueLabel?: string | undefined;
1767
+ };
1768
+ domain: number[];
1769
+ range: string[];
1770
+ type?: "linear" | "log" | undefined;
1771
+ } | undefined;
1772
+ bounded?: boolean | undefined;
1773
+ } | undefined;
1774
+ showDots?: boolean | undefined;
1775
+ }[];
1776
+ smoothing?: boolean | undefined;
1777
+ }, {
1778
+ curves: {
1779
+ label: string;
1780
+ columnName: {
1781
+ type: "column";
1782
+ value: string;
1783
+ format?: string | undefined;
1784
+ label?: string | undefined;
1785
+ valueLabels?: string | undefined;
1786
+ valueLabelsMap?: Record<string, string> | undefined;
1787
+ nullValueLabel?: string | undefined;
1788
+ };
1789
+ lineWidth?: number | undefined;
1790
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1791
+ lineColor?: string | {
1792
+ type: "grouping";
1793
+ value: string;
1794
+ palette?: string[] | undefined;
1795
+ } | {
1796
+ columnName: {
1797
+ type: "column";
1798
+ value: string;
1799
+ format?: string | undefined;
1800
+ label?: string | undefined;
1801
+ valueLabels?: string | undefined;
1802
+ valueLabelsMap?: Record<string, string> | undefined;
1803
+ nullValueLabel?: string | undefined;
1804
+ };
1805
+ domain: number[];
1806
+ range: string[];
1807
+ type?: "linear" | "log" | undefined;
1808
+ } | undefined;
1809
+ opacity?: number | undefined;
1810
+ trend?: {
1811
+ color?: string | {
1812
+ type: "grouping";
1813
+ value: string;
1814
+ palette?: string[] | undefined;
1815
+ } | {
1816
+ columnName: {
1817
+ type: "column";
1818
+ value: string;
1819
+ format?: string | undefined;
1820
+ label?: string | undefined;
1821
+ valueLabels?: string | undefined;
1822
+ valueLabelsMap?: Record<string, string> | undefined;
1823
+ nullValueLabel?: string | undefined;
1824
+ };
1825
+ domain: number[];
1826
+ range: string[];
1827
+ type?: "linear" | "log" | undefined;
1828
+ } | undefined;
1829
+ bounded?: boolean | undefined;
1830
+ } | undefined;
1831
+ showDots?: boolean | undefined;
1832
+ }[];
1833
+ smoothing?: boolean | undefined;
1834
+ }>;
1835
+ export type AdditionalCurveTrend = z.infer<typeof AdditionalCurveTrendSchema>;
1836
+ export type AdditionalCurveEntry = z.infer<typeof AdditionalCurveEntrySchema>;
1837
+ export type AdditionalCurves = z.infer<typeof AdditionalCurvesSchema>;
915
1838
  export declare const ScatterplotSettingsSchema: z.ZodObject<{
916
1839
  type: z.ZodLiteral<"scatterplot">;
917
1840
  title: z.ZodObject<{
@@ -955,6 +1878,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
955
1878
  format: z.ZodOptional<z.ZodString>;
956
1879
  label: z.ZodOptional<z.ZodString>;
957
1880
  valueLabels: z.ZodOptional<z.ZodString>;
1881
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
958
1882
  nullValueLabel: z.ZodOptional<z.ZodString>;
959
1883
  }, "strip", z.ZodTypeAny, {
960
1884
  type: "column";
@@ -962,6 +1886,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
962
1886
  format?: string | undefined;
963
1887
  label?: string | undefined;
964
1888
  valueLabels?: string | undefined;
1889
+ valueLabelsMap?: Record<string, string> | undefined;
965
1890
  nullValueLabel?: string | undefined;
966
1891
  }, {
967
1892
  type: "column";
@@ -969,6 +1894,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
969
1894
  format?: string | undefined;
970
1895
  label?: string | undefined;
971
1896
  valueLabels?: string | undefined;
1897
+ valueLabelsMap?: Record<string, string> | undefined;
972
1898
  nullValueLabel?: string | undefined;
973
1899
  }>, "many">>;
974
1900
  }, "strip", z.ZodTypeAny, {
@@ -979,6 +1905,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
979
1905
  format?: string | undefined;
980
1906
  label?: string | undefined;
981
1907
  valueLabels?: string | undefined;
1908
+ valueLabelsMap?: Record<string, string> | undefined;
982
1909
  nullValueLabel?: string | undefined;
983
1910
  }[] | undefined;
984
1911
  }, {
@@ -989,6 +1916,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
989
1916
  format?: string | undefined;
990
1917
  label?: string | undefined;
991
1918
  valueLabels?: string | undefined;
1919
+ valueLabelsMap?: Record<string, string> | undefined;
992
1920
  nullValueLabel?: string | undefined;
993
1921
  }[] | undefined;
994
1922
  }>>;
@@ -1025,6 +1953,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1025
1953
  format: z.ZodOptional<z.ZodString>;
1026
1954
  label: z.ZodOptional<z.ZodString>;
1027
1955
  valueLabels: z.ZodOptional<z.ZodString>;
1956
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1028
1957
  nullValueLabel: z.ZodOptional<z.ZodString>;
1029
1958
  }, "strip", z.ZodTypeAny, {
1030
1959
  type: "column";
@@ -1032,6 +1961,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1032
1961
  format?: string | undefined;
1033
1962
  label?: string | undefined;
1034
1963
  valueLabels?: string | undefined;
1964
+ valueLabelsMap?: Record<string, string> | undefined;
1035
1965
  nullValueLabel?: string | undefined;
1036
1966
  }, {
1037
1967
  type: "column";
@@ -1039,6 +1969,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1039
1969
  format?: string | undefined;
1040
1970
  label?: string | undefined;
1041
1971
  valueLabels?: string | undefined;
1972
+ valueLabelsMap?: Record<string, string> | undefined;
1042
1973
  nullValueLabel?: string | undefined;
1043
1974
  }>;
1044
1975
  x: z.ZodObject<{
@@ -1047,6 +1978,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1047
1978
  format: z.ZodOptional<z.ZodString>;
1048
1979
  label: z.ZodOptional<z.ZodString>;
1049
1980
  valueLabels: z.ZodOptional<z.ZodString>;
1981
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1050
1982
  nullValueLabel: z.ZodOptional<z.ZodString>;
1051
1983
  }, "strip", z.ZodTypeAny, {
1052
1984
  type: "column";
@@ -1054,6 +1986,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1054
1986
  format?: string | undefined;
1055
1987
  label?: string | undefined;
1056
1988
  valueLabels?: string | undefined;
1989
+ valueLabelsMap?: Record<string, string> | undefined;
1057
1990
  nullValueLabel?: string | undefined;
1058
1991
  }, {
1059
1992
  type: "column";
@@ -1061,6 +1994,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1061
1994
  format?: string | undefined;
1062
1995
  label?: string | undefined;
1063
1996
  valueLabels?: string | undefined;
1997
+ valueLabelsMap?: Record<string, string> | undefined;
1064
1998
  nullValueLabel?: string | undefined;
1065
1999
  }>;
1066
2000
  y: z.ZodObject<{
@@ -1069,6 +2003,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1069
2003
  format: z.ZodOptional<z.ZodString>;
1070
2004
  label: z.ZodOptional<z.ZodString>;
1071
2005
  valueLabels: z.ZodOptional<z.ZodString>;
2006
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1072
2007
  nullValueLabel: z.ZodOptional<z.ZodString>;
1073
2008
  }, "strip", z.ZodTypeAny, {
1074
2009
  type: "column";
@@ -1076,6 +2011,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1076
2011
  format?: string | undefined;
1077
2012
  label?: string | undefined;
1078
2013
  valueLabels?: string | undefined;
2014
+ valueLabelsMap?: Record<string, string> | undefined;
1079
2015
  nullValueLabel?: string | undefined;
1080
2016
  }, {
1081
2017
  type: "column";
@@ -1083,6 +2019,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1083
2019
  format?: string | undefined;
1084
2020
  label?: string | undefined;
1085
2021
  valueLabels?: string | undefined;
2022
+ valueLabelsMap?: Record<string, string> | undefined;
1086
2023
  nullValueLabel?: string | undefined;
1087
2024
  }>;
1088
2025
  xAxis: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
@@ -1092,6 +2029,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1092
2029
  format: z.ZodOptional<z.ZodString>;
1093
2030
  label: z.ZodOptional<z.ZodString>;
1094
2031
  valueLabels: z.ZodOptional<z.ZodString>;
2032
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1095
2033
  nullValueLabel: z.ZodOptional<z.ZodString>;
1096
2034
  }, "strip", z.ZodTypeAny, {
1097
2035
  type: "column";
@@ -1099,6 +2037,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1099
2037
  format?: string | undefined;
1100
2038
  label?: string | undefined;
1101
2039
  valueLabels?: string | undefined;
2040
+ valueLabelsMap?: Record<string, string> | undefined;
1102
2041
  nullValueLabel?: string | undefined;
1103
2042
  }, {
1104
2043
  type: "column";
@@ -1106,6 +2045,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1106
2045
  format?: string | undefined;
1107
2046
  label?: string | undefined;
1108
2047
  valueLabels?: string | undefined;
2048
+ valueLabelsMap?: Record<string, string> | undefined;
1109
2049
  nullValueLabel?: string | undefined;
1110
2050
  }>]>>;
1111
2051
  scale: z.ZodOptional<z.ZodLiteral<"discrete">>;
@@ -1124,6 +2064,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1124
2064
  format?: string | undefined;
1125
2065
  label?: string | undefined;
1126
2066
  valueLabels?: string | undefined;
2067
+ valueLabelsMap?: Record<string, string> | undefined;
1127
2068
  nullValueLabel?: string | undefined;
1128
2069
  } | undefined;
1129
2070
  scale?: "discrete" | undefined;
@@ -1141,6 +2082,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1141
2082
  format?: string | undefined;
1142
2083
  label?: string | undefined;
1143
2084
  valueLabels?: string | undefined;
2085
+ valueLabelsMap?: Record<string, string> | undefined;
1144
2086
  nullValueLabel?: string | undefined;
1145
2087
  } | undefined;
1146
2088
  scale?: "discrete" | undefined;
@@ -1157,6 +2099,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1157
2099
  format: z.ZodOptional<z.ZodString>;
1158
2100
  label: z.ZodOptional<z.ZodString>;
1159
2101
  valueLabels: z.ZodOptional<z.ZodString>;
2102
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1160
2103
  nullValueLabel: z.ZodOptional<z.ZodString>;
1161
2104
  }, "strip", z.ZodTypeAny, {
1162
2105
  type: "column";
@@ -1164,6 +2107,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1164
2107
  format?: string | undefined;
1165
2108
  label?: string | undefined;
1166
2109
  valueLabels?: string | undefined;
2110
+ valueLabelsMap?: Record<string, string> | undefined;
1167
2111
  nullValueLabel?: string | undefined;
1168
2112
  }, {
1169
2113
  type: "column";
@@ -1171,6 +2115,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1171
2115
  format?: string | undefined;
1172
2116
  label?: string | undefined;
1173
2117
  valueLabels?: string | undefined;
2118
+ valueLabelsMap?: Record<string, string> | undefined;
1174
2119
  nullValueLabel?: string | undefined;
1175
2120
  }>]>>;
1176
2121
  scale: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
@@ -1189,6 +2134,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1189
2134
  format?: string | undefined;
1190
2135
  label?: string | undefined;
1191
2136
  valueLabels?: string | undefined;
2137
+ valueLabelsMap?: Record<string, string> | undefined;
1192
2138
  nullValueLabel?: string | undefined;
1193
2139
  } | undefined;
1194
2140
  scale?: "linear" | "log" | undefined;
@@ -1207,6 +2153,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1207
2153
  format?: string | undefined;
1208
2154
  label?: string | undefined;
1209
2155
  valueLabels?: string | undefined;
2156
+ valueLabelsMap?: Record<string, string> | undefined;
1210
2157
  nullValueLabel?: string | undefined;
1211
2158
  } | undefined;
1212
2159
  scale?: "linear" | "log" | undefined;
@@ -1226,6 +2173,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1226
2173
  format: z.ZodOptional<z.ZodString>;
1227
2174
  label: z.ZodOptional<z.ZodString>;
1228
2175
  valueLabels: z.ZodOptional<z.ZodString>;
2176
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1229
2177
  nullValueLabel: z.ZodOptional<z.ZodString>;
1230
2178
  }, "strip", z.ZodTypeAny, {
1231
2179
  type: "column";
@@ -1233,6 +2181,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1233
2181
  format?: string | undefined;
1234
2182
  label?: string | undefined;
1235
2183
  valueLabels?: string | undefined;
2184
+ valueLabelsMap?: Record<string, string> | undefined;
1236
2185
  nullValueLabel?: string | undefined;
1237
2186
  }, {
1238
2187
  type: "column";
@@ -1240,6 +2189,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1240
2189
  format?: string | undefined;
1241
2190
  label?: string | undefined;
1242
2191
  valueLabels?: string | undefined;
2192
+ valueLabelsMap?: Record<string, string> | undefined;
1243
2193
  nullValueLabel?: string | undefined;
1244
2194
  }>]>>;
1245
2195
  scale: z.ZodOptional<z.ZodLiteral<"discrete">>;
@@ -1258,6 +2208,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1258
2208
  format?: string | undefined;
1259
2209
  label?: string | undefined;
1260
2210
  valueLabels?: string | undefined;
2211
+ valueLabelsMap?: Record<string, string> | undefined;
1261
2212
  nullValueLabel?: string | undefined;
1262
2213
  } | undefined;
1263
2214
  scale?: "discrete" | undefined;
@@ -1275,6 +2226,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1275
2226
  format?: string | undefined;
1276
2227
  label?: string | undefined;
1277
2228
  valueLabels?: string | undefined;
2229
+ valueLabelsMap?: Record<string, string> | undefined;
1278
2230
  nullValueLabel?: string | undefined;
1279
2231
  } | undefined;
1280
2232
  scale?: "discrete" | undefined;
@@ -1291,6 +2243,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1291
2243
  format: z.ZodOptional<z.ZodString>;
1292
2244
  label: z.ZodOptional<z.ZodString>;
1293
2245
  valueLabels: z.ZodOptional<z.ZodString>;
2246
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1294
2247
  nullValueLabel: z.ZodOptional<z.ZodString>;
1295
2248
  }, "strip", z.ZodTypeAny, {
1296
2249
  type: "column";
@@ -1298,6 +2251,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1298
2251
  format?: string | undefined;
1299
2252
  label?: string | undefined;
1300
2253
  valueLabels?: string | undefined;
2254
+ valueLabelsMap?: Record<string, string> | undefined;
1301
2255
  nullValueLabel?: string | undefined;
1302
2256
  }, {
1303
2257
  type: "column";
@@ -1305,6 +2259,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1305
2259
  format?: string | undefined;
1306
2260
  label?: string | undefined;
1307
2261
  valueLabels?: string | undefined;
2262
+ valueLabelsMap?: Record<string, string> | undefined;
1308
2263
  nullValueLabel?: string | undefined;
1309
2264
  }>]>>;
1310
2265
  scale: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
@@ -1323,6 +2278,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1323
2278
  format?: string | undefined;
1324
2279
  label?: string | undefined;
1325
2280
  valueLabels?: string | undefined;
2281
+ valueLabelsMap?: Record<string, string> | undefined;
1326
2282
  nullValueLabel?: string | undefined;
1327
2283
  } | undefined;
1328
2284
  scale?: "linear" | "log" | undefined;
@@ -1341,6 +2297,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1341
2297
  format?: string | undefined;
1342
2298
  label?: string | undefined;
1343
2299
  valueLabels?: string | undefined;
2300
+ valueLabelsMap?: Record<string, string> | undefined;
1344
2301
  nullValueLabel?: string | undefined;
1345
2302
  } | undefined;
1346
2303
  scale?: "linear" | "log" | undefined;
@@ -1360,6 +2317,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1360
2317
  format: z.ZodOptional<z.ZodString>;
1361
2318
  label: z.ZodOptional<z.ZodString>;
1362
2319
  valueLabels: z.ZodOptional<z.ZodString>;
2320
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1363
2321
  nullValueLabel: z.ZodOptional<z.ZodString>;
1364
2322
  }, "strip", z.ZodTypeAny, {
1365
2323
  type: "column";
@@ -1367,6 +2325,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1367
2325
  format?: string | undefined;
1368
2326
  label?: string | undefined;
1369
2327
  valueLabels?: string | undefined;
2328
+ valueLabelsMap?: Record<string, string> | undefined;
1370
2329
  nullValueLabel?: string | undefined;
1371
2330
  }, {
1372
2331
  type: "column";
@@ -1374,6 +2333,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1374
2333
  format?: string | undefined;
1375
2334
  label?: string | undefined;
1376
2335
  valueLabels?: string | undefined;
2336
+ valueLabelsMap?: Record<string, string> | undefined;
1377
2337
  nullValueLabel?: string | undefined;
1378
2338
  }>;
1379
2339
  order: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodNull]>, "many">>;
@@ -1410,6 +2370,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1410
2370
  format?: string | undefined;
1411
2371
  label?: string | undefined;
1412
2372
  valueLabels?: string | undefined;
2373
+ valueLabelsMap?: Record<string, string> | undefined;
1413
2374
  nullValueLabel?: string | undefined;
1414
2375
  };
1415
2376
  order?: (string | number | null)[] | undefined;
@@ -1430,6 +2391,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1430
2391
  format?: string | undefined;
1431
2392
  label?: string | undefined;
1432
2393
  valueLabels?: string | undefined;
2394
+ valueLabelsMap?: Record<string, string> | undefined;
1433
2395
  nullValueLabel?: string | undefined;
1434
2396
  };
1435
2397
  order?: (string | number | null)[] | undefined;
@@ -1451,6 +2413,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1451
2413
  format: z.ZodOptional<z.ZodString>;
1452
2414
  label: z.ZodOptional<z.ZodString>;
1453
2415
  valueLabels: z.ZodOptional<z.ZodString>;
2416
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1454
2417
  nullValueLabel: z.ZodOptional<z.ZodString>;
1455
2418
  }, "strip", z.ZodTypeAny, {
1456
2419
  type: "column";
@@ -1458,6 +2421,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1458
2421
  format?: string | undefined;
1459
2422
  label?: string | undefined;
1460
2423
  valueLabels?: string | undefined;
2424
+ valueLabelsMap?: Record<string, string> | undefined;
1461
2425
  nullValueLabel?: string | undefined;
1462
2426
  }, {
1463
2427
  type: "column";
@@ -1465,6 +2429,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1465
2429
  format?: string | undefined;
1466
2430
  label?: string | undefined;
1467
2431
  valueLabels?: string | undefined;
2432
+ valueLabelsMap?: Record<string, string> | undefined;
1468
2433
  nullValueLabel?: string | undefined;
1469
2434
  }>;
1470
2435
  }, "strip", z.ZodTypeAny, {
@@ -1474,6 +2439,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1474
2439
  format?: string | undefined;
1475
2440
  label?: string | undefined;
1476
2441
  valueLabels?: string | undefined;
2442
+ valueLabelsMap?: Record<string, string> | undefined;
1477
2443
  nullValueLabel?: string | undefined;
1478
2444
  };
1479
2445
  }, {
@@ -1483,6 +2449,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1483
2449
  format?: string | undefined;
1484
2450
  label?: string | undefined;
1485
2451
  valueLabels?: string | undefined;
2452
+ valueLabelsMap?: Record<string, string> | undefined;
1486
2453
  nullValueLabel?: string | undefined;
1487
2454
  };
1488
2455
  }>, "many">>;
@@ -1493,6 +2460,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1493
2460
  format: z.ZodOptional<z.ZodString>;
1494
2461
  label: z.ZodOptional<z.ZodString>;
1495
2462
  valueLabels: z.ZodOptional<z.ZodString>;
2463
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1496
2464
  nullValueLabel: z.ZodOptional<z.ZodString>;
1497
2465
  }, "strip", z.ZodTypeAny, {
1498
2466
  type: "column";
@@ -1500,6 +2468,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1500
2468
  format?: string | undefined;
1501
2469
  label?: string | undefined;
1502
2470
  valueLabels?: string | undefined;
2471
+ valueLabelsMap?: Record<string, string> | undefined;
1503
2472
  nullValueLabel?: string | undefined;
1504
2473
  }, {
1505
2474
  type: "column";
@@ -1507,6 +2476,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1507
2476
  format?: string | undefined;
1508
2477
  label?: string | undefined;
1509
2478
  valueLabels?: string | undefined;
2479
+ valueLabelsMap?: Record<string, string> | undefined;
1510
2480
  nullValueLabel?: string | undefined;
1511
2481
  }>;
1512
2482
  order: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodNull]>, "many">>;
@@ -1542,6 +2512,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1542
2512
  format?: string | undefined;
1543
2513
  label?: string | undefined;
1544
2514
  valueLabels?: string | undefined;
2515
+ valueLabelsMap?: Record<string, string> | undefined;
1545
2516
  nullValueLabel?: string | undefined;
1546
2517
  };
1547
2518
  order?: (string | number | null)[] | undefined;
@@ -1561,6 +2532,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1561
2532
  format?: string | undefined;
1562
2533
  label?: string | undefined;
1563
2534
  valueLabels?: string | undefined;
2535
+ valueLabelsMap?: Record<string, string> | undefined;
1564
2536
  nullValueLabel?: string | undefined;
1565
2537
  };
1566
2538
  order?: (string | number | null)[] | undefined;
@@ -1580,6 +2552,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1580
2552
  format: z.ZodOptional<z.ZodString>;
1581
2553
  label: z.ZodOptional<z.ZodString>;
1582
2554
  valueLabels: z.ZodOptional<z.ZodString>;
2555
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1583
2556
  nullValueLabel: z.ZodOptional<z.ZodString>;
1584
2557
  }, "strip", z.ZodTypeAny, {
1585
2558
  type: "column";
@@ -1587,6 +2560,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1587
2560
  format?: string | undefined;
1588
2561
  label?: string | undefined;
1589
2562
  valueLabels?: string | undefined;
2563
+ valueLabelsMap?: Record<string, string> | undefined;
1590
2564
  nullValueLabel?: string | undefined;
1591
2565
  }, {
1592
2566
  type: "column";
@@ -1594,6 +2568,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1594
2568
  format?: string | undefined;
1595
2569
  label?: string | undefined;
1596
2570
  valueLabels?: string | undefined;
2571
+ valueLabelsMap?: Record<string, string> | undefined;
1597
2572
  nullValueLabel?: string | undefined;
1598
2573
  }>, "many">>;
1599
2574
  label: z.ZodOptional<z.ZodObject<{
@@ -1602,6 +2577,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1602
2577
  format: z.ZodOptional<z.ZodString>;
1603
2578
  label: z.ZodOptional<z.ZodString>;
1604
2579
  valueLabels: z.ZodOptional<z.ZodString>;
2580
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1605
2581
  nullValueLabel: z.ZodOptional<z.ZodString>;
1606
2582
  }, "strip", z.ZodTypeAny, {
1607
2583
  type: "column";
@@ -1609,6 +2585,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1609
2585
  format?: string | undefined;
1610
2586
  label?: string | undefined;
1611
2587
  valueLabels?: string | undefined;
2588
+ valueLabelsMap?: Record<string, string> | undefined;
1612
2589
  nullValueLabel?: string | undefined;
1613
2590
  }, {
1614
2591
  type: "column";
@@ -1616,6 +2593,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1616
2593
  format?: string | undefined;
1617
2594
  label?: string | undefined;
1618
2595
  valueLabels?: string | undefined;
2596
+ valueLabelsMap?: Record<string, string> | undefined;
1619
2597
  nullValueLabel?: string | undefined;
1620
2598
  }>>;
1621
2599
  highlight: z.ZodOptional<z.ZodObject<{
@@ -1624,6 +2602,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1624
2602
  format: z.ZodOptional<z.ZodString>;
1625
2603
  label: z.ZodOptional<z.ZodString>;
1626
2604
  valueLabels: z.ZodOptional<z.ZodString>;
2605
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1627
2606
  nullValueLabel: z.ZodOptional<z.ZodString>;
1628
2607
  }, "strip", z.ZodTypeAny, {
1629
2608
  type: "column";
@@ -1631,6 +2610,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1631
2610
  format?: string | undefined;
1632
2611
  label?: string | undefined;
1633
2612
  valueLabels?: string | undefined;
2613
+ valueLabelsMap?: Record<string, string> | undefined;
1634
2614
  nullValueLabel?: string | undefined;
1635
2615
  }, {
1636
2616
  type: "column";
@@ -1638,6 +2618,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1638
2618
  format?: string | undefined;
1639
2619
  label?: string | undefined;
1640
2620
  valueLabels?: string | undefined;
2621
+ valueLabelsMap?: Record<string, string> | undefined;
1641
2622
  nullValueLabel?: string | undefined;
1642
2623
  }>>;
1643
2624
  trend: z.ZodOptional<z.ZodObject<{
@@ -1660,89 +2641,532 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1660
2641
  format: z.ZodOptional<z.ZodString>;
1661
2642
  label: z.ZodOptional<z.ZodString>;
1662
2643
  valueLabels: z.ZodOptional<z.ZodString>;
2644
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2645
+ nullValueLabel: z.ZodOptional<z.ZodString>;
2646
+ }, "strip", z.ZodTypeAny, {
2647
+ type: "column";
2648
+ value: string;
2649
+ format?: string | undefined;
2650
+ label?: string | undefined;
2651
+ valueLabels?: string | undefined;
2652
+ valueLabelsMap?: Record<string, string> | undefined;
2653
+ nullValueLabel?: string | undefined;
2654
+ }, {
2655
+ type: "column";
2656
+ value: string;
2657
+ format?: string | undefined;
2658
+ label?: string | undefined;
2659
+ valueLabels?: string | undefined;
2660
+ valueLabelsMap?: Record<string, string> | undefined;
2661
+ nullValueLabel?: string | undefined;
2662
+ }>;
2663
+ domain: z.ZodArray<z.ZodNumber, "many">;
2664
+ range: z.ZodArray<z.ZodString, "many">;
2665
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
2666
+ }, "strip", z.ZodTypeAny, {
2667
+ columnName: {
2668
+ type: "column";
2669
+ value: string;
2670
+ format?: string | undefined;
2671
+ label?: string | undefined;
2672
+ valueLabels?: string | undefined;
2673
+ valueLabelsMap?: Record<string, string> | undefined;
2674
+ nullValueLabel?: string | undefined;
2675
+ };
2676
+ domain: number[];
2677
+ range: string[];
2678
+ type?: "linear" | "log" | undefined;
2679
+ }, {
2680
+ columnName: {
2681
+ type: "column";
2682
+ value: string;
2683
+ format?: string | undefined;
2684
+ label?: string | undefined;
2685
+ valueLabels?: string | undefined;
2686
+ valueLabelsMap?: Record<string, string> | undefined;
2687
+ nullValueLabel?: string | undefined;
2688
+ };
2689
+ domain: number[];
2690
+ range: string[];
2691
+ type?: "linear" | "log" | undefined;
2692
+ }>]>>>;
2693
+ bounded: z.ZodOptional<z.ZodBoolean>;
2694
+ }, "strip", z.ZodTypeAny, {
2695
+ color?: string | {
2696
+ type: "grouping";
2697
+ value: string;
2698
+ palette?: string[] | undefined;
2699
+ } | {
2700
+ columnName: {
2701
+ type: "column";
2702
+ value: string;
2703
+ format?: string | undefined;
2704
+ label?: string | undefined;
2705
+ valueLabels?: string | undefined;
2706
+ valueLabelsMap?: Record<string, string> | undefined;
2707
+ nullValueLabel?: string | undefined;
2708
+ };
2709
+ domain: number[];
2710
+ range: string[];
2711
+ type?: "linear" | "log" | undefined;
2712
+ } | undefined;
2713
+ bounded?: boolean | undefined;
2714
+ }, {
2715
+ color?: string | {
2716
+ type: "grouping";
2717
+ value: string;
2718
+ palette?: string[] | undefined;
2719
+ } | {
2720
+ columnName: {
2721
+ type: "column";
2722
+ value: string;
2723
+ format?: string | undefined;
2724
+ label?: string | undefined;
2725
+ valueLabels?: string | undefined;
2726
+ valueLabelsMap?: Record<string, string> | undefined;
2727
+ nullValueLabel?: string | undefined;
2728
+ };
2729
+ domain: number[];
2730
+ range: string[];
2731
+ type?: "linear" | "log" | undefined;
2732
+ } | undefined;
2733
+ bounded?: boolean | undefined;
2734
+ }>>;
2735
+ additionalCurves: z.ZodOptional<z.ZodObject<{
2736
+ curves: z.ZodArray<z.ZodObject<{
2737
+ columnName: z.ZodObject<{
2738
+ type: z.ZodLiteral<"column">;
2739
+ value: z.ZodString;
2740
+ format: z.ZodOptional<z.ZodString>;
2741
+ label: z.ZodOptional<z.ZodString>;
2742
+ valueLabels: z.ZodOptional<z.ZodString>;
2743
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1663
2744
  nullValueLabel: z.ZodOptional<z.ZodString>;
1664
2745
  }, "strip", z.ZodTypeAny, {
1665
- type: "column";
1666
- value: string;
1667
- format?: string | undefined;
1668
- label?: string | undefined;
1669
- valueLabels?: string | undefined;
1670
- nullValueLabel?: string | undefined;
2746
+ type: "column";
2747
+ value: string;
2748
+ format?: string | undefined;
2749
+ label?: string | undefined;
2750
+ valueLabels?: string | undefined;
2751
+ valueLabelsMap?: Record<string, string> | undefined;
2752
+ nullValueLabel?: string | undefined;
2753
+ }, {
2754
+ type: "column";
2755
+ value: string;
2756
+ format?: string | undefined;
2757
+ label?: string | undefined;
2758
+ valueLabels?: string | undefined;
2759
+ valueLabelsMap?: Record<string, string> | undefined;
2760
+ nullValueLabel?: string | undefined;
2761
+ }>;
2762
+ label: z.ZodString;
2763
+ lineShape: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
2764
+ lineWidth: z.ZodOptional<z.ZodNumber>;
2765
+ lineColor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
2766
+ type: z.ZodLiteral<"grouping">;
2767
+ value: z.ZodString;
2768
+ palette: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2769
+ }, "strip", z.ZodTypeAny, {
2770
+ type: "grouping";
2771
+ value: string;
2772
+ palette?: string[] | undefined;
2773
+ }, {
2774
+ type: "grouping";
2775
+ value: string;
2776
+ palette?: string[] | undefined;
2777
+ }>, z.ZodObject<{
2778
+ columnName: z.ZodObject<{
2779
+ type: z.ZodLiteral<"column">;
2780
+ value: z.ZodString;
2781
+ format: z.ZodOptional<z.ZodString>;
2782
+ label: z.ZodOptional<z.ZodString>;
2783
+ valueLabels: z.ZodOptional<z.ZodString>;
2784
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2785
+ nullValueLabel: z.ZodOptional<z.ZodString>;
2786
+ }, "strip", z.ZodTypeAny, {
2787
+ type: "column";
2788
+ value: string;
2789
+ format?: string | undefined;
2790
+ label?: string | undefined;
2791
+ valueLabels?: string | undefined;
2792
+ valueLabelsMap?: Record<string, string> | undefined;
2793
+ nullValueLabel?: string | undefined;
2794
+ }, {
2795
+ type: "column";
2796
+ value: string;
2797
+ format?: string | undefined;
2798
+ label?: string | undefined;
2799
+ valueLabels?: string | undefined;
2800
+ valueLabelsMap?: Record<string, string> | undefined;
2801
+ nullValueLabel?: string | undefined;
2802
+ }>;
2803
+ domain: z.ZodArray<z.ZodNumber, "many">;
2804
+ range: z.ZodArray<z.ZodString, "many">;
2805
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
2806
+ }, "strip", z.ZodTypeAny, {
2807
+ columnName: {
2808
+ type: "column";
2809
+ value: string;
2810
+ format?: string | undefined;
2811
+ label?: string | undefined;
2812
+ valueLabels?: string | undefined;
2813
+ valueLabelsMap?: Record<string, string> | undefined;
2814
+ nullValueLabel?: string | undefined;
2815
+ };
2816
+ domain: number[];
2817
+ range: string[];
2818
+ type?: "linear" | "log" | undefined;
1671
2819
  }, {
1672
- type: "column";
1673
- value: string;
1674
- format?: string | undefined;
1675
- label?: string | undefined;
1676
- valueLabels?: string | undefined;
1677
- nullValueLabel?: string | undefined;
1678
- }>;
1679
- domain: z.ZodArray<z.ZodNumber, "many">;
1680
- range: z.ZodArray<z.ZodString, "many">;
1681
- type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
2820
+ columnName: {
2821
+ type: "column";
2822
+ value: string;
2823
+ format?: string | undefined;
2824
+ label?: string | undefined;
2825
+ valueLabels?: string | undefined;
2826
+ valueLabelsMap?: Record<string, string> | undefined;
2827
+ nullValueLabel?: string | undefined;
2828
+ };
2829
+ domain: number[];
2830
+ range: string[];
2831
+ type?: "linear" | "log" | undefined;
2832
+ }>]>>;
2833
+ opacity: z.ZodOptional<z.ZodNumber>;
2834
+ showDots: z.ZodOptional<z.ZodBoolean>;
2835
+ trend: z.ZodOptional<z.ZodObject<{
2836
+ color: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
2837
+ type: z.ZodLiteral<"grouping">;
2838
+ value: z.ZodString;
2839
+ palette: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2840
+ }, "strip", z.ZodTypeAny, {
2841
+ type: "grouping";
2842
+ value: string;
2843
+ palette?: string[] | undefined;
2844
+ }, {
2845
+ type: "grouping";
2846
+ value: string;
2847
+ palette?: string[] | undefined;
2848
+ }>, z.ZodObject<{
2849
+ columnName: z.ZodObject<{
2850
+ type: z.ZodLiteral<"column">;
2851
+ value: z.ZodString;
2852
+ format: z.ZodOptional<z.ZodString>;
2853
+ label: z.ZodOptional<z.ZodString>;
2854
+ valueLabels: z.ZodOptional<z.ZodString>;
2855
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2856
+ nullValueLabel: z.ZodOptional<z.ZodString>;
2857
+ }, "strip", z.ZodTypeAny, {
2858
+ type: "column";
2859
+ value: string;
2860
+ format?: string | undefined;
2861
+ label?: string | undefined;
2862
+ valueLabels?: string | undefined;
2863
+ valueLabelsMap?: Record<string, string> | undefined;
2864
+ nullValueLabel?: string | undefined;
2865
+ }, {
2866
+ type: "column";
2867
+ value: string;
2868
+ format?: string | undefined;
2869
+ label?: string | undefined;
2870
+ valueLabels?: string | undefined;
2871
+ valueLabelsMap?: Record<string, string> | undefined;
2872
+ nullValueLabel?: string | undefined;
2873
+ }>;
2874
+ domain: z.ZodArray<z.ZodNumber, "many">;
2875
+ range: z.ZodArray<z.ZodString, "many">;
2876
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
2877
+ }, "strip", z.ZodTypeAny, {
2878
+ columnName: {
2879
+ type: "column";
2880
+ value: string;
2881
+ format?: string | undefined;
2882
+ label?: string | undefined;
2883
+ valueLabels?: string | undefined;
2884
+ valueLabelsMap?: Record<string, string> | undefined;
2885
+ nullValueLabel?: string | undefined;
2886
+ };
2887
+ domain: number[];
2888
+ range: string[];
2889
+ type?: "linear" | "log" | undefined;
2890
+ }, {
2891
+ columnName: {
2892
+ type: "column";
2893
+ value: string;
2894
+ format?: string | undefined;
2895
+ label?: string | undefined;
2896
+ valueLabels?: string | undefined;
2897
+ valueLabelsMap?: Record<string, string> | undefined;
2898
+ nullValueLabel?: string | undefined;
2899
+ };
2900
+ domain: number[];
2901
+ range: string[];
2902
+ type?: "linear" | "log" | undefined;
2903
+ }>]>>;
2904
+ bounded: z.ZodOptional<z.ZodBoolean>;
2905
+ }, "strip", z.ZodTypeAny, {
2906
+ color?: string | {
2907
+ type: "grouping";
2908
+ value: string;
2909
+ palette?: string[] | undefined;
2910
+ } | {
2911
+ columnName: {
2912
+ type: "column";
2913
+ value: string;
2914
+ format?: string | undefined;
2915
+ label?: string | undefined;
2916
+ valueLabels?: string | undefined;
2917
+ valueLabelsMap?: Record<string, string> | undefined;
2918
+ nullValueLabel?: string | undefined;
2919
+ };
2920
+ domain: number[];
2921
+ range: string[];
2922
+ type?: "linear" | "log" | undefined;
2923
+ } | undefined;
2924
+ bounded?: boolean | undefined;
2925
+ }, {
2926
+ color?: string | {
2927
+ type: "grouping";
2928
+ value: string;
2929
+ palette?: string[] | undefined;
2930
+ } | {
2931
+ columnName: {
2932
+ type: "column";
2933
+ value: string;
2934
+ format?: string | undefined;
2935
+ label?: string | undefined;
2936
+ valueLabels?: string | undefined;
2937
+ valueLabelsMap?: Record<string, string> | undefined;
2938
+ nullValueLabel?: string | undefined;
2939
+ };
2940
+ domain: number[];
2941
+ range: string[];
2942
+ type?: "linear" | "log" | undefined;
2943
+ } | undefined;
2944
+ bounded?: boolean | undefined;
2945
+ }>>;
1682
2946
  }, "strip", z.ZodTypeAny, {
2947
+ label: string;
1683
2948
  columnName: {
1684
2949
  type: "column";
1685
2950
  value: string;
1686
2951
  format?: string | undefined;
1687
2952
  label?: string | undefined;
1688
2953
  valueLabels?: string | undefined;
2954
+ valueLabelsMap?: Record<string, string> | undefined;
1689
2955
  nullValueLabel?: string | undefined;
1690
2956
  };
1691
- domain: number[];
1692
- range: string[];
1693
- type?: "linear" | "log" | undefined;
2957
+ lineWidth?: number | undefined;
2958
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
2959
+ lineColor?: string | {
2960
+ type: "grouping";
2961
+ value: string;
2962
+ palette?: string[] | undefined;
2963
+ } | {
2964
+ columnName: {
2965
+ type: "column";
2966
+ value: string;
2967
+ format?: string | undefined;
2968
+ label?: string | undefined;
2969
+ valueLabels?: string | undefined;
2970
+ valueLabelsMap?: Record<string, string> | undefined;
2971
+ nullValueLabel?: string | undefined;
2972
+ };
2973
+ domain: number[];
2974
+ range: string[];
2975
+ type?: "linear" | "log" | undefined;
2976
+ } | undefined;
2977
+ opacity?: number | undefined;
2978
+ trend?: {
2979
+ color?: string | {
2980
+ type: "grouping";
2981
+ value: string;
2982
+ palette?: string[] | undefined;
2983
+ } | {
2984
+ columnName: {
2985
+ type: "column";
2986
+ value: string;
2987
+ format?: string | undefined;
2988
+ label?: string | undefined;
2989
+ valueLabels?: string | undefined;
2990
+ valueLabelsMap?: Record<string, string> | undefined;
2991
+ nullValueLabel?: string | undefined;
2992
+ };
2993
+ domain: number[];
2994
+ range: string[];
2995
+ type?: "linear" | "log" | undefined;
2996
+ } | undefined;
2997
+ bounded?: boolean | undefined;
2998
+ } | undefined;
2999
+ showDots?: boolean | undefined;
1694
3000
  }, {
3001
+ label: string;
1695
3002
  columnName: {
1696
3003
  type: "column";
1697
3004
  value: string;
1698
3005
  format?: string | undefined;
1699
3006
  label?: string | undefined;
1700
3007
  valueLabels?: string | undefined;
3008
+ valueLabelsMap?: Record<string, string> | undefined;
1701
3009
  nullValueLabel?: string | undefined;
1702
3010
  };
1703
- domain: number[];
1704
- range: string[];
1705
- type?: "linear" | "log" | undefined;
1706
- }>]>>>;
1707
- bounded: z.ZodOptional<z.ZodBoolean>;
3011
+ lineWidth?: number | undefined;
3012
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
3013
+ lineColor?: string | {
3014
+ type: "grouping";
3015
+ value: string;
3016
+ palette?: string[] | undefined;
3017
+ } | {
3018
+ columnName: {
3019
+ type: "column";
3020
+ value: string;
3021
+ format?: string | undefined;
3022
+ label?: string | undefined;
3023
+ valueLabels?: string | undefined;
3024
+ valueLabelsMap?: Record<string, string> | undefined;
3025
+ nullValueLabel?: string | undefined;
3026
+ };
3027
+ domain: number[];
3028
+ range: string[];
3029
+ type?: "linear" | "log" | undefined;
3030
+ } | undefined;
3031
+ opacity?: number | undefined;
3032
+ trend?: {
3033
+ color?: string | {
3034
+ type: "grouping";
3035
+ value: string;
3036
+ palette?: string[] | undefined;
3037
+ } | {
3038
+ columnName: {
3039
+ type: "column";
3040
+ value: string;
3041
+ format?: string | undefined;
3042
+ label?: string | undefined;
3043
+ valueLabels?: string | undefined;
3044
+ valueLabelsMap?: Record<string, string> | undefined;
3045
+ nullValueLabel?: string | undefined;
3046
+ };
3047
+ domain: number[];
3048
+ range: string[];
3049
+ type?: "linear" | "log" | undefined;
3050
+ } | undefined;
3051
+ bounded?: boolean | undefined;
3052
+ } | undefined;
3053
+ showDots?: boolean | undefined;
3054
+ }>, "many">;
3055
+ smoothing: z.ZodOptional<z.ZodBoolean>;
1708
3056
  }, "strip", z.ZodTypeAny, {
1709
- color?: string | {
1710
- type: "grouping";
1711
- value: string;
1712
- palette?: string[] | undefined;
1713
- } | {
3057
+ curves: {
3058
+ label: string;
1714
3059
  columnName: {
1715
3060
  type: "column";
1716
3061
  value: string;
1717
3062
  format?: string | undefined;
1718
3063
  label?: string | undefined;
1719
3064
  valueLabels?: string | undefined;
3065
+ valueLabelsMap?: Record<string, string> | undefined;
1720
3066
  nullValueLabel?: string | undefined;
1721
3067
  };
1722
- domain: number[];
1723
- range: string[];
1724
- type?: "linear" | "log" | undefined;
1725
- } | undefined;
1726
- bounded?: boolean | undefined;
3068
+ lineWidth?: number | undefined;
3069
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
3070
+ lineColor?: string | {
3071
+ type: "grouping";
3072
+ value: string;
3073
+ palette?: string[] | undefined;
3074
+ } | {
3075
+ columnName: {
3076
+ type: "column";
3077
+ value: string;
3078
+ format?: string | undefined;
3079
+ label?: string | undefined;
3080
+ valueLabels?: string | undefined;
3081
+ valueLabelsMap?: Record<string, string> | undefined;
3082
+ nullValueLabel?: string | undefined;
3083
+ };
3084
+ domain: number[];
3085
+ range: string[];
3086
+ type?: "linear" | "log" | undefined;
3087
+ } | undefined;
3088
+ opacity?: number | undefined;
3089
+ trend?: {
3090
+ color?: string | {
3091
+ type: "grouping";
3092
+ value: string;
3093
+ palette?: string[] | undefined;
3094
+ } | {
3095
+ columnName: {
3096
+ type: "column";
3097
+ value: string;
3098
+ format?: string | undefined;
3099
+ label?: string | undefined;
3100
+ valueLabels?: string | undefined;
3101
+ valueLabelsMap?: Record<string, string> | undefined;
3102
+ nullValueLabel?: string | undefined;
3103
+ };
3104
+ domain: number[];
3105
+ range: string[];
3106
+ type?: "linear" | "log" | undefined;
3107
+ } | undefined;
3108
+ bounded?: boolean | undefined;
3109
+ } | undefined;
3110
+ showDots?: boolean | undefined;
3111
+ }[];
3112
+ smoothing?: boolean | undefined;
1727
3113
  }, {
1728
- color?: string | {
1729
- type: "grouping";
1730
- value: string;
1731
- palette?: string[] | undefined;
1732
- } | {
3114
+ curves: {
3115
+ label: string;
1733
3116
  columnName: {
1734
3117
  type: "column";
1735
3118
  value: string;
1736
3119
  format?: string | undefined;
1737
3120
  label?: string | undefined;
1738
3121
  valueLabels?: string | undefined;
3122
+ valueLabelsMap?: Record<string, string> | undefined;
1739
3123
  nullValueLabel?: string | undefined;
1740
3124
  };
1741
- domain: number[];
1742
- range: string[];
1743
- type?: "linear" | "log" | undefined;
1744
- } | undefined;
1745
- bounded?: boolean | undefined;
3125
+ lineWidth?: number | undefined;
3126
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
3127
+ lineColor?: string | {
3128
+ type: "grouping";
3129
+ value: string;
3130
+ palette?: string[] | undefined;
3131
+ } | {
3132
+ columnName: {
3133
+ type: "column";
3134
+ value: string;
3135
+ format?: string | undefined;
3136
+ label?: string | undefined;
3137
+ valueLabels?: string | undefined;
3138
+ valueLabelsMap?: Record<string, string> | undefined;
3139
+ nullValueLabel?: string | undefined;
3140
+ };
3141
+ domain: number[];
3142
+ range: string[];
3143
+ type?: "linear" | "log" | undefined;
3144
+ } | undefined;
3145
+ opacity?: number | undefined;
3146
+ trend?: {
3147
+ color?: string | {
3148
+ type: "grouping";
3149
+ value: string;
3150
+ palette?: string[] | undefined;
3151
+ } | {
3152
+ columnName: {
3153
+ type: "column";
3154
+ value: string;
3155
+ format?: string | undefined;
3156
+ label?: string | undefined;
3157
+ valueLabels?: string | undefined;
3158
+ valueLabelsMap?: Record<string, string> | undefined;
3159
+ nullValueLabel?: string | undefined;
3160
+ };
3161
+ domain: number[];
3162
+ range: string[];
3163
+ type?: "linear" | "log" | undefined;
3164
+ } | undefined;
3165
+ bounded?: boolean | undefined;
3166
+ } | undefined;
3167
+ showDots?: boolean | undefined;
3168
+ }[];
3169
+ smoothing?: boolean | undefined;
1746
3170
  }>>;
1747
3171
  layers: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1748
3172
  type: z.ZodLiteral<"dots">;
@@ -1766,6 +3190,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1766
3190
  format: z.ZodOptional<z.ZodString>;
1767
3191
  label: z.ZodOptional<z.ZodString>;
1768
3192
  valueLabels: z.ZodOptional<z.ZodString>;
3193
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1769
3194
  nullValueLabel: z.ZodOptional<z.ZodString>;
1770
3195
  }, "strip", z.ZodTypeAny, {
1771
3196
  type: "column";
@@ -1773,6 +3198,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1773
3198
  format?: string | undefined;
1774
3199
  label?: string | undefined;
1775
3200
  valueLabels?: string | undefined;
3201
+ valueLabelsMap?: Record<string, string> | undefined;
1776
3202
  nullValueLabel?: string | undefined;
1777
3203
  }, {
1778
3204
  type: "column";
@@ -1780,6 +3206,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1780
3206
  format?: string | undefined;
1781
3207
  label?: string | undefined;
1782
3208
  valueLabels?: string | undefined;
3209
+ valueLabelsMap?: Record<string, string> | undefined;
1783
3210
  nullValueLabel?: string | undefined;
1784
3211
  }>;
1785
3212
  domain: z.ZodArray<z.ZodNumber, "many">;
@@ -1792,6 +3219,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1792
3219
  format?: string | undefined;
1793
3220
  label?: string | undefined;
1794
3221
  valueLabels?: string | undefined;
3222
+ valueLabelsMap?: Record<string, string> | undefined;
1795
3223
  nullValueLabel?: string | undefined;
1796
3224
  };
1797
3225
  domain: number[];
@@ -1804,6 +3232,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1804
3232
  format?: string | undefined;
1805
3233
  label?: string | undefined;
1806
3234
  valueLabels?: string | undefined;
3235
+ valueLabelsMap?: Record<string, string> | undefined;
1807
3236
  nullValueLabel?: string | undefined;
1808
3237
  };
1809
3238
  domain: number[];
@@ -1830,6 +3259,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1830
3259
  format: z.ZodOptional<z.ZodString>;
1831
3260
  label: z.ZodOptional<z.ZodString>;
1832
3261
  valueLabels: z.ZodOptional<z.ZodString>;
3262
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1833
3263
  nullValueLabel: z.ZodOptional<z.ZodString>;
1834
3264
  }, "strip", z.ZodTypeAny, {
1835
3265
  type: "column";
@@ -1837,6 +3267,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1837
3267
  format?: string | undefined;
1838
3268
  label?: string | undefined;
1839
3269
  valueLabels?: string | undefined;
3270
+ valueLabelsMap?: Record<string, string> | undefined;
1840
3271
  nullValueLabel?: string | undefined;
1841
3272
  }, {
1842
3273
  type: "column";
@@ -1844,6 +3275,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1844
3275
  format?: string | undefined;
1845
3276
  label?: string | undefined;
1846
3277
  valueLabels?: string | undefined;
3278
+ valueLabelsMap?: Record<string, string> | undefined;
1847
3279
  nullValueLabel?: string | undefined;
1848
3280
  }>;
1849
3281
  domain: z.ZodArray<z.ZodNumber, "many">;
@@ -1856,6 +3288,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1856
3288
  format?: string | undefined;
1857
3289
  label?: string | undefined;
1858
3290
  valueLabels?: string | undefined;
3291
+ valueLabelsMap?: Record<string, string> | undefined;
1859
3292
  nullValueLabel?: string | undefined;
1860
3293
  };
1861
3294
  domain: number[];
@@ -1868,6 +3301,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1868
3301
  format?: string | undefined;
1869
3302
  label?: string | undefined;
1870
3303
  valueLabels?: string | undefined;
3304
+ valueLabelsMap?: Record<string, string> | undefined;
1871
3305
  nullValueLabel?: string | undefined;
1872
3306
  };
1873
3307
  domain: number[];
@@ -1886,6 +3320,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1886
3320
  format?: string | undefined;
1887
3321
  label?: string | undefined;
1888
3322
  valueLabels?: string | undefined;
3323
+ valueLabelsMap?: Record<string, string> | undefined;
1889
3324
  nullValueLabel?: string | undefined;
1890
3325
  };
1891
3326
  domain: number[];
@@ -1904,6 +3339,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1904
3339
  format?: string | undefined;
1905
3340
  label?: string | undefined;
1906
3341
  valueLabels?: string | undefined;
3342
+ valueLabelsMap?: Record<string, string> | undefined;
1907
3343
  nullValueLabel?: string | undefined;
1908
3344
  };
1909
3345
  domain: number[];
@@ -1922,6 +3358,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1922
3358
  format?: string | undefined;
1923
3359
  label?: string | undefined;
1924
3360
  valueLabels?: string | undefined;
3361
+ valueLabelsMap?: Record<string, string> | undefined;
1925
3362
  nullValueLabel?: string | undefined;
1926
3363
  };
1927
3364
  domain: number[];
@@ -1940,6 +3377,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1940
3377
  format?: string | undefined;
1941
3378
  label?: string | undefined;
1942
3379
  valueLabels?: string | undefined;
3380
+ valueLabelsMap?: Record<string, string> | undefined;
1943
3381
  nullValueLabel?: string | undefined;
1944
3382
  };
1945
3383
  domain: number[];
@@ -1961,6 +3399,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1961
3399
  format?: string | undefined;
1962
3400
  label?: string | undefined;
1963
3401
  valueLabels?: string | undefined;
3402
+ valueLabelsMap?: Record<string, string> | undefined;
1964
3403
  nullValueLabel?: string | undefined;
1965
3404
  };
1966
3405
  domain: number[];
@@ -1979,6 +3418,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1979
3418
  format?: string | undefined;
1980
3419
  label?: string | undefined;
1981
3420
  valueLabels?: string | undefined;
3421
+ valueLabelsMap?: Record<string, string> | undefined;
1982
3422
  nullValueLabel?: string | undefined;
1983
3423
  };
1984
3424
  domain: number[];
@@ -2000,6 +3440,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2000
3440
  format?: string | undefined;
2001
3441
  label?: string | undefined;
2002
3442
  valueLabels?: string | undefined;
3443
+ valueLabelsMap?: Record<string, string> | undefined;
2003
3444
  nullValueLabel?: string | undefined;
2004
3445
  };
2005
3446
  domain: number[];
@@ -2018,6 +3459,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2018
3459
  format?: string | undefined;
2019
3460
  label?: string | undefined;
2020
3461
  valueLabels?: string | undefined;
3462
+ valueLabelsMap?: Record<string, string> | undefined;
2021
3463
  nullValueLabel?: string | undefined;
2022
3464
  };
2023
3465
  domain: number[];
@@ -2050,6 +3492,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2050
3492
  format: z.ZodOptional<z.ZodString>;
2051
3493
  label: z.ZodOptional<z.ZodString>;
2052
3494
  valueLabels: z.ZodOptional<z.ZodString>;
3495
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2053
3496
  nullValueLabel: z.ZodOptional<z.ZodString>;
2054
3497
  }, "strip", z.ZodTypeAny, {
2055
3498
  type: "column";
@@ -2057,6 +3500,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2057
3500
  format?: string | undefined;
2058
3501
  label?: string | undefined;
2059
3502
  valueLabels?: string | undefined;
3503
+ valueLabelsMap?: Record<string, string> | undefined;
2060
3504
  nullValueLabel?: string | undefined;
2061
3505
  }, {
2062
3506
  type: "column";
@@ -2064,6 +3508,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2064
3508
  format?: string | undefined;
2065
3509
  label?: string | undefined;
2066
3510
  valueLabels?: string | undefined;
3511
+ valueLabelsMap?: Record<string, string> | undefined;
2067
3512
  nullValueLabel?: string | undefined;
2068
3513
  }>;
2069
3514
  domain: z.ZodArray<z.ZodNumber, "many">;
@@ -2076,6 +3521,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2076
3521
  format?: string | undefined;
2077
3522
  label?: string | undefined;
2078
3523
  valueLabels?: string | undefined;
3524
+ valueLabelsMap?: Record<string, string> | undefined;
2079
3525
  nullValueLabel?: string | undefined;
2080
3526
  };
2081
3527
  domain: number[];
@@ -2088,6 +3534,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2088
3534
  format?: string | undefined;
2089
3535
  label?: string | undefined;
2090
3536
  valueLabels?: string | undefined;
3537
+ valueLabelsMap?: Record<string, string> | undefined;
2091
3538
  nullValueLabel?: string | undefined;
2092
3539
  };
2093
3540
  domain: number[];
@@ -2109,6 +3556,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2109
3556
  format?: string | undefined;
2110
3557
  label?: string | undefined;
2111
3558
  valueLabels?: string | undefined;
3559
+ valueLabelsMap?: Record<string, string> | undefined;
2112
3560
  nullValueLabel?: string | undefined;
2113
3561
  };
2114
3562
  domain: number[];
@@ -2130,6 +3578,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2130
3578
  format?: string | undefined;
2131
3579
  label?: string | undefined;
2132
3580
  valueLabels?: string | undefined;
3581
+ valueLabelsMap?: Record<string, string> | undefined;
2133
3582
  nullValueLabel?: string | undefined;
2134
3583
  };
2135
3584
  domain: number[];
@@ -2154,6 +3603,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2154
3603
  format?: string | undefined;
2155
3604
  label?: string | undefined;
2156
3605
  valueLabels?: string | undefined;
3606
+ valueLabelsMap?: Record<string, string> | undefined;
2157
3607
  nullValueLabel?: string | undefined;
2158
3608
  };
2159
3609
  domain: number[];
@@ -2179,6 +3629,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2179
3629
  format?: string | undefined;
2180
3630
  label?: string | undefined;
2181
3631
  valueLabels?: string | undefined;
3632
+ valueLabelsMap?: Record<string, string> | undefined;
2182
3633
  nullValueLabel?: string | undefined;
2183
3634
  };
2184
3635
  domain: number[];
@@ -2202,6 +3653,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2202
3653
  format?: string | undefined;
2203
3654
  label?: string | undefined;
2204
3655
  valueLabels?: string | undefined;
3656
+ valueLabelsMap?: Record<string, string> | undefined;
2205
3657
  nullValueLabel?: string | undefined;
2206
3658
  };
2207
3659
  x: {
@@ -2210,6 +3662,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2210
3662
  format?: string | undefined;
2211
3663
  label?: string | undefined;
2212
3664
  valueLabels?: string | undefined;
3665
+ valueLabelsMap?: Record<string, string> | undefined;
2213
3666
  nullValueLabel?: string | undefined;
2214
3667
  };
2215
3668
  y: {
@@ -2218,6 +3671,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2218
3671
  format?: string | undefined;
2219
3672
  label?: string | undefined;
2220
3673
  valueLabels?: string | undefined;
3674
+ valueLabelsMap?: Record<string, string> | undefined;
2221
3675
  nullValueLabel?: string | undefined;
2222
3676
  };
2223
3677
  layers: ({
@@ -2234,6 +3688,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2234
3688
  format?: string | undefined;
2235
3689
  label?: string | undefined;
2236
3690
  valueLabels?: string | undefined;
3691
+ valueLabelsMap?: Record<string, string> | undefined;
2237
3692
  nullValueLabel?: string | undefined;
2238
3693
  };
2239
3694
  domain: number[];
@@ -2252,6 +3707,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2252
3707
  format?: string | undefined;
2253
3708
  label?: string | undefined;
2254
3709
  valueLabels?: string | undefined;
3710
+ valueLabelsMap?: Record<string, string> | undefined;
2255
3711
  nullValueLabel?: string | undefined;
2256
3712
  };
2257
3713
  domain: number[];
@@ -2275,6 +3731,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2275
3731
  format?: string | undefined;
2276
3732
  label?: string | undefined;
2277
3733
  valueLabels?: string | undefined;
3734
+ valueLabelsMap?: Record<string, string> | undefined;
2278
3735
  nullValueLabel?: string | undefined;
2279
3736
  };
2280
3737
  domain: number[];
@@ -2295,6 +3752,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2295
3752
  format?: string | undefined;
2296
3753
  label?: string | undefined;
2297
3754
  valueLabels?: string | undefined;
3755
+ valueLabelsMap?: Record<string, string> | undefined;
2298
3756
  nullValueLabel?: string | undefined;
2299
3757
  } | undefined;
2300
3758
  grouping?: {
@@ -2304,6 +3762,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2304
3762
  format?: string | undefined;
2305
3763
  label?: string | undefined;
2306
3764
  valueLabels?: string | undefined;
3765
+ valueLabelsMap?: Record<string, string> | undefined;
2307
3766
  nullValueLabel?: string | undefined;
2308
3767
  };
2309
3768
  order?: (string | number | null)[] | undefined;
@@ -2325,6 +3784,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2325
3784
  format?: string | undefined;
2326
3785
  label?: string | undefined;
2327
3786
  valueLabels?: string | undefined;
3787
+ valueLabelsMap?: Record<string, string> | undefined;
2328
3788
  nullValueLabel?: string | undefined;
2329
3789
  };
2330
3790
  order?: (string | number | null)[] | undefined;
@@ -2345,6 +3805,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2345
3805
  format?: string | undefined;
2346
3806
  label?: string | undefined;
2347
3807
  valueLabels?: string | undefined;
3808
+ valueLabelsMap?: Record<string, string> | undefined;
2348
3809
  nullValueLabel?: string | undefined;
2349
3810
  };
2350
3811
  }[] | undefined;
@@ -2360,6 +3821,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2360
3821
  format?: string | undefined;
2361
3822
  label?: string | undefined;
2362
3823
  valueLabels?: string | undefined;
3824
+ valueLabelsMap?: Record<string, string> | undefined;
2363
3825
  nullValueLabel?: string | undefined;
2364
3826
  }[] | undefined;
2365
3827
  } | undefined;
@@ -2381,6 +3843,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2381
3843
  format?: string | undefined;
2382
3844
  label?: string | undefined;
2383
3845
  valueLabels?: string | undefined;
3846
+ valueLabelsMap?: Record<string, string> | undefined;
2384
3847
  nullValueLabel?: string | undefined;
2385
3848
  } | undefined;
2386
3849
  scale?: "discrete" | undefined;
@@ -2397,6 +3860,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2397
3860
  format?: string | undefined;
2398
3861
  label?: string | undefined;
2399
3862
  valueLabels?: string | undefined;
3863
+ valueLabelsMap?: Record<string, string> | undefined;
2400
3864
  nullValueLabel?: string | undefined;
2401
3865
  } | undefined;
2402
3866
  scale?: "linear" | "log" | undefined;
@@ -2417,6 +3881,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2417
3881
  format?: string | undefined;
2418
3882
  label?: string | undefined;
2419
3883
  valueLabels?: string | undefined;
3884
+ valueLabelsMap?: Record<string, string> | undefined;
2420
3885
  nullValueLabel?: string | undefined;
2421
3886
  } | undefined;
2422
3887
  scale?: "discrete" | undefined;
@@ -2433,6 +3898,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2433
3898
  format?: string | undefined;
2434
3899
  label?: string | undefined;
2435
3900
  valueLabels?: string | undefined;
3901
+ valueLabelsMap?: Record<string, string> | undefined;
2436
3902
  nullValueLabel?: string | undefined;
2437
3903
  } | undefined;
2438
3904
  scale?: "linear" | "log" | undefined;
@@ -2451,6 +3917,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2451
3917
  format?: string | undefined;
2452
3918
  label?: string | undefined;
2453
3919
  valueLabels?: string | undefined;
3920
+ valueLabelsMap?: Record<string, string> | undefined;
2454
3921
  nullValueLabel?: string | undefined;
2455
3922
  }[] | undefined;
2456
3923
  highlight?: {
@@ -2459,6 +3926,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2459
3926
  format?: string | undefined;
2460
3927
  label?: string | undefined;
2461
3928
  valueLabels?: string | undefined;
3929
+ valueLabelsMap?: Record<string, string> | undefined;
2462
3930
  nullValueLabel?: string | undefined;
2463
3931
  } | undefined;
2464
3932
  trend?: {
@@ -2473,6 +3941,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2473
3941
  format?: string | undefined;
2474
3942
  label?: string | undefined;
2475
3943
  valueLabels?: string | undefined;
3944
+ valueLabelsMap?: Record<string, string> | undefined;
2476
3945
  nullValueLabel?: string | undefined;
2477
3946
  };
2478
3947
  domain: number[];
@@ -2481,6 +3950,64 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2481
3950
  } | undefined;
2482
3951
  bounded?: boolean | undefined;
2483
3952
  } | undefined;
3953
+ additionalCurves?: {
3954
+ curves: {
3955
+ label: string;
3956
+ columnName: {
3957
+ type: "column";
3958
+ value: string;
3959
+ format?: string | undefined;
3960
+ label?: string | undefined;
3961
+ valueLabels?: string | undefined;
3962
+ valueLabelsMap?: Record<string, string> | undefined;
3963
+ nullValueLabel?: string | undefined;
3964
+ };
3965
+ lineWidth?: number | undefined;
3966
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
3967
+ lineColor?: string | {
3968
+ type: "grouping";
3969
+ value: string;
3970
+ palette?: string[] | undefined;
3971
+ } | {
3972
+ columnName: {
3973
+ type: "column";
3974
+ value: string;
3975
+ format?: string | undefined;
3976
+ label?: string | undefined;
3977
+ valueLabels?: string | undefined;
3978
+ valueLabelsMap?: Record<string, string> | undefined;
3979
+ nullValueLabel?: string | undefined;
3980
+ };
3981
+ domain: number[];
3982
+ range: string[];
3983
+ type?: "linear" | "log" | undefined;
3984
+ } | undefined;
3985
+ opacity?: number | undefined;
3986
+ trend?: {
3987
+ color?: string | {
3988
+ type: "grouping";
3989
+ value: string;
3990
+ palette?: string[] | undefined;
3991
+ } | {
3992
+ columnName: {
3993
+ type: "column";
3994
+ value: string;
3995
+ format?: string | undefined;
3996
+ label?: string | undefined;
3997
+ valueLabels?: string | undefined;
3998
+ valueLabelsMap?: Record<string, string> | undefined;
3999
+ nullValueLabel?: string | undefined;
4000
+ };
4001
+ domain: number[];
4002
+ range: string[];
4003
+ type?: "linear" | "log" | undefined;
4004
+ } | undefined;
4005
+ bounded?: boolean | undefined;
4006
+ } | undefined;
4007
+ showDots?: boolean | undefined;
4008
+ }[];
4009
+ smoothing?: boolean | undefined;
4010
+ } | undefined;
2484
4011
  }, {
2485
4012
  type: "scatterplot";
2486
4013
  title: {
@@ -2494,6 +4021,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2494
4021
  format?: string | undefined;
2495
4022
  label?: string | undefined;
2496
4023
  valueLabels?: string | undefined;
4024
+ valueLabelsMap?: Record<string, string> | undefined;
2497
4025
  nullValueLabel?: string | undefined;
2498
4026
  };
2499
4027
  x: {
@@ -2502,6 +4030,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2502
4030
  format?: string | undefined;
2503
4031
  label?: string | undefined;
2504
4032
  valueLabels?: string | undefined;
4033
+ valueLabelsMap?: Record<string, string> | undefined;
2505
4034
  nullValueLabel?: string | undefined;
2506
4035
  };
2507
4036
  y: {
@@ -2510,6 +4039,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2510
4039
  format?: string | undefined;
2511
4040
  label?: string | undefined;
2512
4041
  valueLabels?: string | undefined;
4042
+ valueLabelsMap?: Record<string, string> | undefined;
2513
4043
  nullValueLabel?: string | undefined;
2514
4044
  };
2515
4045
  layers: ({
@@ -2526,6 +4056,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2526
4056
  format?: string | undefined;
2527
4057
  label?: string | undefined;
2528
4058
  valueLabels?: string | undefined;
4059
+ valueLabelsMap?: Record<string, string> | undefined;
2529
4060
  nullValueLabel?: string | undefined;
2530
4061
  };
2531
4062
  domain: number[];
@@ -2544,6 +4075,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2544
4075
  format?: string | undefined;
2545
4076
  label?: string | undefined;
2546
4077
  valueLabels?: string | undefined;
4078
+ valueLabelsMap?: Record<string, string> | undefined;
2547
4079
  nullValueLabel?: string | undefined;
2548
4080
  };
2549
4081
  domain: number[];
@@ -2567,6 +4099,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2567
4099
  format?: string | undefined;
2568
4100
  label?: string | undefined;
2569
4101
  valueLabels?: string | undefined;
4102
+ valueLabelsMap?: Record<string, string> | undefined;
2570
4103
  nullValueLabel?: string | undefined;
2571
4104
  };
2572
4105
  domain: number[];
@@ -2587,6 +4120,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2587
4120
  format?: string | undefined;
2588
4121
  label?: string | undefined;
2589
4122
  valueLabels?: string | undefined;
4123
+ valueLabelsMap?: Record<string, string> | undefined;
2590
4124
  nullValueLabel?: string | undefined;
2591
4125
  } | undefined;
2592
4126
  grouping?: {
@@ -2596,6 +4130,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2596
4130
  format?: string | undefined;
2597
4131
  label?: string | undefined;
2598
4132
  valueLabels?: string | undefined;
4133
+ valueLabelsMap?: Record<string, string> | undefined;
2599
4134
  nullValueLabel?: string | undefined;
2600
4135
  };
2601
4136
  order?: (string | number | null)[] | undefined;
@@ -2617,6 +4152,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2617
4152
  format?: string | undefined;
2618
4153
  label?: string | undefined;
2619
4154
  valueLabels?: string | undefined;
4155
+ valueLabelsMap?: Record<string, string> | undefined;
2620
4156
  nullValueLabel?: string | undefined;
2621
4157
  };
2622
4158
  order?: (string | number | null)[] | undefined;
@@ -2637,6 +4173,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2637
4173
  format?: string | undefined;
2638
4174
  label?: string | undefined;
2639
4175
  valueLabels?: string | undefined;
4176
+ valueLabelsMap?: Record<string, string> | undefined;
2640
4177
  nullValueLabel?: string | undefined;
2641
4178
  };
2642
4179
  }[] | undefined;
@@ -2652,6 +4189,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2652
4189
  format?: string | undefined;
2653
4190
  label?: string | undefined;
2654
4191
  valueLabels?: string | undefined;
4192
+ valueLabelsMap?: Record<string, string> | undefined;
2655
4193
  nullValueLabel?: string | undefined;
2656
4194
  }[] | undefined;
2657
4195
  } | undefined;
@@ -2673,6 +4211,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2673
4211
  format?: string | undefined;
2674
4212
  label?: string | undefined;
2675
4213
  valueLabels?: string | undefined;
4214
+ valueLabelsMap?: Record<string, string> | undefined;
2676
4215
  nullValueLabel?: string | undefined;
2677
4216
  } | undefined;
2678
4217
  scale?: "discrete" | undefined;
@@ -2689,6 +4228,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2689
4228
  format?: string | undefined;
2690
4229
  label?: string | undefined;
2691
4230
  valueLabels?: string | undefined;
4231
+ valueLabelsMap?: Record<string, string> | undefined;
2692
4232
  nullValueLabel?: string | undefined;
2693
4233
  } | undefined;
2694
4234
  scale?: "linear" | "log" | undefined;
@@ -2709,6 +4249,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2709
4249
  format?: string | undefined;
2710
4250
  label?: string | undefined;
2711
4251
  valueLabels?: string | undefined;
4252
+ valueLabelsMap?: Record<string, string> | undefined;
2712
4253
  nullValueLabel?: string | undefined;
2713
4254
  } | undefined;
2714
4255
  scale?: "discrete" | undefined;
@@ -2725,6 +4266,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2725
4266
  format?: string | undefined;
2726
4267
  label?: string | undefined;
2727
4268
  valueLabels?: string | undefined;
4269
+ valueLabelsMap?: Record<string, string> | undefined;
2728
4270
  nullValueLabel?: string | undefined;
2729
4271
  } | undefined;
2730
4272
  scale?: "linear" | "log" | undefined;
@@ -2743,6 +4285,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2743
4285
  format?: string | undefined;
2744
4286
  label?: string | undefined;
2745
4287
  valueLabels?: string | undefined;
4288
+ valueLabelsMap?: Record<string, string> | undefined;
2746
4289
  nullValueLabel?: string | undefined;
2747
4290
  }[] | undefined;
2748
4291
  highlight?: {
@@ -2751,6 +4294,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2751
4294
  format?: string | undefined;
2752
4295
  label?: string | undefined;
2753
4296
  valueLabels?: string | undefined;
4297
+ valueLabelsMap?: Record<string, string> | undefined;
2754
4298
  nullValueLabel?: string | undefined;
2755
4299
  } | undefined;
2756
4300
  trend?: {
@@ -2765,6 +4309,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2765
4309
  format?: string | undefined;
2766
4310
  label?: string | undefined;
2767
4311
  valueLabels?: string | undefined;
4312
+ valueLabelsMap?: Record<string, string> | undefined;
2768
4313
  nullValueLabel?: string | undefined;
2769
4314
  };
2770
4315
  domain: number[];
@@ -2773,6 +4318,64 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2773
4318
  } | undefined;
2774
4319
  bounded?: boolean | undefined;
2775
4320
  } | undefined;
4321
+ additionalCurves?: {
4322
+ curves: {
4323
+ label: string;
4324
+ columnName: {
4325
+ type: "column";
4326
+ value: string;
4327
+ format?: string | undefined;
4328
+ label?: string | undefined;
4329
+ valueLabels?: string | undefined;
4330
+ valueLabelsMap?: Record<string, string> | undefined;
4331
+ nullValueLabel?: string | undefined;
4332
+ };
4333
+ lineWidth?: number | undefined;
4334
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
4335
+ lineColor?: string | {
4336
+ type: "grouping";
4337
+ value: string;
4338
+ palette?: string[] | undefined;
4339
+ } | {
4340
+ columnName: {
4341
+ type: "column";
4342
+ value: string;
4343
+ format?: string | undefined;
4344
+ label?: string | undefined;
4345
+ valueLabels?: string | undefined;
4346
+ valueLabelsMap?: Record<string, string> | undefined;
4347
+ nullValueLabel?: string | undefined;
4348
+ };
4349
+ domain: number[];
4350
+ range: string[];
4351
+ type?: "linear" | "log" | undefined;
4352
+ } | undefined;
4353
+ opacity?: number | undefined;
4354
+ trend?: {
4355
+ color?: string | {
4356
+ type: "grouping";
4357
+ value: string;
4358
+ palette?: string[] | undefined;
4359
+ } | {
4360
+ columnName: {
4361
+ type: "column";
4362
+ value: string;
4363
+ format?: string | undefined;
4364
+ label?: string | undefined;
4365
+ valueLabels?: string | undefined;
4366
+ valueLabelsMap?: Record<string, string> | undefined;
4367
+ nullValueLabel?: string | undefined;
4368
+ };
4369
+ domain: number[];
4370
+ range: string[];
4371
+ type?: "linear" | "log" | undefined;
4372
+ } | undefined;
4373
+ bounded?: boolean | undefined;
4374
+ } | undefined;
4375
+ showDots?: boolean | undefined;
4376
+ }[];
4377
+ smoothing?: boolean | undefined;
4378
+ } | undefined;
2776
4379
  }>;
2777
4380
  export type ScatterplotSettings = z.infer<typeof ScatterplotSettingsSchema>;
2778
4381
  export type ScatterplotLegendInfo = Record<string, {