@milaboratories/miplots4 1.0.57 → 1.0.59
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +151 -1
- package/dist/index.js +30 -30
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -163,6 +163,11 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
163
163
|
linesBetweenCategories: z.ZodOptional<z.ZodBoolean>;
|
|
164
164
|
showTicks: z.ZodOptional<z.ZodBoolean>;
|
|
165
165
|
labelsPosition: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"center">, z.ZodLiteral<"45deg">, z.ZodLiteral<"90deg">]>>;
|
|
166
|
+
significantLines: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
167
|
+
significantLinesStyle: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
|
|
168
|
+
symmetricRange: z.ZodOptional<z.ZodNumber>;
|
|
169
|
+
upperValue: z.ZodOptional<z.ZodNumber>;
|
|
170
|
+
lowerValue: z.ZodOptional<z.ZodNumber>;
|
|
166
171
|
}, "strip", z.ZodTypeAny, {
|
|
167
172
|
title?: string | {
|
|
168
173
|
type: "column";
|
|
@@ -175,6 +180,11 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
175
180
|
linesBetweenCategories?: boolean | undefined;
|
|
176
181
|
showTicks?: boolean | undefined;
|
|
177
182
|
labelsPosition?: "center" | "45deg" | "90deg" | undefined;
|
|
183
|
+
significantLines?: number[] | undefined;
|
|
184
|
+
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
185
|
+
symmetricRange?: number | undefined;
|
|
186
|
+
upperValue?: number | undefined;
|
|
187
|
+
lowerValue?: number | undefined;
|
|
178
188
|
}, {
|
|
179
189
|
title?: string | {
|
|
180
190
|
type: "column";
|
|
@@ -187,6 +197,11 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
187
197
|
linesBetweenCategories?: boolean | undefined;
|
|
188
198
|
showTicks?: boolean | undefined;
|
|
189
199
|
labelsPosition?: "center" | "45deg" | "90deg" | undefined;
|
|
200
|
+
significantLines?: number[] | undefined;
|
|
201
|
+
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
202
|
+
symmetricRange?: number | undefined;
|
|
203
|
+
upperValue?: number | undefined;
|
|
204
|
+
lowerValue?: number | undefined;
|
|
190
205
|
}>>;
|
|
191
206
|
yAxis: z.ZodOptional<z.ZodObject<{
|
|
192
207
|
title: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
@@ -210,6 +225,11 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
210
225
|
linesBetweenCategories: z.ZodOptional<z.ZodBoolean>;
|
|
211
226
|
showTicks: z.ZodOptional<z.ZodBoolean>;
|
|
212
227
|
labelsPosition: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"center">, z.ZodLiteral<"45deg">, z.ZodLiteral<"90deg">]>>;
|
|
228
|
+
significantLines: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
229
|
+
significantLinesStyle: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
|
|
230
|
+
symmetricRange: z.ZodOptional<z.ZodNumber>;
|
|
231
|
+
upperValue: z.ZodOptional<z.ZodNumber>;
|
|
232
|
+
lowerValue: z.ZodOptional<z.ZodNumber>;
|
|
213
233
|
}, "strip", z.ZodTypeAny, {
|
|
214
234
|
title?: string | {
|
|
215
235
|
type: "column";
|
|
@@ -222,6 +242,11 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
222
242
|
linesBetweenCategories?: boolean | undefined;
|
|
223
243
|
showTicks?: boolean | undefined;
|
|
224
244
|
labelsPosition?: "center" | "45deg" | "90deg" | undefined;
|
|
245
|
+
significantLines?: number[] | undefined;
|
|
246
|
+
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
247
|
+
symmetricRange?: number | undefined;
|
|
248
|
+
upperValue?: number | undefined;
|
|
249
|
+
lowerValue?: number | undefined;
|
|
225
250
|
}, {
|
|
226
251
|
title?: string | {
|
|
227
252
|
type: "column";
|
|
@@ -234,6 +259,11 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
234
259
|
linesBetweenCategories?: boolean | undefined;
|
|
235
260
|
showTicks?: boolean | undefined;
|
|
236
261
|
labelsPosition?: "center" | "45deg" | "90deg" | undefined;
|
|
262
|
+
significantLines?: number[] | undefined;
|
|
263
|
+
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
264
|
+
symmetricRange?: number | undefined;
|
|
265
|
+
upperValue?: number | undefined;
|
|
266
|
+
lowerValue?: number | undefined;
|
|
237
267
|
}>>;
|
|
238
268
|
grouping: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
239
269
|
type: z.ZodLiteral<"column">;
|
|
@@ -884,6 +914,11 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
884
914
|
linesBetweenCategories?: boolean | undefined;
|
|
885
915
|
showTicks?: boolean | undefined;
|
|
886
916
|
labelsPosition?: "center" | "45deg" | "90deg" | undefined;
|
|
917
|
+
significantLines?: number[] | undefined;
|
|
918
|
+
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
919
|
+
symmetricRange?: number | undefined;
|
|
920
|
+
upperValue?: number | undefined;
|
|
921
|
+
lowerValue?: number | undefined;
|
|
887
922
|
} | undefined;
|
|
888
923
|
yAxis?: {
|
|
889
924
|
title?: string | {
|
|
@@ -897,6 +932,11 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
897
932
|
linesBetweenCategories?: boolean | undefined;
|
|
898
933
|
showTicks?: boolean | undefined;
|
|
899
934
|
labelsPosition?: "center" | "45deg" | "90deg" | undefined;
|
|
935
|
+
significantLines?: number[] | undefined;
|
|
936
|
+
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
937
|
+
symmetricRange?: number | undefined;
|
|
938
|
+
upperValue?: number | undefined;
|
|
939
|
+
lowerValue?: number | undefined;
|
|
900
940
|
} | undefined;
|
|
901
941
|
facetBy?: {
|
|
902
942
|
type: "column";
|
|
@@ -1064,6 +1104,11 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1064
1104
|
linesBetweenCategories?: boolean | undefined;
|
|
1065
1105
|
showTicks?: boolean | undefined;
|
|
1066
1106
|
labelsPosition?: "center" | "45deg" | "90deg" | undefined;
|
|
1107
|
+
significantLines?: number[] | undefined;
|
|
1108
|
+
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1109
|
+
symmetricRange?: number | undefined;
|
|
1110
|
+
upperValue?: number | undefined;
|
|
1111
|
+
lowerValue?: number | undefined;
|
|
1067
1112
|
} | undefined;
|
|
1068
1113
|
yAxis?: {
|
|
1069
1114
|
title?: string | {
|
|
@@ -1077,6 +1122,11 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1077
1122
|
linesBetweenCategories?: boolean | undefined;
|
|
1078
1123
|
showTicks?: boolean | undefined;
|
|
1079
1124
|
labelsPosition?: "center" | "45deg" | "90deg" | undefined;
|
|
1125
|
+
significantLines?: number[] | undefined;
|
|
1126
|
+
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1127
|
+
symmetricRange?: number | undefined;
|
|
1128
|
+
upperValue?: number | undefined;
|
|
1129
|
+
lowerValue?: number | undefined;
|
|
1080
1130
|
} | undefined;
|
|
1081
1131
|
facetBy?: {
|
|
1082
1132
|
type: "column";
|
|
@@ -1252,6 +1302,11 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1252
1302
|
linesBetweenCategories: z.ZodOptional<z.ZodBoolean>;
|
|
1253
1303
|
showTicks: z.ZodOptional<z.ZodBoolean>;
|
|
1254
1304
|
labelsPosition: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"center">, z.ZodLiteral<"45deg">, z.ZodLiteral<"90deg">]>>;
|
|
1305
|
+
significantLines: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
1306
|
+
significantLinesStyle: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
|
|
1307
|
+
symmetricRange: z.ZodOptional<z.ZodNumber>;
|
|
1308
|
+
upperValue: z.ZodOptional<z.ZodNumber>;
|
|
1309
|
+
lowerValue: z.ZodOptional<z.ZodNumber>;
|
|
1255
1310
|
}, "strip", z.ZodTypeAny, {
|
|
1256
1311
|
title?: string | {
|
|
1257
1312
|
type: "column";
|
|
@@ -1264,6 +1319,11 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1264
1319
|
linesBetweenCategories?: boolean | undefined;
|
|
1265
1320
|
showTicks?: boolean | undefined;
|
|
1266
1321
|
labelsPosition?: "center" | "45deg" | "90deg" | undefined;
|
|
1322
|
+
significantLines?: number[] | undefined;
|
|
1323
|
+
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1324
|
+
symmetricRange?: number | undefined;
|
|
1325
|
+
upperValue?: number | undefined;
|
|
1326
|
+
lowerValue?: number | undefined;
|
|
1267
1327
|
}, {
|
|
1268
1328
|
title?: string | {
|
|
1269
1329
|
type: "column";
|
|
@@ -1276,6 +1336,11 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1276
1336
|
linesBetweenCategories?: boolean | undefined;
|
|
1277
1337
|
showTicks?: boolean | undefined;
|
|
1278
1338
|
labelsPosition?: "center" | "45deg" | "90deg" | undefined;
|
|
1339
|
+
significantLines?: number[] | undefined;
|
|
1340
|
+
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1341
|
+
symmetricRange?: number | undefined;
|
|
1342
|
+
upperValue?: number | undefined;
|
|
1343
|
+
lowerValue?: number | undefined;
|
|
1279
1344
|
}>>;
|
|
1280
1345
|
yAxis: z.ZodOptional<z.ZodObject<{
|
|
1281
1346
|
title: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
@@ -1299,6 +1364,11 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1299
1364
|
linesBetweenCategories: z.ZodOptional<z.ZodBoolean>;
|
|
1300
1365
|
showTicks: z.ZodOptional<z.ZodBoolean>;
|
|
1301
1366
|
labelsPosition: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"center">, z.ZodLiteral<"45deg">, z.ZodLiteral<"90deg">]>>;
|
|
1367
|
+
significantLines: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
1368
|
+
significantLinesStyle: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
|
|
1369
|
+
symmetricRange: z.ZodOptional<z.ZodNumber>;
|
|
1370
|
+
upperValue: z.ZodOptional<z.ZodNumber>;
|
|
1371
|
+
lowerValue: z.ZodOptional<z.ZodNumber>;
|
|
1302
1372
|
}, "strip", z.ZodTypeAny, {
|
|
1303
1373
|
title?: string | {
|
|
1304
1374
|
type: "column";
|
|
@@ -1311,6 +1381,11 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1311
1381
|
linesBetweenCategories?: boolean | undefined;
|
|
1312
1382
|
showTicks?: boolean | undefined;
|
|
1313
1383
|
labelsPosition?: "center" | "45deg" | "90deg" | undefined;
|
|
1384
|
+
significantLines?: number[] | undefined;
|
|
1385
|
+
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1386
|
+
symmetricRange?: number | undefined;
|
|
1387
|
+
upperValue?: number | undefined;
|
|
1388
|
+
lowerValue?: number | undefined;
|
|
1314
1389
|
}, {
|
|
1315
1390
|
title?: string | {
|
|
1316
1391
|
type: "column";
|
|
@@ -1323,6 +1398,11 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1323
1398
|
linesBetweenCategories?: boolean | undefined;
|
|
1324
1399
|
showTicks?: boolean | undefined;
|
|
1325
1400
|
labelsPosition?: "center" | "45deg" | "90deg" | undefined;
|
|
1401
|
+
significantLines?: number[] | undefined;
|
|
1402
|
+
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1403
|
+
symmetricRange?: number | undefined;
|
|
1404
|
+
upperValue?: number | undefined;
|
|
1405
|
+
lowerValue?: number | undefined;
|
|
1326
1406
|
}>>;
|
|
1327
1407
|
grouping: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1328
1408
|
type: z.ZodLiteral<"column">;
|
|
@@ -1538,6 +1618,11 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1538
1618
|
linesBetweenCategories?: boolean | undefined;
|
|
1539
1619
|
showTicks?: boolean | undefined;
|
|
1540
1620
|
labelsPosition?: "center" | "45deg" | "90deg" | undefined;
|
|
1621
|
+
significantLines?: number[] | undefined;
|
|
1622
|
+
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1623
|
+
symmetricRange?: number | undefined;
|
|
1624
|
+
upperValue?: number | undefined;
|
|
1625
|
+
lowerValue?: number | undefined;
|
|
1541
1626
|
} | undefined;
|
|
1542
1627
|
yAxis?: {
|
|
1543
1628
|
title?: string | {
|
|
@@ -1551,6 +1636,11 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1551
1636
|
linesBetweenCategories?: boolean | undefined;
|
|
1552
1637
|
showTicks?: boolean | undefined;
|
|
1553
1638
|
labelsPosition?: "center" | "45deg" | "90deg" | undefined;
|
|
1639
|
+
significantLines?: number[] | undefined;
|
|
1640
|
+
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1641
|
+
symmetricRange?: number | undefined;
|
|
1642
|
+
upperValue?: number | undefined;
|
|
1643
|
+
lowerValue?: number | undefined;
|
|
1554
1644
|
} | undefined;
|
|
1555
1645
|
inheritedAes?: Record<string, Record<string, {
|
|
1556
1646
|
dotFill?: string | undefined;
|
|
@@ -1641,6 +1731,11 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1641
1731
|
linesBetweenCategories?: boolean | undefined;
|
|
1642
1732
|
showTicks?: boolean | undefined;
|
|
1643
1733
|
labelsPosition?: "center" | "45deg" | "90deg" | undefined;
|
|
1734
|
+
significantLines?: number[] | undefined;
|
|
1735
|
+
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1736
|
+
symmetricRange?: number | undefined;
|
|
1737
|
+
upperValue?: number | undefined;
|
|
1738
|
+
lowerValue?: number | undefined;
|
|
1644
1739
|
} | undefined;
|
|
1645
1740
|
yAxis?: {
|
|
1646
1741
|
title?: string | {
|
|
@@ -1654,6 +1749,11 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1654
1749
|
linesBetweenCategories?: boolean | undefined;
|
|
1655
1750
|
showTicks?: boolean | undefined;
|
|
1656
1751
|
labelsPosition?: "center" | "45deg" | "90deg" | undefined;
|
|
1752
|
+
significantLines?: number[] | undefined;
|
|
1753
|
+
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1754
|
+
symmetricRange?: number | undefined;
|
|
1755
|
+
upperValue?: number | undefined;
|
|
1756
|
+
lowerValue?: number | undefined;
|
|
1657
1757
|
} | undefined;
|
|
1658
1758
|
inheritedAes?: Record<string, Record<string, {
|
|
1659
1759
|
dotFill?: string | undefined;
|
|
@@ -2066,6 +2166,11 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2066
2166
|
linesBetweenCategories: z.ZodOptional<z.ZodBoolean>;
|
|
2067
2167
|
showTicks: z.ZodOptional<z.ZodBoolean>;
|
|
2068
2168
|
labelsPosition: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"center">, z.ZodLiteral<"45deg">, z.ZodLiteral<"90deg">]>>;
|
|
2169
|
+
significantLines: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
2170
|
+
significantLinesStyle: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
|
|
2171
|
+
symmetricRange: z.ZodOptional<z.ZodNumber>;
|
|
2172
|
+
upperValue: z.ZodOptional<z.ZodNumber>;
|
|
2173
|
+
lowerValue: z.ZodOptional<z.ZodNumber>;
|
|
2069
2174
|
}, "strip", z.ZodTypeAny, {
|
|
2070
2175
|
title?: string | {
|
|
2071
2176
|
type: "column";
|
|
@@ -2078,6 +2183,11 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2078
2183
|
linesBetweenCategories?: boolean | undefined;
|
|
2079
2184
|
showTicks?: boolean | undefined;
|
|
2080
2185
|
labelsPosition?: "center" | "45deg" | "90deg" | undefined;
|
|
2186
|
+
significantLines?: number[] | undefined;
|
|
2187
|
+
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
2188
|
+
symmetricRange?: number | undefined;
|
|
2189
|
+
upperValue?: number | undefined;
|
|
2190
|
+
lowerValue?: number | undefined;
|
|
2081
2191
|
}, {
|
|
2082
2192
|
title?: string | {
|
|
2083
2193
|
type: "column";
|
|
@@ -2090,6 +2200,11 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2090
2200
|
linesBetweenCategories?: boolean | undefined;
|
|
2091
2201
|
showTicks?: boolean | undefined;
|
|
2092
2202
|
labelsPosition?: "center" | "45deg" | "90deg" | undefined;
|
|
2203
|
+
significantLines?: number[] | undefined;
|
|
2204
|
+
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
2205
|
+
symmetricRange?: number | undefined;
|
|
2206
|
+
upperValue?: number | undefined;
|
|
2207
|
+
lowerValue?: number | undefined;
|
|
2093
2208
|
}>>;
|
|
2094
2209
|
yAxis: z.ZodOptional<z.ZodObject<{
|
|
2095
2210
|
title: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
@@ -2113,6 +2228,11 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2113
2228
|
linesBetweenCategories: z.ZodOptional<z.ZodBoolean>;
|
|
2114
2229
|
showTicks: z.ZodOptional<z.ZodBoolean>;
|
|
2115
2230
|
labelsPosition: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"center">, z.ZodLiteral<"45deg">, z.ZodLiteral<"90deg">]>>;
|
|
2231
|
+
significantLines: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
2232
|
+
significantLinesStyle: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
|
|
2233
|
+
symmetricRange: z.ZodOptional<z.ZodNumber>;
|
|
2234
|
+
upperValue: z.ZodOptional<z.ZodNumber>;
|
|
2235
|
+
lowerValue: z.ZodOptional<z.ZodNumber>;
|
|
2116
2236
|
}, "strip", z.ZodTypeAny, {
|
|
2117
2237
|
title?: string | {
|
|
2118
2238
|
type: "column";
|
|
@@ -2125,6 +2245,11 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2125
2245
|
linesBetweenCategories?: boolean | undefined;
|
|
2126
2246
|
showTicks?: boolean | undefined;
|
|
2127
2247
|
labelsPosition?: "center" | "45deg" | "90deg" | undefined;
|
|
2248
|
+
significantLines?: number[] | undefined;
|
|
2249
|
+
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
2250
|
+
symmetricRange?: number | undefined;
|
|
2251
|
+
upperValue?: number | undefined;
|
|
2252
|
+
lowerValue?: number | undefined;
|
|
2128
2253
|
}, {
|
|
2129
2254
|
title?: string | {
|
|
2130
2255
|
type: "column";
|
|
@@ -2137,6 +2262,11 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2137
2262
|
linesBetweenCategories?: boolean | undefined;
|
|
2138
2263
|
showTicks?: boolean | undefined;
|
|
2139
2264
|
labelsPosition?: "center" | "45deg" | "90deg" | undefined;
|
|
2265
|
+
significantLines?: number[] | undefined;
|
|
2266
|
+
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
2267
|
+
symmetricRange?: number | undefined;
|
|
2268
|
+
upperValue?: number | undefined;
|
|
2269
|
+
lowerValue?: number | undefined;
|
|
2140
2270
|
}>>;
|
|
2141
2271
|
layers: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
2142
2272
|
type: z.ZodLiteral<"box">;
|
|
@@ -3454,6 +3584,11 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3454
3584
|
linesBetweenCategories?: boolean | undefined;
|
|
3455
3585
|
showTicks?: boolean | undefined;
|
|
3456
3586
|
labelsPosition?: "center" | "45deg" | "90deg" | undefined;
|
|
3587
|
+
significantLines?: number[] | undefined;
|
|
3588
|
+
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
3589
|
+
symmetricRange?: number | undefined;
|
|
3590
|
+
upperValue?: number | undefined;
|
|
3591
|
+
lowerValue?: number | undefined;
|
|
3457
3592
|
} | undefined;
|
|
3458
3593
|
yAxis?: {
|
|
3459
3594
|
title?: string | {
|
|
@@ -3467,6 +3602,11 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3467
3602
|
linesBetweenCategories?: boolean | undefined;
|
|
3468
3603
|
showTicks?: boolean | undefined;
|
|
3469
3604
|
labelsPosition?: "center" | "45deg" | "90deg" | undefined;
|
|
3605
|
+
significantLines?: number[] | undefined;
|
|
3606
|
+
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
3607
|
+
symmetricRange?: number | undefined;
|
|
3608
|
+
upperValue?: number | undefined;
|
|
3609
|
+
lowerValue?: number | undefined;
|
|
3470
3610
|
} | undefined;
|
|
3471
3611
|
facetBy?: {
|
|
3472
3612
|
type: "column";
|
|
@@ -3793,6 +3933,11 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3793
3933
|
linesBetweenCategories?: boolean | undefined;
|
|
3794
3934
|
showTicks?: boolean | undefined;
|
|
3795
3935
|
labelsPosition?: "center" | "45deg" | "90deg" | undefined;
|
|
3936
|
+
significantLines?: number[] | undefined;
|
|
3937
|
+
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
3938
|
+
symmetricRange?: number | undefined;
|
|
3939
|
+
upperValue?: number | undefined;
|
|
3940
|
+
lowerValue?: number | undefined;
|
|
3796
3941
|
} | undefined;
|
|
3797
3942
|
yAxis?: {
|
|
3798
3943
|
title?: string | {
|
|
@@ -3806,6 +3951,11 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3806
3951
|
linesBetweenCategories?: boolean | undefined;
|
|
3807
3952
|
showTicks?: boolean | undefined;
|
|
3808
3953
|
labelsPosition?: "center" | "45deg" | "90deg" | undefined;
|
|
3954
|
+
significantLines?: number[] | undefined;
|
|
3955
|
+
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
3956
|
+
symmetricRange?: number | undefined;
|
|
3957
|
+
upperValue?: number | undefined;
|
|
3958
|
+
lowerValue?: number | undefined;
|
|
3809
3959
|
} | undefined;
|
|
3810
3960
|
facetBy?: {
|
|
3811
3961
|
type: "column";
|
|
@@ -6264,4 +6414,4 @@ declare class MiPlots implements ChartInterface {
|
|
|
6264
6414
|
export(): string;
|
|
6265
6415
|
}
|
|
6266
6416
|
|
|
6267
|
-
export { type ChartInterface, MiPlots, type Settings };
|
|
6417
|
+
export { type ChartInterface, type DendroSettings, type DiscreteSettings, type HeatmapSettings, MiPlots, type ScatterplotSettings, type Settings };
|