@visactor/vseed 0.1.0 → 0.1.2
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/builder/builder/builder.d.ts +116 -0
- package/dist/dataReshape/constant.d.ts +0 -8
- package/dist/dataReshape/foldMeasures.d.ts +6 -24
- package/dist/index.cjs +571 -299
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +554 -261
- package/dist/index.js.map +1 -1
- package/dist/pipeline/advanced/chart/pipes/encoding/index.d.ts +1 -0
- package/dist/pipeline/advanced/chart/pipes/encoding/line.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipes/color/colorAdapter.d.ts +3 -0
- package/dist/pipeline/spec/chart/pipes/color/colorAreaStyleFill.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipes/color/colorBarStyleFill.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipes/color/colorLineStyleFill.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipes/color/colorPointStyleFill.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipes/color/index.d.ts +6 -0
- package/dist/pipeline/spec/chart/pipes/{tooltip/tooltipDisable.d.ts → color/linearColor.d.ts} +1 -1
- package/dist/pipeline/spec/chart/pipes/legend/colorLegend.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipes/legend/index.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipes/legend/pivotColorLegend.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipes/tooltip/index.d.ts +0 -1
- package/dist/pipeline/utils/dimensions/find.d.ts +0 -2
- package/dist/pipeline/utils/dimensions/index.d.ts +0 -1
- package/dist/pipeline/utils/dimensions/typeGuard.d.ts +0 -4
- package/dist/types/advancedVSeed.d.ts +40 -0
- package/dist/types/chartType/area/area.d.ts +5 -2
- package/dist/types/chartType/area/zArea.d.ts +1 -0
- package/dist/types/chartType/areaPercent/areaPercent.d.ts +5 -2
- package/dist/types/chartType/areaPercent/zAreaPercent.d.ts +1 -0
- package/dist/types/chartType/bar/bar.d.ts +5 -2
- package/dist/types/chartType/bar/zBar.d.ts +1 -0
- package/dist/types/chartType/barParallel/barParallel.d.ts +5 -2
- package/dist/types/chartType/barParallel/zBarParallel.d.ts +1 -0
- package/dist/types/chartType/barPercent/barPercent.d.ts +5 -2
- package/dist/types/chartType/barPercent/zBarPercent.d.ts +1 -0
- package/dist/types/chartType/column/column.d.ts +5 -2
- package/dist/types/chartType/column/zColumn.d.ts +1 -0
- package/dist/types/chartType/columnParallel/columnParallel.d.ts +6 -3
- package/dist/types/chartType/columnParallel/zColumnParallel.d.ts +1 -0
- package/dist/types/chartType/columnPercent/columnPercent.d.ts +6 -3
- package/dist/types/chartType/columnPercent/zColumnPercent.d.ts +1 -0
- package/dist/types/chartType/donut/donut.d.ts +8 -6
- package/dist/types/chartType/donut/zDonut.d.ts +1 -0
- package/dist/types/chartType/dualAxis/dualAxis.d.ts +7 -3
- package/dist/types/chartType/dualAxis/zDualAxis.d.ts +1 -0
- package/dist/types/chartType/funnel/funnel.d.ts +5 -2
- package/dist/types/chartType/funnel/zFunnel.d.ts +2 -0
- package/dist/types/chartType/heatmap/heatmap.d.ts +5 -2
- package/dist/types/chartType/heatmap/zHeatmap.d.ts +2 -0
- package/dist/types/chartType/line/line.d.ts +5 -2
- package/dist/types/chartType/line/zLine.d.ts +1 -0
- package/dist/types/chartType/pie/pie.d.ts +7 -5
- package/dist/types/chartType/pie/zPie.d.ts +1 -0
- package/dist/types/chartType/radar/radar.d.ts +5 -2
- package/dist/types/chartType/radar/zRadar.d.ts +1 -0
- package/dist/types/chartType/rose/rose.d.ts +5 -2
- package/dist/types/chartType/rose/zRose.d.ts +1 -0
- package/dist/types/chartType/roseParallel/roseParallel.d.ts +6 -3
- package/dist/types/chartType/roseParallel/zRoseParallel.d.ts +1 -0
- package/dist/types/chartType/scatter/scatter.d.ts +6 -2
- package/dist/types/chartType/scatter/zScatter.d.ts +1 -0
- package/dist/types/properties/config/color/color.d.ts +8 -2
- package/dist/types/properties/config/config.d.ts +36 -0
- package/dist/types/properties/config/legend/legend.d.ts +9 -5
- package/dist/types/properties/datasetReshapeInfo/datasetReshapeInfo.d.ts +2 -0
- package/dist/types/properties/datasetReshapeInfo/zDatasetReshapeInfo.d.ts +6 -0
- package/dist/types/properties/theme/customTheme.d.ts +36 -0
- package/dist/types/zVseed.d.ts +20 -0
- package/dist/umd/index.js +571 -285
- package/dist/umd/index.js.map +1 -1
- package/package.json +1 -1
@@ -53,6 +53,8 @@ export declare class Builder implements VSeedBuilder {
|
|
53
53
|
index: number;
|
54
54
|
foldInfo: {
|
55
55
|
foldMap: Record<string, string | undefined>;
|
56
|
+
colorRange: number[];
|
57
|
+
measureRange: number[];
|
56
58
|
measureId: string;
|
57
59
|
measureName: string;
|
58
60
|
measureValue: string;
|
@@ -69,6 +71,8 @@ export declare class Builder implements VSeedBuilder {
|
|
69
71
|
};
|
70
72
|
foldInfoList?: {
|
71
73
|
foldMap: Record<string, string | undefined>;
|
74
|
+
colorRange: number[];
|
75
|
+
measureRange: number[];
|
72
76
|
measureId: string;
|
73
77
|
measureName: string;
|
74
78
|
measureValue: string;
|
@@ -164,6 +168,7 @@ export declare class Builder implements VSeedBuilder {
|
|
164
168
|
} | null | undefined;
|
165
169
|
color?: {
|
166
170
|
colorScheme?: string[] | null | undefined;
|
171
|
+
linearColorScheme?: string[] | null | undefined;
|
167
172
|
colorMapping?: Record<string, string> | null | undefined;
|
168
173
|
} | null | undefined;
|
169
174
|
tooltip?: {
|
@@ -273,6 +278,7 @@ export declare class Builder implements VSeedBuilder {
|
|
273
278
|
} | null | undefined;
|
274
279
|
color?: {
|
275
280
|
colorScheme?: string[] | null | undefined;
|
281
|
+
linearColorScheme?: string[] | null | undefined;
|
276
282
|
colorMapping?: Record<string, string> | null | undefined;
|
277
283
|
} | null | undefined;
|
278
284
|
tooltip?: {
|
@@ -383,6 +389,7 @@ export declare class Builder implements VSeedBuilder {
|
|
383
389
|
} | null | undefined;
|
384
390
|
color?: {
|
385
391
|
colorScheme?: string[] | null | undefined;
|
392
|
+
linearColorScheme?: string[] | null | undefined;
|
386
393
|
colorMapping?: Record<string, string> | null | undefined;
|
387
394
|
} | null | undefined;
|
388
395
|
tooltip?: {
|
@@ -493,6 +500,7 @@ export declare class Builder implements VSeedBuilder {
|
|
493
500
|
} | null | undefined;
|
494
501
|
color?: {
|
495
502
|
colorScheme?: string[] | null | undefined;
|
503
|
+
linearColorScheme?: string[] | null | undefined;
|
496
504
|
colorMapping?: Record<string, string> | null | undefined;
|
497
505
|
} | null | undefined;
|
498
506
|
tooltip?: {
|
@@ -603,6 +611,7 @@ export declare class Builder implements VSeedBuilder {
|
|
603
611
|
} | null | undefined;
|
604
612
|
color?: {
|
605
613
|
colorScheme?: string[] | null | undefined;
|
614
|
+
linearColorScheme?: string[] | null | undefined;
|
606
615
|
colorMapping?: Record<string, string> | null | undefined;
|
607
616
|
} | null | undefined;
|
608
617
|
tooltip?: {
|
@@ -713,6 +722,7 @@ export declare class Builder implements VSeedBuilder {
|
|
713
722
|
} | null | undefined;
|
714
723
|
color?: {
|
715
724
|
colorScheme?: string[] | null | undefined;
|
725
|
+
linearColorScheme?: string[] | null | undefined;
|
716
726
|
colorMapping?: Record<string, string> | null | undefined;
|
717
727
|
} | null | undefined;
|
718
728
|
tooltip?: {
|
@@ -823,6 +833,7 @@ export declare class Builder implements VSeedBuilder {
|
|
823
833
|
} | null | undefined;
|
824
834
|
color?: {
|
825
835
|
colorScheme?: string[] | null | undefined;
|
836
|
+
linearColorScheme?: string[] | null | undefined;
|
826
837
|
colorMapping?: Record<string, string> | null | undefined;
|
827
838
|
} | null | undefined;
|
828
839
|
tooltip?: {
|
@@ -933,6 +944,7 @@ export declare class Builder implements VSeedBuilder {
|
|
933
944
|
} | null | undefined;
|
934
945
|
color?: {
|
935
946
|
colorScheme?: string[] | null | undefined;
|
947
|
+
linearColorScheme?: string[] | null | undefined;
|
936
948
|
colorMapping?: Record<string, string> | null | undefined;
|
937
949
|
} | null | undefined;
|
938
950
|
tooltip?: {
|
@@ -1042,6 +1054,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1042
1054
|
} | null | undefined;
|
1043
1055
|
color?: {
|
1044
1056
|
colorScheme?: string[] | null | undefined;
|
1057
|
+
linearColorScheme?: string[] | null | undefined;
|
1045
1058
|
colorMapping?: Record<string, string> | null | undefined;
|
1046
1059
|
} | null | undefined;
|
1047
1060
|
tooltip?: {
|
@@ -1151,6 +1164,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1151
1164
|
} | null | undefined;
|
1152
1165
|
color?: {
|
1153
1166
|
colorScheme?: string[] | null | undefined;
|
1167
|
+
linearColorScheme?: string[] | null | undefined;
|
1154
1168
|
colorMapping?: Record<string, string> | null | undefined;
|
1155
1169
|
} | null | undefined;
|
1156
1170
|
tooltip?: {
|
@@ -1261,6 +1275,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1261
1275
|
} | null | undefined;
|
1262
1276
|
color?: {
|
1263
1277
|
colorScheme?: string[] | null | undefined;
|
1278
|
+
linearColorScheme?: string[] | null | undefined;
|
1264
1279
|
colorMapping?: Record<string, string> | null | undefined;
|
1265
1280
|
} | null | undefined;
|
1266
1281
|
tooltip?: {
|
@@ -1496,6 +1511,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1496
1511
|
} | null | undefined;
|
1497
1512
|
color?: {
|
1498
1513
|
colorScheme?: string[] | null | undefined;
|
1514
|
+
linearColorScheme?: string[] | null | undefined;
|
1499
1515
|
colorMapping?: Record<string, string> | null | undefined;
|
1500
1516
|
} | null | undefined;
|
1501
1517
|
tooltip?: {
|
@@ -1519,6 +1535,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1519
1535
|
} | null | undefined;
|
1520
1536
|
color?: {
|
1521
1537
|
colorScheme?: string[] | null | undefined;
|
1538
|
+
linearColorScheme?: string[] | null | undefined;
|
1522
1539
|
colorMapping?: Record<string, string> | null | undefined;
|
1523
1540
|
} | null | undefined;
|
1524
1541
|
tooltip?: {
|
@@ -1542,6 +1559,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1542
1559
|
} | null | undefined;
|
1543
1560
|
color?: {
|
1544
1561
|
colorScheme?: string[] | null | undefined;
|
1562
|
+
linearColorScheme?: string[] | null | undefined;
|
1545
1563
|
colorMapping?: Record<string, string> | null | undefined;
|
1546
1564
|
} | null | undefined;
|
1547
1565
|
tooltip?: {
|
@@ -1565,6 +1583,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1565
1583
|
} | null | undefined;
|
1566
1584
|
color?: {
|
1567
1585
|
colorScheme?: string[] | null | undefined;
|
1586
|
+
linearColorScheme?: string[] | null | undefined;
|
1568
1587
|
colorMapping?: Record<string, string> | null | undefined;
|
1569
1588
|
} | null | undefined;
|
1570
1589
|
tooltip?: {
|
@@ -1588,6 +1607,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1588
1607
|
} | null | undefined;
|
1589
1608
|
color?: {
|
1590
1609
|
colorScheme?: string[] | null | undefined;
|
1610
|
+
linearColorScheme?: string[] | null | undefined;
|
1591
1611
|
colorMapping?: Record<string, string> | null | undefined;
|
1592
1612
|
} | null | undefined;
|
1593
1613
|
tooltip?: {
|
@@ -1611,6 +1631,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1611
1631
|
} | null | undefined;
|
1612
1632
|
color?: {
|
1613
1633
|
colorScheme?: string[] | null | undefined;
|
1634
|
+
linearColorScheme?: string[] | null | undefined;
|
1614
1635
|
colorMapping?: Record<string, string> | null | undefined;
|
1615
1636
|
} | null | undefined;
|
1616
1637
|
tooltip?: {
|
@@ -1634,6 +1655,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1634
1655
|
} | null | undefined;
|
1635
1656
|
color?: {
|
1636
1657
|
colorScheme?: string[] | null | undefined;
|
1658
|
+
linearColorScheme?: string[] | null | undefined;
|
1637
1659
|
colorMapping?: Record<string, string> | null | undefined;
|
1638
1660
|
} | null | undefined;
|
1639
1661
|
tooltip?: {
|
@@ -1924,6 +1946,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1924
1946
|
} | null | undefined;
|
1925
1947
|
color?: {
|
1926
1948
|
colorScheme?: string[] | null | undefined;
|
1949
|
+
linearColorScheme?: string[] | null | undefined;
|
1927
1950
|
colorMapping?: Record<string, string> | null | undefined;
|
1928
1951
|
} | null | undefined;
|
1929
1952
|
tooltip?: {
|
@@ -2033,6 +2056,7 @@ export declare class Builder implements VSeedBuilder {
|
|
2033
2056
|
} | null | undefined;
|
2034
2057
|
color?: {
|
2035
2058
|
colorScheme?: string[] | null | undefined;
|
2059
|
+
linearColorScheme?: string[] | null | undefined;
|
2036
2060
|
colorMapping?: Record<string, string> | null | undefined;
|
2037
2061
|
} | null | undefined;
|
2038
2062
|
tooltip?: {
|
@@ -2143,6 +2167,7 @@ export declare class Builder implements VSeedBuilder {
|
|
2143
2167
|
} | null | undefined;
|
2144
2168
|
color?: {
|
2145
2169
|
colorScheme?: string[] | null | undefined;
|
2170
|
+
linearColorScheme?: string[] | null | undefined;
|
2146
2171
|
colorMapping?: Record<string, string> | null | undefined;
|
2147
2172
|
} | null | undefined;
|
2148
2173
|
tooltip?: {
|
@@ -2253,6 +2278,7 @@ export declare class Builder implements VSeedBuilder {
|
|
2253
2278
|
} | null | undefined;
|
2254
2279
|
color?: {
|
2255
2280
|
colorScheme?: string[] | null | undefined;
|
2281
|
+
linearColorScheme?: string[] | null | undefined;
|
2256
2282
|
colorMapping?: Record<string, string> | null | undefined;
|
2257
2283
|
} | null | undefined;
|
2258
2284
|
tooltip?: {
|
@@ -2363,6 +2389,7 @@ export declare class Builder implements VSeedBuilder {
|
|
2363
2389
|
} | null | undefined;
|
2364
2390
|
color?: {
|
2365
2391
|
colorScheme?: string[] | null | undefined;
|
2392
|
+
linearColorScheme?: string[] | null | undefined;
|
2366
2393
|
colorMapping?: Record<string, string> | null | undefined;
|
2367
2394
|
} | null | undefined;
|
2368
2395
|
tooltip?: {
|
@@ -2473,6 +2500,7 @@ export declare class Builder implements VSeedBuilder {
|
|
2473
2500
|
} | null | undefined;
|
2474
2501
|
color?: {
|
2475
2502
|
colorScheme?: string[] | null | undefined;
|
2503
|
+
linearColorScheme?: string[] | null | undefined;
|
2476
2504
|
colorMapping?: Record<string, string> | null | undefined;
|
2477
2505
|
} | null | undefined;
|
2478
2506
|
tooltip?: {
|
@@ -2583,6 +2611,7 @@ export declare class Builder implements VSeedBuilder {
|
|
2583
2611
|
} | null | undefined;
|
2584
2612
|
color?: {
|
2585
2613
|
colorScheme?: string[] | null | undefined;
|
2614
|
+
linearColorScheme?: string[] | null | undefined;
|
2586
2615
|
colorMapping?: Record<string, string> | null | undefined;
|
2587
2616
|
} | null | undefined;
|
2588
2617
|
tooltip?: {
|
@@ -2693,6 +2722,7 @@ export declare class Builder implements VSeedBuilder {
|
|
2693
2722
|
} | null | undefined;
|
2694
2723
|
color?: {
|
2695
2724
|
colorScheme?: string[] | null | undefined;
|
2725
|
+
linearColorScheme?: string[] | null | undefined;
|
2696
2726
|
colorMapping?: Record<string, string> | null | undefined;
|
2697
2727
|
} | null | undefined;
|
2698
2728
|
tooltip?: {
|
@@ -2802,6 +2832,7 @@ export declare class Builder implements VSeedBuilder {
|
|
2802
2832
|
} | null | undefined;
|
2803
2833
|
color?: {
|
2804
2834
|
colorScheme?: string[] | null | undefined;
|
2835
|
+
linearColorScheme?: string[] | null | undefined;
|
2805
2836
|
colorMapping?: Record<string, string> | null | undefined;
|
2806
2837
|
} | null | undefined;
|
2807
2838
|
tooltip?: {
|
@@ -2911,6 +2942,7 @@ export declare class Builder implements VSeedBuilder {
|
|
2911
2942
|
} | null | undefined;
|
2912
2943
|
color?: {
|
2913
2944
|
colorScheme?: string[] | null | undefined;
|
2945
|
+
linearColorScheme?: string[] | null | undefined;
|
2914
2946
|
colorMapping?: Record<string, string> | null | undefined;
|
2915
2947
|
} | null | undefined;
|
2916
2948
|
tooltip?: {
|
@@ -3021,6 +3053,7 @@ export declare class Builder implements VSeedBuilder {
|
|
3021
3053
|
} | null | undefined;
|
3022
3054
|
color?: {
|
3023
3055
|
colorScheme?: string[] | null | undefined;
|
3056
|
+
linearColorScheme?: string[] | null | undefined;
|
3024
3057
|
colorMapping?: Record<string, string> | null | undefined;
|
3025
3058
|
} | null | undefined;
|
3026
3059
|
tooltip?: {
|
@@ -3256,6 +3289,7 @@ export declare class Builder implements VSeedBuilder {
|
|
3256
3289
|
} | null | undefined;
|
3257
3290
|
color?: {
|
3258
3291
|
colorScheme?: string[] | null | undefined;
|
3292
|
+
linearColorScheme?: string[] | null | undefined;
|
3259
3293
|
colorMapping?: Record<string, string> | null | undefined;
|
3260
3294
|
} | null | undefined;
|
3261
3295
|
tooltip?: {
|
@@ -3279,6 +3313,7 @@ export declare class Builder implements VSeedBuilder {
|
|
3279
3313
|
} | null | undefined;
|
3280
3314
|
color?: {
|
3281
3315
|
colorScheme?: string[] | null | undefined;
|
3316
|
+
linearColorScheme?: string[] | null | undefined;
|
3282
3317
|
colorMapping?: Record<string, string> | null | undefined;
|
3283
3318
|
} | null | undefined;
|
3284
3319
|
tooltip?: {
|
@@ -3302,6 +3337,7 @@ export declare class Builder implements VSeedBuilder {
|
|
3302
3337
|
} | null | undefined;
|
3303
3338
|
color?: {
|
3304
3339
|
colorScheme?: string[] | null | undefined;
|
3340
|
+
linearColorScheme?: string[] | null | undefined;
|
3305
3341
|
colorMapping?: Record<string, string> | null | undefined;
|
3306
3342
|
} | null | undefined;
|
3307
3343
|
tooltip?: {
|
@@ -3325,6 +3361,7 @@ export declare class Builder implements VSeedBuilder {
|
|
3325
3361
|
} | null | undefined;
|
3326
3362
|
color?: {
|
3327
3363
|
colorScheme?: string[] | null | undefined;
|
3364
|
+
linearColorScheme?: string[] | null | undefined;
|
3328
3365
|
colorMapping?: Record<string, string> | null | undefined;
|
3329
3366
|
} | null | undefined;
|
3330
3367
|
tooltip?: {
|
@@ -3348,6 +3385,7 @@ export declare class Builder implements VSeedBuilder {
|
|
3348
3385
|
} | null | undefined;
|
3349
3386
|
color?: {
|
3350
3387
|
colorScheme?: string[] | null | undefined;
|
3388
|
+
linearColorScheme?: string[] | null | undefined;
|
3351
3389
|
colorMapping?: Record<string, string> | null | undefined;
|
3352
3390
|
} | null | undefined;
|
3353
3391
|
tooltip?: {
|
@@ -3371,6 +3409,7 @@ export declare class Builder implements VSeedBuilder {
|
|
3371
3409
|
} | null | undefined;
|
3372
3410
|
color?: {
|
3373
3411
|
colorScheme?: string[] | null | undefined;
|
3412
|
+
linearColorScheme?: string[] | null | undefined;
|
3374
3413
|
colorMapping?: Record<string, string> | null | undefined;
|
3375
3414
|
} | null | undefined;
|
3376
3415
|
tooltip?: {
|
@@ -3394,6 +3433,7 @@ export declare class Builder implements VSeedBuilder {
|
|
3394
3433
|
} | null | undefined;
|
3395
3434
|
color?: {
|
3396
3435
|
colorScheme?: string[] | null | undefined;
|
3436
|
+
linearColorScheme?: string[] | null | undefined;
|
3397
3437
|
colorMapping?: Record<string, string> | null | undefined;
|
3398
3438
|
} | null | undefined;
|
3399
3439
|
tooltip?: {
|
@@ -3747,6 +3787,8 @@ export declare class Builder implements VSeedBuilder {
|
|
3747
3787
|
index: number;
|
3748
3788
|
foldInfo: {
|
3749
3789
|
foldMap: Record<string, string | undefined>;
|
3790
|
+
colorRange: number[];
|
3791
|
+
measureRange: number[];
|
3750
3792
|
measureId: string;
|
3751
3793
|
measureName: string;
|
3752
3794
|
measureValue: string;
|
@@ -3763,6 +3805,8 @@ export declare class Builder implements VSeedBuilder {
|
|
3763
3805
|
};
|
3764
3806
|
foldInfoList?: {
|
3765
3807
|
foldMap: Record<string, string | undefined>;
|
3808
|
+
colorRange: number[];
|
3809
|
+
measureRange: number[];
|
3766
3810
|
measureId: string;
|
3767
3811
|
measureName: string;
|
3768
3812
|
measureValue: string;
|
@@ -3858,6 +3902,7 @@ export declare class Builder implements VSeedBuilder {
|
|
3858
3902
|
} | null | undefined;
|
3859
3903
|
color?: {
|
3860
3904
|
colorScheme?: string[] | null | undefined;
|
3905
|
+
linearColorScheme?: string[] | null | undefined;
|
3861
3906
|
colorMapping?: Record<string, string> | null | undefined;
|
3862
3907
|
} | null | undefined;
|
3863
3908
|
tooltip?: {
|
@@ -3967,6 +4012,7 @@ export declare class Builder implements VSeedBuilder {
|
|
3967
4012
|
} | null | undefined;
|
3968
4013
|
color?: {
|
3969
4014
|
colorScheme?: string[] | null | undefined;
|
4015
|
+
linearColorScheme?: string[] | null | undefined;
|
3970
4016
|
colorMapping?: Record<string, string> | null | undefined;
|
3971
4017
|
} | null | undefined;
|
3972
4018
|
tooltip?: {
|
@@ -4077,6 +4123,7 @@ export declare class Builder implements VSeedBuilder {
|
|
4077
4123
|
} | null | undefined;
|
4078
4124
|
color?: {
|
4079
4125
|
colorScheme?: string[] | null | undefined;
|
4126
|
+
linearColorScheme?: string[] | null | undefined;
|
4080
4127
|
colorMapping?: Record<string, string> | null | undefined;
|
4081
4128
|
} | null | undefined;
|
4082
4129
|
tooltip?: {
|
@@ -4187,6 +4234,7 @@ export declare class Builder implements VSeedBuilder {
|
|
4187
4234
|
} | null | undefined;
|
4188
4235
|
color?: {
|
4189
4236
|
colorScheme?: string[] | null | undefined;
|
4237
|
+
linearColorScheme?: string[] | null | undefined;
|
4190
4238
|
colorMapping?: Record<string, string> | null | undefined;
|
4191
4239
|
} | null | undefined;
|
4192
4240
|
tooltip?: {
|
@@ -4297,6 +4345,7 @@ export declare class Builder implements VSeedBuilder {
|
|
4297
4345
|
} | null | undefined;
|
4298
4346
|
color?: {
|
4299
4347
|
colorScheme?: string[] | null | undefined;
|
4348
|
+
linearColorScheme?: string[] | null | undefined;
|
4300
4349
|
colorMapping?: Record<string, string> | null | undefined;
|
4301
4350
|
} | null | undefined;
|
4302
4351
|
tooltip?: {
|
@@ -4407,6 +4456,7 @@ export declare class Builder implements VSeedBuilder {
|
|
4407
4456
|
} | null | undefined;
|
4408
4457
|
color?: {
|
4409
4458
|
colorScheme?: string[] | null | undefined;
|
4459
|
+
linearColorScheme?: string[] | null | undefined;
|
4410
4460
|
colorMapping?: Record<string, string> | null | undefined;
|
4411
4461
|
} | null | undefined;
|
4412
4462
|
tooltip?: {
|
@@ -4517,6 +4567,7 @@ export declare class Builder implements VSeedBuilder {
|
|
4517
4567
|
} | null | undefined;
|
4518
4568
|
color?: {
|
4519
4569
|
colorScheme?: string[] | null | undefined;
|
4570
|
+
linearColorScheme?: string[] | null | undefined;
|
4520
4571
|
colorMapping?: Record<string, string> | null | undefined;
|
4521
4572
|
} | null | undefined;
|
4522
4573
|
tooltip?: {
|
@@ -4627,6 +4678,7 @@ export declare class Builder implements VSeedBuilder {
|
|
4627
4678
|
} | null | undefined;
|
4628
4679
|
color?: {
|
4629
4680
|
colorScheme?: string[] | null | undefined;
|
4681
|
+
linearColorScheme?: string[] | null | undefined;
|
4630
4682
|
colorMapping?: Record<string, string> | null | undefined;
|
4631
4683
|
} | null | undefined;
|
4632
4684
|
tooltip?: {
|
@@ -4736,6 +4788,7 @@ export declare class Builder implements VSeedBuilder {
|
|
4736
4788
|
} | null | undefined;
|
4737
4789
|
color?: {
|
4738
4790
|
colorScheme?: string[] | null | undefined;
|
4791
|
+
linearColorScheme?: string[] | null | undefined;
|
4739
4792
|
colorMapping?: Record<string, string> | null | undefined;
|
4740
4793
|
} | null | undefined;
|
4741
4794
|
tooltip?: {
|
@@ -4845,6 +4898,7 @@ export declare class Builder implements VSeedBuilder {
|
|
4845
4898
|
} | null | undefined;
|
4846
4899
|
color?: {
|
4847
4900
|
colorScheme?: string[] | null | undefined;
|
4901
|
+
linearColorScheme?: string[] | null | undefined;
|
4848
4902
|
colorMapping?: Record<string, string> | null | undefined;
|
4849
4903
|
} | null | undefined;
|
4850
4904
|
tooltip?: {
|
@@ -4955,6 +5009,7 @@ export declare class Builder implements VSeedBuilder {
|
|
4955
5009
|
} | null | undefined;
|
4956
5010
|
color?: {
|
4957
5011
|
colorScheme?: string[] | null | undefined;
|
5012
|
+
linearColorScheme?: string[] | null | undefined;
|
4958
5013
|
colorMapping?: Record<string, string> | null | undefined;
|
4959
5014
|
} | null | undefined;
|
4960
5015
|
tooltip?: {
|
@@ -5190,6 +5245,7 @@ export declare class Builder implements VSeedBuilder {
|
|
5190
5245
|
} | null | undefined;
|
5191
5246
|
color?: {
|
5192
5247
|
colorScheme?: string[] | null | undefined;
|
5248
|
+
linearColorScheme?: string[] | null | undefined;
|
5193
5249
|
colorMapping?: Record<string, string> | null | undefined;
|
5194
5250
|
} | null | undefined;
|
5195
5251
|
tooltip?: {
|
@@ -5213,6 +5269,7 @@ export declare class Builder implements VSeedBuilder {
|
|
5213
5269
|
} | null | undefined;
|
5214
5270
|
color?: {
|
5215
5271
|
colorScheme?: string[] | null | undefined;
|
5272
|
+
linearColorScheme?: string[] | null | undefined;
|
5216
5273
|
colorMapping?: Record<string, string> | null | undefined;
|
5217
5274
|
} | null | undefined;
|
5218
5275
|
tooltip?: {
|
@@ -5236,6 +5293,7 @@ export declare class Builder implements VSeedBuilder {
|
|
5236
5293
|
} | null | undefined;
|
5237
5294
|
color?: {
|
5238
5295
|
colorScheme?: string[] | null | undefined;
|
5296
|
+
linearColorScheme?: string[] | null | undefined;
|
5239
5297
|
colorMapping?: Record<string, string> | null | undefined;
|
5240
5298
|
} | null | undefined;
|
5241
5299
|
tooltip?: {
|
@@ -5259,6 +5317,7 @@ export declare class Builder implements VSeedBuilder {
|
|
5259
5317
|
} | null | undefined;
|
5260
5318
|
color?: {
|
5261
5319
|
colorScheme?: string[] | null | undefined;
|
5320
|
+
linearColorScheme?: string[] | null | undefined;
|
5262
5321
|
colorMapping?: Record<string, string> | null | undefined;
|
5263
5322
|
} | null | undefined;
|
5264
5323
|
tooltip?: {
|
@@ -5282,6 +5341,7 @@ export declare class Builder implements VSeedBuilder {
|
|
5282
5341
|
} | null | undefined;
|
5283
5342
|
color?: {
|
5284
5343
|
colorScheme?: string[] | null | undefined;
|
5344
|
+
linearColorScheme?: string[] | null | undefined;
|
5285
5345
|
colorMapping?: Record<string, string> | null | undefined;
|
5286
5346
|
} | null | undefined;
|
5287
5347
|
tooltip?: {
|
@@ -5305,6 +5365,7 @@ export declare class Builder implements VSeedBuilder {
|
|
5305
5365
|
} | null | undefined;
|
5306
5366
|
color?: {
|
5307
5367
|
colorScheme?: string[] | null | undefined;
|
5368
|
+
linearColorScheme?: string[] | null | undefined;
|
5308
5369
|
colorMapping?: Record<string, string> | null | undefined;
|
5309
5370
|
} | null | undefined;
|
5310
5371
|
tooltip?: {
|
@@ -5328,6 +5389,7 @@ export declare class Builder implements VSeedBuilder {
|
|
5328
5389
|
} | null | undefined;
|
5329
5390
|
color?: {
|
5330
5391
|
colorScheme?: string[] | null | undefined;
|
5392
|
+
linearColorScheme?: string[] | null | undefined;
|
5331
5393
|
colorMapping?: Record<string, string> | null | undefined;
|
5332
5394
|
} | null | undefined;
|
5333
5395
|
tooltip?: {
|
@@ -5618,6 +5680,7 @@ export declare class Builder implements VSeedBuilder {
|
|
5618
5680
|
} | null | undefined;
|
5619
5681
|
color?: {
|
5620
5682
|
colorScheme?: string[] | null | undefined;
|
5683
|
+
linearColorScheme?: string[] | null | undefined;
|
5621
5684
|
colorMapping?: Record<string, string> | null | undefined;
|
5622
5685
|
} | null | undefined;
|
5623
5686
|
tooltip?: {
|
@@ -5727,6 +5790,7 @@ export declare class Builder implements VSeedBuilder {
|
|
5727
5790
|
} | null | undefined;
|
5728
5791
|
color?: {
|
5729
5792
|
colorScheme?: string[] | null | undefined;
|
5793
|
+
linearColorScheme?: string[] | null | undefined;
|
5730
5794
|
colorMapping?: Record<string, string> | null | undefined;
|
5731
5795
|
} | null | undefined;
|
5732
5796
|
tooltip?: {
|
@@ -5837,6 +5901,7 @@ export declare class Builder implements VSeedBuilder {
|
|
5837
5901
|
} | null | undefined;
|
5838
5902
|
color?: {
|
5839
5903
|
colorScheme?: string[] | null | undefined;
|
5904
|
+
linearColorScheme?: string[] | null | undefined;
|
5840
5905
|
colorMapping?: Record<string, string> | null | undefined;
|
5841
5906
|
} | null | undefined;
|
5842
5907
|
tooltip?: {
|
@@ -5947,6 +6012,7 @@ export declare class Builder implements VSeedBuilder {
|
|
5947
6012
|
} | null | undefined;
|
5948
6013
|
color?: {
|
5949
6014
|
colorScheme?: string[] | null | undefined;
|
6015
|
+
linearColorScheme?: string[] | null | undefined;
|
5950
6016
|
colorMapping?: Record<string, string> | null | undefined;
|
5951
6017
|
} | null | undefined;
|
5952
6018
|
tooltip?: {
|
@@ -6057,6 +6123,7 @@ export declare class Builder implements VSeedBuilder {
|
|
6057
6123
|
} | null | undefined;
|
6058
6124
|
color?: {
|
6059
6125
|
colorScheme?: string[] | null | undefined;
|
6126
|
+
linearColorScheme?: string[] | null | undefined;
|
6060
6127
|
colorMapping?: Record<string, string> | null | undefined;
|
6061
6128
|
} | null | undefined;
|
6062
6129
|
tooltip?: {
|
@@ -6167,6 +6234,7 @@ export declare class Builder implements VSeedBuilder {
|
|
6167
6234
|
} | null | undefined;
|
6168
6235
|
color?: {
|
6169
6236
|
colorScheme?: string[] | null | undefined;
|
6237
|
+
linearColorScheme?: string[] | null | undefined;
|
6170
6238
|
colorMapping?: Record<string, string> | null | undefined;
|
6171
6239
|
} | null | undefined;
|
6172
6240
|
tooltip?: {
|
@@ -6277,6 +6345,7 @@ export declare class Builder implements VSeedBuilder {
|
|
6277
6345
|
} | null | undefined;
|
6278
6346
|
color?: {
|
6279
6347
|
colorScheme?: string[] | null | undefined;
|
6348
|
+
linearColorScheme?: string[] | null | undefined;
|
6280
6349
|
colorMapping?: Record<string, string> | null | undefined;
|
6281
6350
|
} | null | undefined;
|
6282
6351
|
tooltip?: {
|
@@ -6387,6 +6456,7 @@ export declare class Builder implements VSeedBuilder {
|
|
6387
6456
|
} | null | undefined;
|
6388
6457
|
color?: {
|
6389
6458
|
colorScheme?: string[] | null | undefined;
|
6459
|
+
linearColorScheme?: string[] | null | undefined;
|
6390
6460
|
colorMapping?: Record<string, string> | null | undefined;
|
6391
6461
|
} | null | undefined;
|
6392
6462
|
tooltip?: {
|
@@ -6496,6 +6566,7 @@ export declare class Builder implements VSeedBuilder {
|
|
6496
6566
|
} | null | undefined;
|
6497
6567
|
color?: {
|
6498
6568
|
colorScheme?: string[] | null | undefined;
|
6569
|
+
linearColorScheme?: string[] | null | undefined;
|
6499
6570
|
colorMapping?: Record<string, string> | null | undefined;
|
6500
6571
|
} | null | undefined;
|
6501
6572
|
tooltip?: {
|
@@ -6605,6 +6676,7 @@ export declare class Builder implements VSeedBuilder {
|
|
6605
6676
|
} | null | undefined;
|
6606
6677
|
color?: {
|
6607
6678
|
colorScheme?: string[] | null | undefined;
|
6679
|
+
linearColorScheme?: string[] | null | undefined;
|
6608
6680
|
colorMapping?: Record<string, string> | null | undefined;
|
6609
6681
|
} | null | undefined;
|
6610
6682
|
tooltip?: {
|
@@ -6715,6 +6787,7 @@ export declare class Builder implements VSeedBuilder {
|
|
6715
6787
|
} | null | undefined;
|
6716
6788
|
color?: {
|
6717
6789
|
colorScheme?: string[] | null | undefined;
|
6790
|
+
linearColorScheme?: string[] | null | undefined;
|
6718
6791
|
colorMapping?: Record<string, string> | null | undefined;
|
6719
6792
|
} | null | undefined;
|
6720
6793
|
tooltip?: {
|
@@ -6950,6 +7023,7 @@ export declare class Builder implements VSeedBuilder {
|
|
6950
7023
|
} | null | undefined;
|
6951
7024
|
color?: {
|
6952
7025
|
colorScheme?: string[] | null | undefined;
|
7026
|
+
linearColorScheme?: string[] | null | undefined;
|
6953
7027
|
colorMapping?: Record<string, string> | null | undefined;
|
6954
7028
|
} | null | undefined;
|
6955
7029
|
tooltip?: {
|
@@ -6973,6 +7047,7 @@ export declare class Builder implements VSeedBuilder {
|
|
6973
7047
|
} | null | undefined;
|
6974
7048
|
color?: {
|
6975
7049
|
colorScheme?: string[] | null | undefined;
|
7050
|
+
linearColorScheme?: string[] | null | undefined;
|
6976
7051
|
colorMapping?: Record<string, string> | null | undefined;
|
6977
7052
|
} | null | undefined;
|
6978
7053
|
tooltip?: {
|
@@ -6996,6 +7071,7 @@ export declare class Builder implements VSeedBuilder {
|
|
6996
7071
|
} | null | undefined;
|
6997
7072
|
color?: {
|
6998
7073
|
colorScheme?: string[] | null | undefined;
|
7074
|
+
linearColorScheme?: string[] | null | undefined;
|
6999
7075
|
colorMapping?: Record<string, string> | null | undefined;
|
7000
7076
|
} | null | undefined;
|
7001
7077
|
tooltip?: {
|
@@ -7019,6 +7095,7 @@ export declare class Builder implements VSeedBuilder {
|
|
7019
7095
|
} | null | undefined;
|
7020
7096
|
color?: {
|
7021
7097
|
colorScheme?: string[] | null | undefined;
|
7098
|
+
linearColorScheme?: string[] | null | undefined;
|
7022
7099
|
colorMapping?: Record<string, string> | null | undefined;
|
7023
7100
|
} | null | undefined;
|
7024
7101
|
tooltip?: {
|
@@ -7042,6 +7119,7 @@ export declare class Builder implements VSeedBuilder {
|
|
7042
7119
|
} | null | undefined;
|
7043
7120
|
color?: {
|
7044
7121
|
colorScheme?: string[] | null | undefined;
|
7122
|
+
linearColorScheme?: string[] | null | undefined;
|
7045
7123
|
colorMapping?: Record<string, string> | null | undefined;
|
7046
7124
|
} | null | undefined;
|
7047
7125
|
tooltip?: {
|
@@ -7065,6 +7143,7 @@ export declare class Builder implements VSeedBuilder {
|
|
7065
7143
|
} | null | undefined;
|
7066
7144
|
color?: {
|
7067
7145
|
colorScheme?: string[] | null | undefined;
|
7146
|
+
linearColorScheme?: string[] | null | undefined;
|
7068
7147
|
colorMapping?: Record<string, string> | null | undefined;
|
7069
7148
|
} | null | undefined;
|
7070
7149
|
tooltip?: {
|
@@ -7088,6 +7167,7 @@ export declare class Builder implements VSeedBuilder {
|
|
7088
7167
|
} | null | undefined;
|
7089
7168
|
color?: {
|
7090
7169
|
colorScheme?: string[] | null | undefined;
|
7170
|
+
linearColorScheme?: string[] | null | undefined;
|
7091
7171
|
colorMapping?: Record<string, string> | null | undefined;
|
7092
7172
|
} | null | undefined;
|
7093
7173
|
tooltip?: {
|
@@ -7507,6 +7587,7 @@ export declare class Builder implements VSeedBuilder {
|
|
7507
7587
|
} | null | undefined;
|
7508
7588
|
color?: {
|
7509
7589
|
colorScheme?: string[] | null | undefined;
|
7590
|
+
linearColorScheme?: string[] | null | undefined;
|
7510
7591
|
colorMapping?: Record<string, string> | null | undefined;
|
7511
7592
|
} | null | undefined;
|
7512
7593
|
tooltip?: {
|
@@ -7616,6 +7697,7 @@ export declare class Builder implements VSeedBuilder {
|
|
7616
7697
|
} | null | undefined;
|
7617
7698
|
color?: {
|
7618
7699
|
colorScheme?: string[] | null | undefined;
|
7700
|
+
linearColorScheme?: string[] | null | undefined;
|
7619
7701
|
colorMapping?: Record<string, string> | null | undefined;
|
7620
7702
|
} | null | undefined;
|
7621
7703
|
tooltip?: {
|
@@ -7726,6 +7808,7 @@ export declare class Builder implements VSeedBuilder {
|
|
7726
7808
|
} | null | undefined;
|
7727
7809
|
color?: {
|
7728
7810
|
colorScheme?: string[] | null | undefined;
|
7811
|
+
linearColorScheme?: string[] | null | undefined;
|
7729
7812
|
colorMapping?: Record<string, string> | null | undefined;
|
7730
7813
|
} | null | undefined;
|
7731
7814
|
tooltip?: {
|
@@ -7836,6 +7919,7 @@ export declare class Builder implements VSeedBuilder {
|
|
7836
7919
|
} | null | undefined;
|
7837
7920
|
color?: {
|
7838
7921
|
colorScheme?: string[] | null | undefined;
|
7922
|
+
linearColorScheme?: string[] | null | undefined;
|
7839
7923
|
colorMapping?: Record<string, string> | null | undefined;
|
7840
7924
|
} | null | undefined;
|
7841
7925
|
tooltip?: {
|
@@ -7946,6 +8030,7 @@ export declare class Builder implements VSeedBuilder {
|
|
7946
8030
|
} | null | undefined;
|
7947
8031
|
color?: {
|
7948
8032
|
colorScheme?: string[] | null | undefined;
|
8033
|
+
linearColorScheme?: string[] | null | undefined;
|
7949
8034
|
colorMapping?: Record<string, string> | null | undefined;
|
7950
8035
|
} | null | undefined;
|
7951
8036
|
tooltip?: {
|
@@ -8056,6 +8141,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8056
8141
|
} | null | undefined;
|
8057
8142
|
color?: {
|
8058
8143
|
colorScheme?: string[] | null | undefined;
|
8144
|
+
linearColorScheme?: string[] | null | undefined;
|
8059
8145
|
colorMapping?: Record<string, string> | null | undefined;
|
8060
8146
|
} | null | undefined;
|
8061
8147
|
tooltip?: {
|
@@ -8166,6 +8252,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8166
8252
|
} | null | undefined;
|
8167
8253
|
color?: {
|
8168
8254
|
colorScheme?: string[] | null | undefined;
|
8255
|
+
linearColorScheme?: string[] | null | undefined;
|
8169
8256
|
colorMapping?: Record<string, string> | null | undefined;
|
8170
8257
|
} | null | undefined;
|
8171
8258
|
tooltip?: {
|
@@ -8276,6 +8363,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8276
8363
|
} | null | undefined;
|
8277
8364
|
color?: {
|
8278
8365
|
colorScheme?: string[] | null | undefined;
|
8366
|
+
linearColorScheme?: string[] | null | undefined;
|
8279
8367
|
colorMapping?: Record<string, string> | null | undefined;
|
8280
8368
|
} | null | undefined;
|
8281
8369
|
tooltip?: {
|
@@ -8385,6 +8473,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8385
8473
|
} | null | undefined;
|
8386
8474
|
color?: {
|
8387
8475
|
colorScheme?: string[] | null | undefined;
|
8476
|
+
linearColorScheme?: string[] | null | undefined;
|
8388
8477
|
colorMapping?: Record<string, string> | null | undefined;
|
8389
8478
|
} | null | undefined;
|
8390
8479
|
tooltip?: {
|
@@ -8494,6 +8583,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8494
8583
|
} | null | undefined;
|
8495
8584
|
color?: {
|
8496
8585
|
colorScheme?: string[] | null | undefined;
|
8586
|
+
linearColorScheme?: string[] | null | undefined;
|
8497
8587
|
colorMapping?: Record<string, string> | null | undefined;
|
8498
8588
|
} | null | undefined;
|
8499
8589
|
tooltip?: {
|
@@ -8604,6 +8694,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8604
8694
|
} | null | undefined;
|
8605
8695
|
color?: {
|
8606
8696
|
colorScheme?: string[] | null | undefined;
|
8697
|
+
linearColorScheme?: string[] | null | undefined;
|
8607
8698
|
colorMapping?: Record<string, string> | null | undefined;
|
8608
8699
|
} | null | undefined;
|
8609
8700
|
tooltip?: {
|
@@ -8839,6 +8930,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8839
8930
|
} | null | undefined;
|
8840
8931
|
color?: {
|
8841
8932
|
colorScheme?: string[] | null | undefined;
|
8933
|
+
linearColorScheme?: string[] | null | undefined;
|
8842
8934
|
colorMapping?: Record<string, string> | null | undefined;
|
8843
8935
|
} | null | undefined;
|
8844
8936
|
tooltip?: {
|
@@ -8862,6 +8954,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8862
8954
|
} | null | undefined;
|
8863
8955
|
color?: {
|
8864
8956
|
colorScheme?: string[] | null | undefined;
|
8957
|
+
linearColorScheme?: string[] | null | undefined;
|
8865
8958
|
colorMapping?: Record<string, string> | null | undefined;
|
8866
8959
|
} | null | undefined;
|
8867
8960
|
tooltip?: {
|
@@ -8885,6 +8978,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8885
8978
|
} | null | undefined;
|
8886
8979
|
color?: {
|
8887
8980
|
colorScheme?: string[] | null | undefined;
|
8981
|
+
linearColorScheme?: string[] | null | undefined;
|
8888
8982
|
colorMapping?: Record<string, string> | null | undefined;
|
8889
8983
|
} | null | undefined;
|
8890
8984
|
tooltip?: {
|
@@ -8908,6 +9002,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8908
9002
|
} | null | undefined;
|
8909
9003
|
color?: {
|
8910
9004
|
colorScheme?: string[] | null | undefined;
|
9005
|
+
linearColorScheme?: string[] | null | undefined;
|
8911
9006
|
colorMapping?: Record<string, string> | null | undefined;
|
8912
9007
|
} | null | undefined;
|
8913
9008
|
tooltip?: {
|
@@ -8931,6 +9026,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8931
9026
|
} | null | undefined;
|
8932
9027
|
color?: {
|
8933
9028
|
colorScheme?: string[] | null | undefined;
|
9029
|
+
linearColorScheme?: string[] | null | undefined;
|
8934
9030
|
colorMapping?: Record<string, string> | null | undefined;
|
8935
9031
|
} | null | undefined;
|
8936
9032
|
tooltip?: {
|
@@ -8954,6 +9050,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8954
9050
|
} | null | undefined;
|
8955
9051
|
color?: {
|
8956
9052
|
colorScheme?: string[] | null | undefined;
|
9053
|
+
linearColorScheme?: string[] | null | undefined;
|
8957
9054
|
colorMapping?: Record<string, string> | null | undefined;
|
8958
9055
|
} | null | undefined;
|
8959
9056
|
tooltip?: {
|
@@ -8977,6 +9074,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8977
9074
|
} | null | undefined;
|
8978
9075
|
color?: {
|
8979
9076
|
colorScheme?: string[] | null | undefined;
|
9077
|
+
linearColorScheme?: string[] | null | undefined;
|
8980
9078
|
colorMapping?: Record<string, string> | null | undefined;
|
8981
9079
|
} | null | undefined;
|
8982
9080
|
tooltip?: {
|
@@ -9041,6 +9139,7 @@ export declare class Builder implements VSeedBuilder {
|
|
9041
9139
|
} | null | undefined;
|
9042
9140
|
color?: {
|
9043
9141
|
colorScheme?: string[] | null | undefined;
|
9142
|
+
linearColorScheme?: string[] | null | undefined;
|
9044
9143
|
colorMapping?: Record<string, string> | null | undefined;
|
9045
9144
|
} | null | undefined;
|
9046
9145
|
tooltip?: {
|
@@ -9150,6 +9249,7 @@ export declare class Builder implements VSeedBuilder {
|
|
9150
9249
|
} | null | undefined;
|
9151
9250
|
color?: {
|
9152
9251
|
colorScheme?: string[] | null | undefined;
|
9252
|
+
linearColorScheme?: string[] | null | undefined;
|
9153
9253
|
colorMapping?: Record<string, string> | null | undefined;
|
9154
9254
|
} | null | undefined;
|
9155
9255
|
tooltip?: {
|
@@ -9260,6 +9360,7 @@ export declare class Builder implements VSeedBuilder {
|
|
9260
9360
|
} | null | undefined;
|
9261
9361
|
color?: {
|
9262
9362
|
colorScheme?: string[] | null | undefined;
|
9363
|
+
linearColorScheme?: string[] | null | undefined;
|
9263
9364
|
colorMapping?: Record<string, string> | null | undefined;
|
9264
9365
|
} | null | undefined;
|
9265
9366
|
tooltip?: {
|
@@ -9370,6 +9471,7 @@ export declare class Builder implements VSeedBuilder {
|
|
9370
9471
|
} | null | undefined;
|
9371
9472
|
color?: {
|
9372
9473
|
colorScheme?: string[] | null | undefined;
|
9474
|
+
linearColorScheme?: string[] | null | undefined;
|
9373
9475
|
colorMapping?: Record<string, string> | null | undefined;
|
9374
9476
|
} | null | undefined;
|
9375
9477
|
tooltip?: {
|
@@ -9480,6 +9582,7 @@ export declare class Builder implements VSeedBuilder {
|
|
9480
9582
|
} | null | undefined;
|
9481
9583
|
color?: {
|
9482
9584
|
colorScheme?: string[] | null | undefined;
|
9585
|
+
linearColorScheme?: string[] | null | undefined;
|
9483
9586
|
colorMapping?: Record<string, string> | null | undefined;
|
9484
9587
|
} | null | undefined;
|
9485
9588
|
tooltip?: {
|
@@ -9590,6 +9693,7 @@ export declare class Builder implements VSeedBuilder {
|
|
9590
9693
|
} | null | undefined;
|
9591
9694
|
color?: {
|
9592
9695
|
colorScheme?: string[] | null | undefined;
|
9696
|
+
linearColorScheme?: string[] | null | undefined;
|
9593
9697
|
colorMapping?: Record<string, string> | null | undefined;
|
9594
9698
|
} | null | undefined;
|
9595
9699
|
tooltip?: {
|
@@ -9700,6 +9804,7 @@ export declare class Builder implements VSeedBuilder {
|
|
9700
9804
|
} | null | undefined;
|
9701
9805
|
color?: {
|
9702
9806
|
colorScheme?: string[] | null | undefined;
|
9807
|
+
linearColorScheme?: string[] | null | undefined;
|
9703
9808
|
colorMapping?: Record<string, string> | null | undefined;
|
9704
9809
|
} | null | undefined;
|
9705
9810
|
tooltip?: {
|
@@ -9810,6 +9915,7 @@ export declare class Builder implements VSeedBuilder {
|
|
9810
9915
|
} | null | undefined;
|
9811
9916
|
color?: {
|
9812
9917
|
colorScheme?: string[] | null | undefined;
|
9918
|
+
linearColorScheme?: string[] | null | undefined;
|
9813
9919
|
colorMapping?: Record<string, string> | null | undefined;
|
9814
9920
|
} | null | undefined;
|
9815
9921
|
tooltip?: {
|
@@ -9919,6 +10025,7 @@ export declare class Builder implements VSeedBuilder {
|
|
9919
10025
|
} | null | undefined;
|
9920
10026
|
color?: {
|
9921
10027
|
colorScheme?: string[] | null | undefined;
|
10028
|
+
linearColorScheme?: string[] | null | undefined;
|
9922
10029
|
colorMapping?: Record<string, string> | null | undefined;
|
9923
10030
|
} | null | undefined;
|
9924
10031
|
tooltip?: {
|
@@ -10028,6 +10135,7 @@ export declare class Builder implements VSeedBuilder {
|
|
10028
10135
|
} | null | undefined;
|
10029
10136
|
color?: {
|
10030
10137
|
colorScheme?: string[] | null | undefined;
|
10138
|
+
linearColorScheme?: string[] | null | undefined;
|
10031
10139
|
colorMapping?: Record<string, string> | null | undefined;
|
10032
10140
|
} | null | undefined;
|
10033
10141
|
tooltip?: {
|
@@ -10138,6 +10246,7 @@ export declare class Builder implements VSeedBuilder {
|
|
10138
10246
|
} | null | undefined;
|
10139
10247
|
color?: {
|
10140
10248
|
colorScheme?: string[] | null | undefined;
|
10249
|
+
linearColorScheme?: string[] | null | undefined;
|
10141
10250
|
colorMapping?: Record<string, string> | null | undefined;
|
10142
10251
|
} | null | undefined;
|
10143
10252
|
tooltip?: {
|
@@ -10373,6 +10482,7 @@ export declare class Builder implements VSeedBuilder {
|
|
10373
10482
|
} | null | undefined;
|
10374
10483
|
color?: {
|
10375
10484
|
colorScheme?: string[] | null | undefined;
|
10485
|
+
linearColorScheme?: string[] | null | undefined;
|
10376
10486
|
colorMapping?: Record<string, string> | null | undefined;
|
10377
10487
|
} | null | undefined;
|
10378
10488
|
tooltip?: {
|
@@ -10396,6 +10506,7 @@ export declare class Builder implements VSeedBuilder {
|
|
10396
10506
|
} | null | undefined;
|
10397
10507
|
color?: {
|
10398
10508
|
colorScheme?: string[] | null | undefined;
|
10509
|
+
linearColorScheme?: string[] | null | undefined;
|
10399
10510
|
colorMapping?: Record<string, string> | null | undefined;
|
10400
10511
|
} | null | undefined;
|
10401
10512
|
tooltip?: {
|
@@ -10419,6 +10530,7 @@ export declare class Builder implements VSeedBuilder {
|
|
10419
10530
|
} | null | undefined;
|
10420
10531
|
color?: {
|
10421
10532
|
colorScheme?: string[] | null | undefined;
|
10533
|
+
linearColorScheme?: string[] | null | undefined;
|
10422
10534
|
colorMapping?: Record<string, string> | null | undefined;
|
10423
10535
|
} | null | undefined;
|
10424
10536
|
tooltip?: {
|
@@ -10442,6 +10554,7 @@ export declare class Builder implements VSeedBuilder {
|
|
10442
10554
|
} | null | undefined;
|
10443
10555
|
color?: {
|
10444
10556
|
colorScheme?: string[] | null | undefined;
|
10557
|
+
linearColorScheme?: string[] | null | undefined;
|
10445
10558
|
colorMapping?: Record<string, string> | null | undefined;
|
10446
10559
|
} | null | undefined;
|
10447
10560
|
tooltip?: {
|
@@ -10465,6 +10578,7 @@ export declare class Builder implements VSeedBuilder {
|
|
10465
10578
|
} | null | undefined;
|
10466
10579
|
color?: {
|
10467
10580
|
colorScheme?: string[] | null | undefined;
|
10581
|
+
linearColorScheme?: string[] | null | undefined;
|
10468
10582
|
colorMapping?: Record<string, string> | null | undefined;
|
10469
10583
|
} | null | undefined;
|
10470
10584
|
tooltip?: {
|
@@ -10488,6 +10602,7 @@ export declare class Builder implements VSeedBuilder {
|
|
10488
10602
|
} | null | undefined;
|
10489
10603
|
color?: {
|
10490
10604
|
colorScheme?: string[] | null | undefined;
|
10605
|
+
linearColorScheme?: string[] | null | undefined;
|
10491
10606
|
colorMapping?: Record<string, string> | null | undefined;
|
10492
10607
|
} | null | undefined;
|
10493
10608
|
tooltip?: {
|
@@ -10511,6 +10626,7 @@ export declare class Builder implements VSeedBuilder {
|
|
10511
10626
|
} | null | undefined;
|
10512
10627
|
color?: {
|
10513
10628
|
colorScheme?: string[] | null | undefined;
|
10629
|
+
linearColorScheme?: string[] | null | undefined;
|
10514
10630
|
colorMapping?: Record<string, string> | null | undefined;
|
10515
10631
|
} | null | undefined;
|
10516
10632
|
tooltip?: {
|