@visactor/vseed 0.1.1 → 0.1.3
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 +120 -28
- package/dist/dataReshape/constant.d.ts +0 -8
- package/dist/dataReshape/dataReshapeByEncoding.d.ts +1 -0
- package/dist/dataReshape/foldMeasures.d.ts +7 -24
- package/dist/index.cjs +820 -506
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +802 -464
- 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/{init/autoDualMeasures.d.ts → encoding/line.d.ts} +1 -1
- package/dist/pipeline/advanced/chart/pipes/index.d.ts +1 -0
- package/dist/pipeline/advanced/chart/pipes/init/index.d.ts +0 -3
- package/dist/pipeline/advanced/chart/pipes/{init/autoMeasures.d.ts → measures/buildMeasures.d.ts} +1 -1
- package/dist/pipeline/advanced/chart/pipes/measures/buildMeasuresForDualAxis.d.ts +2 -0
- package/dist/pipeline/advanced/chart/pipes/measures/buildMeasuresForScatter.d.ts +2 -0
- package/dist/pipeline/advanced/chart/pipes/measures/index.d.ts +3 -0
- package/dist/pipeline/advanced/chart/pipes/measures/utils.d.ts +28 -0
- package/dist/pipeline/spec/chart/pipes/color/colorAdapter.d.ts +4 -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 +7 -0
- package/dist/pipeline/spec/chart/pipes/{tooltip/tooltipDisable.d.ts → color/linearColor.d.ts} +1 -1
- package/dist/pipeline/spec/chart/pipes/color/linearColorForDualAxis.d.ts +2 -0
- 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/chatType.d.ts +1 -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 +53 -14
- package/dist/types/chartType/area/zArea.d.ts +14 -0
- package/dist/types/chartType/areaPercent/zAreaPercent.d.ts +14 -0
- package/dist/types/chartType/bar/zBar.d.ts +14 -0
- package/dist/types/chartType/barParallel/zBarParallel.d.ts +14 -0
- package/dist/types/chartType/barPercent/zBarPercent.d.ts +14 -0
- package/dist/types/chartType/column/zColumn.d.ts +14 -0
- package/dist/types/chartType/columnParallel/zColumnParallel.d.ts +14 -0
- package/dist/types/chartType/columnPercent/zColumnPercent.d.ts +14 -0
- package/dist/types/chartType/donut/zDonut.d.ts +14 -0
- package/dist/types/chartType/dualAxis/zDualAxis.d.ts +66 -0
- package/dist/types/chartType/funnel/zFunnel.d.ts +15 -0
- package/dist/types/chartType/heatmap/zHeatmap.d.ts +15 -0
- package/dist/types/chartType/line/line.d.ts +0 -1
- package/dist/types/chartType/line/zLine.d.ts +14 -0
- package/dist/types/chartType/pie/zPie.d.ts +14 -0
- package/dist/types/chartType/pivotTable/zPivotTable.d.ts +13 -0
- package/dist/types/chartType/radar/zRadar.d.ts +14 -0
- package/dist/types/chartType/rose/zRose.d.ts +14 -0
- package/dist/types/chartType/roseParallel/zRoseParallel.d.ts +14 -0
- package/dist/types/chartType/scatter/zScatter.d.ts +66 -0
- package/dist/types/chartType/table/zTable.d.ts +13 -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/encoding/encoding.d.ts +0 -1
- package/dist/types/properties/encoding/index.d.ts +2 -2
- package/dist/types/properties/encoding/zEncoding.d.ts +0 -14
- package/dist/types/properties/measures/dualMeasures.d.ts +1 -0
- package/dist/types/properties/measures/measures.d.ts +19 -0
- package/dist/types/properties/measures/scatterMeasures.d.ts +1 -0
- package/dist/types/properties/measures/zDualMeasures.d.ts +104 -0
- package/dist/types/properties/measures/zMeasures.d.ts +39 -0
- package/dist/types/properties/measures/zScatterMeasures.d.ts +104 -0
- package/dist/types/properties/theme/customTheme.d.ts +36 -0
- package/dist/types/zVseed.d.ts +384 -0
- package/dist/umd/index.js +820 -490
- package/dist/umd/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/pipeline/advanced/chart/pipes/init/autoScatterMeasures.d.ts +0 -2
@@ -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;
|
@@ -95,6 +99,8 @@ export declare class Builder implements VSeedBuilder {
|
|
95
99
|
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
96
100
|
};
|
97
101
|
alias?: string | undefined;
|
102
|
+
encoding?: "primaryYAxis" | "secondaryYAxis" | "xAxis" | "yAxis" | "angle" | "radius" | "size" | "color" | "label" | "tooltip" | undefined;
|
103
|
+
parentId?: string | undefined;
|
98
104
|
})[];
|
99
105
|
encoding: {
|
100
106
|
x?: string[] | null | undefined;
|
@@ -110,20 +116,6 @@ export declare class Builder implements VSeedBuilder {
|
|
110
116
|
column?: string[] | null | undefined;
|
111
117
|
group?: string[] | null | undefined;
|
112
118
|
};
|
113
|
-
encodings: {
|
114
|
-
x?: string[] | null | undefined;
|
115
|
-
y?: string[] | null | undefined;
|
116
|
-
angle?: string[] | null | undefined;
|
117
|
-
radius?: string[] | null | undefined;
|
118
|
-
detail?: string[] | null | undefined;
|
119
|
-
color?: string[] | null | undefined;
|
120
|
-
size?: string[] | null | undefined;
|
121
|
-
tooltip?: string[] | null | undefined;
|
122
|
-
label?: string[] | null | undefined;
|
123
|
-
row?: string[] | null | undefined;
|
124
|
-
column?: string[] | null | undefined;
|
125
|
-
group?: string[] | null | undefined;
|
126
|
-
}[];
|
127
119
|
config: {
|
128
120
|
table?: {
|
129
121
|
backgroundColor?: string | null | undefined;
|
@@ -164,6 +156,7 @@ export declare class Builder implements VSeedBuilder {
|
|
164
156
|
} | null | undefined;
|
165
157
|
color?: {
|
166
158
|
colorScheme?: string[] | null | undefined;
|
159
|
+
linearColorScheme?: string[] | null | undefined;
|
167
160
|
colorMapping?: Record<string, string> | null | undefined;
|
168
161
|
} | null | undefined;
|
169
162
|
tooltip?: {
|
@@ -273,6 +266,7 @@ export declare class Builder implements VSeedBuilder {
|
|
273
266
|
} | null | undefined;
|
274
267
|
color?: {
|
275
268
|
colorScheme?: string[] | null | undefined;
|
269
|
+
linearColorScheme?: string[] | null | undefined;
|
276
270
|
colorMapping?: Record<string, string> | null | undefined;
|
277
271
|
} | null | undefined;
|
278
272
|
tooltip?: {
|
@@ -383,6 +377,7 @@ export declare class Builder implements VSeedBuilder {
|
|
383
377
|
} | null | undefined;
|
384
378
|
color?: {
|
385
379
|
colorScheme?: string[] | null | undefined;
|
380
|
+
linearColorScheme?: string[] | null | undefined;
|
386
381
|
colorMapping?: Record<string, string> | null | undefined;
|
387
382
|
} | null | undefined;
|
388
383
|
tooltip?: {
|
@@ -493,6 +488,7 @@ export declare class Builder implements VSeedBuilder {
|
|
493
488
|
} | null | undefined;
|
494
489
|
color?: {
|
495
490
|
colorScheme?: string[] | null | undefined;
|
491
|
+
linearColorScheme?: string[] | null | undefined;
|
496
492
|
colorMapping?: Record<string, string> | null | undefined;
|
497
493
|
} | null | undefined;
|
498
494
|
tooltip?: {
|
@@ -603,6 +599,7 @@ export declare class Builder implements VSeedBuilder {
|
|
603
599
|
} | null | undefined;
|
604
600
|
color?: {
|
605
601
|
colorScheme?: string[] | null | undefined;
|
602
|
+
linearColorScheme?: string[] | null | undefined;
|
606
603
|
colorMapping?: Record<string, string> | null | undefined;
|
607
604
|
} | null | undefined;
|
608
605
|
tooltip?: {
|
@@ -713,6 +710,7 @@ export declare class Builder implements VSeedBuilder {
|
|
713
710
|
} | null | undefined;
|
714
711
|
color?: {
|
715
712
|
colorScheme?: string[] | null | undefined;
|
713
|
+
linearColorScheme?: string[] | null | undefined;
|
716
714
|
colorMapping?: Record<string, string> | null | undefined;
|
717
715
|
} | null | undefined;
|
718
716
|
tooltip?: {
|
@@ -823,6 +821,7 @@ export declare class Builder implements VSeedBuilder {
|
|
823
821
|
} | null | undefined;
|
824
822
|
color?: {
|
825
823
|
colorScheme?: string[] | null | undefined;
|
824
|
+
linearColorScheme?: string[] | null | undefined;
|
826
825
|
colorMapping?: Record<string, string> | null | undefined;
|
827
826
|
} | null | undefined;
|
828
827
|
tooltip?: {
|
@@ -933,6 +932,7 @@ export declare class Builder implements VSeedBuilder {
|
|
933
932
|
} | null | undefined;
|
934
933
|
color?: {
|
935
934
|
colorScheme?: string[] | null | undefined;
|
935
|
+
linearColorScheme?: string[] | null | undefined;
|
936
936
|
colorMapping?: Record<string, string> | null | undefined;
|
937
937
|
} | null | undefined;
|
938
938
|
tooltip?: {
|
@@ -1042,6 +1042,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1042
1042
|
} | null | undefined;
|
1043
1043
|
color?: {
|
1044
1044
|
colorScheme?: string[] | null | undefined;
|
1045
|
+
linearColorScheme?: string[] | null | undefined;
|
1045
1046
|
colorMapping?: Record<string, string> | null | undefined;
|
1046
1047
|
} | null | undefined;
|
1047
1048
|
tooltip?: {
|
@@ -1151,6 +1152,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1151
1152
|
} | null | undefined;
|
1152
1153
|
color?: {
|
1153
1154
|
colorScheme?: string[] | null | undefined;
|
1155
|
+
linearColorScheme?: string[] | null | undefined;
|
1154
1156
|
colorMapping?: Record<string, string> | null | undefined;
|
1155
1157
|
} | null | undefined;
|
1156
1158
|
tooltip?: {
|
@@ -1261,6 +1263,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1261
1263
|
} | null | undefined;
|
1262
1264
|
color?: {
|
1263
1265
|
colorScheme?: string[] | null | undefined;
|
1266
|
+
linearColorScheme?: string[] | null | undefined;
|
1264
1267
|
colorMapping?: Record<string, string> | null | undefined;
|
1265
1268
|
} | null | undefined;
|
1266
1269
|
tooltip?: {
|
@@ -1496,6 +1499,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1496
1499
|
} | null | undefined;
|
1497
1500
|
color?: {
|
1498
1501
|
colorScheme?: string[] | null | undefined;
|
1502
|
+
linearColorScheme?: string[] | null | undefined;
|
1499
1503
|
colorMapping?: Record<string, string> | null | undefined;
|
1500
1504
|
} | null | undefined;
|
1501
1505
|
tooltip?: {
|
@@ -1519,6 +1523,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1519
1523
|
} | null | undefined;
|
1520
1524
|
color?: {
|
1521
1525
|
colorScheme?: string[] | null | undefined;
|
1526
|
+
linearColorScheme?: string[] | null | undefined;
|
1522
1527
|
colorMapping?: Record<string, string> | null | undefined;
|
1523
1528
|
} | null | undefined;
|
1524
1529
|
tooltip?: {
|
@@ -1542,6 +1547,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1542
1547
|
} | null | undefined;
|
1543
1548
|
color?: {
|
1544
1549
|
colorScheme?: string[] | null | undefined;
|
1550
|
+
linearColorScheme?: string[] | null | undefined;
|
1545
1551
|
colorMapping?: Record<string, string> | null | undefined;
|
1546
1552
|
} | null | undefined;
|
1547
1553
|
tooltip?: {
|
@@ -1565,6 +1571,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1565
1571
|
} | null | undefined;
|
1566
1572
|
color?: {
|
1567
1573
|
colorScheme?: string[] | null | undefined;
|
1574
|
+
linearColorScheme?: string[] | null | undefined;
|
1568
1575
|
colorMapping?: Record<string, string> | null | undefined;
|
1569
1576
|
} | null | undefined;
|
1570
1577
|
tooltip?: {
|
@@ -1588,6 +1595,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1588
1595
|
} | null | undefined;
|
1589
1596
|
color?: {
|
1590
1597
|
colorScheme?: string[] | null | undefined;
|
1598
|
+
linearColorScheme?: string[] | null | undefined;
|
1591
1599
|
colorMapping?: Record<string, string> | null | undefined;
|
1592
1600
|
} | null | undefined;
|
1593
1601
|
tooltip?: {
|
@@ -1611,6 +1619,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1611
1619
|
} | null | undefined;
|
1612
1620
|
color?: {
|
1613
1621
|
colorScheme?: string[] | null | undefined;
|
1622
|
+
linearColorScheme?: string[] | null | undefined;
|
1614
1623
|
colorMapping?: Record<string, string> | null | undefined;
|
1615
1624
|
} | null | undefined;
|
1616
1625
|
tooltip?: {
|
@@ -1634,6 +1643,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1634
1643
|
} | null | undefined;
|
1635
1644
|
color?: {
|
1636
1645
|
colorScheme?: string[] | null | undefined;
|
1646
|
+
linearColorScheme?: string[] | null | undefined;
|
1637
1647
|
colorMapping?: Record<string, string> | null | undefined;
|
1638
1648
|
} | null | undefined;
|
1639
1649
|
tooltip?: {
|
@@ -1924,6 +1934,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1924
1934
|
} | null | undefined;
|
1925
1935
|
color?: {
|
1926
1936
|
colorScheme?: string[] | null | undefined;
|
1937
|
+
linearColorScheme?: string[] | null | undefined;
|
1927
1938
|
colorMapping?: Record<string, string> | null | undefined;
|
1928
1939
|
} | null | undefined;
|
1929
1940
|
tooltip?: {
|
@@ -2033,6 +2044,7 @@ export declare class Builder implements VSeedBuilder {
|
|
2033
2044
|
} | null | undefined;
|
2034
2045
|
color?: {
|
2035
2046
|
colorScheme?: string[] | null | undefined;
|
2047
|
+
linearColorScheme?: string[] | null | undefined;
|
2036
2048
|
colorMapping?: Record<string, string> | null | undefined;
|
2037
2049
|
} | null | undefined;
|
2038
2050
|
tooltip?: {
|
@@ -2143,6 +2155,7 @@ export declare class Builder implements VSeedBuilder {
|
|
2143
2155
|
} | null | undefined;
|
2144
2156
|
color?: {
|
2145
2157
|
colorScheme?: string[] | null | undefined;
|
2158
|
+
linearColorScheme?: string[] | null | undefined;
|
2146
2159
|
colorMapping?: Record<string, string> | null | undefined;
|
2147
2160
|
} | null | undefined;
|
2148
2161
|
tooltip?: {
|
@@ -2253,6 +2266,7 @@ export declare class Builder implements VSeedBuilder {
|
|
2253
2266
|
} | null | undefined;
|
2254
2267
|
color?: {
|
2255
2268
|
colorScheme?: string[] | null | undefined;
|
2269
|
+
linearColorScheme?: string[] | null | undefined;
|
2256
2270
|
colorMapping?: Record<string, string> | null | undefined;
|
2257
2271
|
} | null | undefined;
|
2258
2272
|
tooltip?: {
|
@@ -2363,6 +2377,7 @@ export declare class Builder implements VSeedBuilder {
|
|
2363
2377
|
} | null | undefined;
|
2364
2378
|
color?: {
|
2365
2379
|
colorScheme?: string[] | null | undefined;
|
2380
|
+
linearColorScheme?: string[] | null | undefined;
|
2366
2381
|
colorMapping?: Record<string, string> | null | undefined;
|
2367
2382
|
} | null | undefined;
|
2368
2383
|
tooltip?: {
|
@@ -2473,6 +2488,7 @@ export declare class Builder implements VSeedBuilder {
|
|
2473
2488
|
} | null | undefined;
|
2474
2489
|
color?: {
|
2475
2490
|
colorScheme?: string[] | null | undefined;
|
2491
|
+
linearColorScheme?: string[] | null | undefined;
|
2476
2492
|
colorMapping?: Record<string, string> | null | undefined;
|
2477
2493
|
} | null | undefined;
|
2478
2494
|
tooltip?: {
|
@@ -2583,6 +2599,7 @@ export declare class Builder implements VSeedBuilder {
|
|
2583
2599
|
} | null | undefined;
|
2584
2600
|
color?: {
|
2585
2601
|
colorScheme?: string[] | null | undefined;
|
2602
|
+
linearColorScheme?: string[] | null | undefined;
|
2586
2603
|
colorMapping?: Record<string, string> | null | undefined;
|
2587
2604
|
} | null | undefined;
|
2588
2605
|
tooltip?: {
|
@@ -2693,6 +2710,7 @@ export declare class Builder implements VSeedBuilder {
|
|
2693
2710
|
} | null | undefined;
|
2694
2711
|
color?: {
|
2695
2712
|
colorScheme?: string[] | null | undefined;
|
2713
|
+
linearColorScheme?: string[] | null | undefined;
|
2696
2714
|
colorMapping?: Record<string, string> | null | undefined;
|
2697
2715
|
} | null | undefined;
|
2698
2716
|
tooltip?: {
|
@@ -2802,6 +2820,7 @@ export declare class Builder implements VSeedBuilder {
|
|
2802
2820
|
} | null | undefined;
|
2803
2821
|
color?: {
|
2804
2822
|
colorScheme?: string[] | null | undefined;
|
2823
|
+
linearColorScheme?: string[] | null | undefined;
|
2805
2824
|
colorMapping?: Record<string, string> | null | undefined;
|
2806
2825
|
} | null | undefined;
|
2807
2826
|
tooltip?: {
|
@@ -2911,6 +2930,7 @@ export declare class Builder implements VSeedBuilder {
|
|
2911
2930
|
} | null | undefined;
|
2912
2931
|
color?: {
|
2913
2932
|
colorScheme?: string[] | null | undefined;
|
2933
|
+
linearColorScheme?: string[] | null | undefined;
|
2914
2934
|
colorMapping?: Record<string, string> | null | undefined;
|
2915
2935
|
} | null | undefined;
|
2916
2936
|
tooltip?: {
|
@@ -3021,6 +3041,7 @@ export declare class Builder implements VSeedBuilder {
|
|
3021
3041
|
} | null | undefined;
|
3022
3042
|
color?: {
|
3023
3043
|
colorScheme?: string[] | null | undefined;
|
3044
|
+
linearColorScheme?: string[] | null | undefined;
|
3024
3045
|
colorMapping?: Record<string, string> | null | undefined;
|
3025
3046
|
} | null | undefined;
|
3026
3047
|
tooltip?: {
|
@@ -3256,6 +3277,7 @@ export declare class Builder implements VSeedBuilder {
|
|
3256
3277
|
} | null | undefined;
|
3257
3278
|
color?: {
|
3258
3279
|
colorScheme?: string[] | null | undefined;
|
3280
|
+
linearColorScheme?: string[] | null | undefined;
|
3259
3281
|
colorMapping?: Record<string, string> | null | undefined;
|
3260
3282
|
} | null | undefined;
|
3261
3283
|
tooltip?: {
|
@@ -3279,6 +3301,7 @@ export declare class Builder implements VSeedBuilder {
|
|
3279
3301
|
} | null | undefined;
|
3280
3302
|
color?: {
|
3281
3303
|
colorScheme?: string[] | null | undefined;
|
3304
|
+
linearColorScheme?: string[] | null | undefined;
|
3282
3305
|
colorMapping?: Record<string, string> | null | undefined;
|
3283
3306
|
} | null | undefined;
|
3284
3307
|
tooltip?: {
|
@@ -3302,6 +3325,7 @@ export declare class Builder implements VSeedBuilder {
|
|
3302
3325
|
} | null | undefined;
|
3303
3326
|
color?: {
|
3304
3327
|
colorScheme?: string[] | null | undefined;
|
3328
|
+
linearColorScheme?: string[] | null | undefined;
|
3305
3329
|
colorMapping?: Record<string, string> | null | undefined;
|
3306
3330
|
} | null | undefined;
|
3307
3331
|
tooltip?: {
|
@@ -3325,6 +3349,7 @@ export declare class Builder implements VSeedBuilder {
|
|
3325
3349
|
} | null | undefined;
|
3326
3350
|
color?: {
|
3327
3351
|
colorScheme?: string[] | null | undefined;
|
3352
|
+
linearColorScheme?: string[] | null | undefined;
|
3328
3353
|
colorMapping?: Record<string, string> | null | undefined;
|
3329
3354
|
} | null | undefined;
|
3330
3355
|
tooltip?: {
|
@@ -3348,6 +3373,7 @@ export declare class Builder implements VSeedBuilder {
|
|
3348
3373
|
} | null | undefined;
|
3349
3374
|
color?: {
|
3350
3375
|
colorScheme?: string[] | null | undefined;
|
3376
|
+
linearColorScheme?: string[] | null | undefined;
|
3351
3377
|
colorMapping?: Record<string, string> | null | undefined;
|
3352
3378
|
} | null | undefined;
|
3353
3379
|
tooltip?: {
|
@@ -3371,6 +3397,7 @@ export declare class Builder implements VSeedBuilder {
|
|
3371
3397
|
} | null | undefined;
|
3372
3398
|
color?: {
|
3373
3399
|
colorScheme?: string[] | null | undefined;
|
3400
|
+
linearColorScheme?: string[] | null | undefined;
|
3374
3401
|
colorMapping?: Record<string, string> | null | undefined;
|
3375
3402
|
} | null | undefined;
|
3376
3403
|
tooltip?: {
|
@@ -3394,6 +3421,7 @@ export declare class Builder implements VSeedBuilder {
|
|
3394
3421
|
} | null | undefined;
|
3395
3422
|
color?: {
|
3396
3423
|
colorScheme?: string[] | null | undefined;
|
3424
|
+
linearColorScheme?: string[] | null | undefined;
|
3397
3425
|
colorMapping?: Record<string, string> | null | undefined;
|
3398
3426
|
} | null | undefined;
|
3399
3427
|
tooltip?: {
|
@@ -3747,6 +3775,8 @@ export declare class Builder implements VSeedBuilder {
|
|
3747
3775
|
index: number;
|
3748
3776
|
foldInfo: {
|
3749
3777
|
foldMap: Record<string, string | undefined>;
|
3778
|
+
colorRange: number[];
|
3779
|
+
measureRange: number[];
|
3750
3780
|
measureId: string;
|
3751
3781
|
measureName: string;
|
3752
3782
|
measureValue: string;
|
@@ -3763,6 +3793,8 @@ export declare class Builder implements VSeedBuilder {
|
|
3763
3793
|
};
|
3764
3794
|
foldInfoList?: {
|
3765
3795
|
foldMap: Record<string, string | undefined>;
|
3796
|
+
colorRange: number[];
|
3797
|
+
measureRange: number[];
|
3766
3798
|
measureId: string;
|
3767
3799
|
measureName: string;
|
3768
3800
|
measureValue: string;
|
@@ -3789,6 +3821,8 @@ export declare class Builder implements VSeedBuilder {
|
|
3789
3821
|
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
3790
3822
|
};
|
3791
3823
|
alias?: string | undefined;
|
3824
|
+
encoding?: "primaryYAxis" | "secondaryYAxis" | "xAxis" | "yAxis" | "angle" | "radius" | "size" | "color" | "label" | "tooltip" | undefined;
|
3825
|
+
parentId?: string | undefined;
|
3792
3826
|
})[];
|
3793
3827
|
encoding: {
|
3794
3828
|
x?: string[] | null | undefined;
|
@@ -3804,20 +3838,6 @@ export declare class Builder implements VSeedBuilder {
|
|
3804
3838
|
column?: string[] | null | undefined;
|
3805
3839
|
group?: string[] | null | undefined;
|
3806
3840
|
};
|
3807
|
-
encodings: {
|
3808
|
-
x?: string[] | null | undefined;
|
3809
|
-
y?: string[] | null | undefined;
|
3810
|
-
angle?: string[] | null | undefined;
|
3811
|
-
radius?: string[] | null | undefined;
|
3812
|
-
detail?: string[] | null | undefined;
|
3813
|
-
color?: string[] | null | undefined;
|
3814
|
-
size?: string[] | null | undefined;
|
3815
|
-
tooltip?: string[] | null | undefined;
|
3816
|
-
label?: string[] | null | undefined;
|
3817
|
-
row?: string[] | null | undefined;
|
3818
|
-
column?: string[] | null | undefined;
|
3819
|
-
group?: string[] | null | undefined;
|
3820
|
-
}[];
|
3821
3841
|
config: {
|
3822
3842
|
table?: {
|
3823
3843
|
backgroundColor?: string | null | undefined;
|
@@ -3858,6 +3878,7 @@ export declare class Builder implements VSeedBuilder {
|
|
3858
3878
|
} | null | undefined;
|
3859
3879
|
color?: {
|
3860
3880
|
colorScheme?: string[] | null | undefined;
|
3881
|
+
linearColorScheme?: string[] | null | undefined;
|
3861
3882
|
colorMapping?: Record<string, string> | null | undefined;
|
3862
3883
|
} | null | undefined;
|
3863
3884
|
tooltip?: {
|
@@ -3967,6 +3988,7 @@ export declare class Builder implements VSeedBuilder {
|
|
3967
3988
|
} | null | undefined;
|
3968
3989
|
color?: {
|
3969
3990
|
colorScheme?: string[] | null | undefined;
|
3991
|
+
linearColorScheme?: string[] | null | undefined;
|
3970
3992
|
colorMapping?: Record<string, string> | null | undefined;
|
3971
3993
|
} | null | undefined;
|
3972
3994
|
tooltip?: {
|
@@ -4077,6 +4099,7 @@ export declare class Builder implements VSeedBuilder {
|
|
4077
4099
|
} | null | undefined;
|
4078
4100
|
color?: {
|
4079
4101
|
colorScheme?: string[] | null | undefined;
|
4102
|
+
linearColorScheme?: string[] | null | undefined;
|
4080
4103
|
colorMapping?: Record<string, string> | null | undefined;
|
4081
4104
|
} | null | undefined;
|
4082
4105
|
tooltip?: {
|
@@ -4187,6 +4210,7 @@ export declare class Builder implements VSeedBuilder {
|
|
4187
4210
|
} | null | undefined;
|
4188
4211
|
color?: {
|
4189
4212
|
colorScheme?: string[] | null | undefined;
|
4213
|
+
linearColorScheme?: string[] | null | undefined;
|
4190
4214
|
colorMapping?: Record<string, string> | null | undefined;
|
4191
4215
|
} | null | undefined;
|
4192
4216
|
tooltip?: {
|
@@ -4297,6 +4321,7 @@ export declare class Builder implements VSeedBuilder {
|
|
4297
4321
|
} | null | undefined;
|
4298
4322
|
color?: {
|
4299
4323
|
colorScheme?: string[] | null | undefined;
|
4324
|
+
linearColorScheme?: string[] | null | undefined;
|
4300
4325
|
colorMapping?: Record<string, string> | null | undefined;
|
4301
4326
|
} | null | undefined;
|
4302
4327
|
tooltip?: {
|
@@ -4407,6 +4432,7 @@ export declare class Builder implements VSeedBuilder {
|
|
4407
4432
|
} | null | undefined;
|
4408
4433
|
color?: {
|
4409
4434
|
colorScheme?: string[] | null | undefined;
|
4435
|
+
linearColorScheme?: string[] | null | undefined;
|
4410
4436
|
colorMapping?: Record<string, string> | null | undefined;
|
4411
4437
|
} | null | undefined;
|
4412
4438
|
tooltip?: {
|
@@ -4517,6 +4543,7 @@ export declare class Builder implements VSeedBuilder {
|
|
4517
4543
|
} | null | undefined;
|
4518
4544
|
color?: {
|
4519
4545
|
colorScheme?: string[] | null | undefined;
|
4546
|
+
linearColorScheme?: string[] | null | undefined;
|
4520
4547
|
colorMapping?: Record<string, string> | null | undefined;
|
4521
4548
|
} | null | undefined;
|
4522
4549
|
tooltip?: {
|
@@ -4627,6 +4654,7 @@ export declare class Builder implements VSeedBuilder {
|
|
4627
4654
|
} | null | undefined;
|
4628
4655
|
color?: {
|
4629
4656
|
colorScheme?: string[] | null | undefined;
|
4657
|
+
linearColorScheme?: string[] | null | undefined;
|
4630
4658
|
colorMapping?: Record<string, string> | null | undefined;
|
4631
4659
|
} | null | undefined;
|
4632
4660
|
tooltip?: {
|
@@ -4736,6 +4764,7 @@ export declare class Builder implements VSeedBuilder {
|
|
4736
4764
|
} | null | undefined;
|
4737
4765
|
color?: {
|
4738
4766
|
colorScheme?: string[] | null | undefined;
|
4767
|
+
linearColorScheme?: string[] | null | undefined;
|
4739
4768
|
colorMapping?: Record<string, string> | null | undefined;
|
4740
4769
|
} | null | undefined;
|
4741
4770
|
tooltip?: {
|
@@ -4845,6 +4874,7 @@ export declare class Builder implements VSeedBuilder {
|
|
4845
4874
|
} | null | undefined;
|
4846
4875
|
color?: {
|
4847
4876
|
colorScheme?: string[] | null | undefined;
|
4877
|
+
linearColorScheme?: string[] | null | undefined;
|
4848
4878
|
colorMapping?: Record<string, string> | null | undefined;
|
4849
4879
|
} | null | undefined;
|
4850
4880
|
tooltip?: {
|
@@ -4955,6 +4985,7 @@ export declare class Builder implements VSeedBuilder {
|
|
4955
4985
|
} | null | undefined;
|
4956
4986
|
color?: {
|
4957
4987
|
colorScheme?: string[] | null | undefined;
|
4988
|
+
linearColorScheme?: string[] | null | undefined;
|
4958
4989
|
colorMapping?: Record<string, string> | null | undefined;
|
4959
4990
|
} | null | undefined;
|
4960
4991
|
tooltip?: {
|
@@ -5190,6 +5221,7 @@ export declare class Builder implements VSeedBuilder {
|
|
5190
5221
|
} | null | undefined;
|
5191
5222
|
color?: {
|
5192
5223
|
colorScheme?: string[] | null | undefined;
|
5224
|
+
linearColorScheme?: string[] | null | undefined;
|
5193
5225
|
colorMapping?: Record<string, string> | null | undefined;
|
5194
5226
|
} | null | undefined;
|
5195
5227
|
tooltip?: {
|
@@ -5213,6 +5245,7 @@ export declare class Builder implements VSeedBuilder {
|
|
5213
5245
|
} | null | undefined;
|
5214
5246
|
color?: {
|
5215
5247
|
colorScheme?: string[] | null | undefined;
|
5248
|
+
linearColorScheme?: string[] | null | undefined;
|
5216
5249
|
colorMapping?: Record<string, string> | null | undefined;
|
5217
5250
|
} | null | undefined;
|
5218
5251
|
tooltip?: {
|
@@ -5236,6 +5269,7 @@ export declare class Builder implements VSeedBuilder {
|
|
5236
5269
|
} | null | undefined;
|
5237
5270
|
color?: {
|
5238
5271
|
colorScheme?: string[] | null | undefined;
|
5272
|
+
linearColorScheme?: string[] | null | undefined;
|
5239
5273
|
colorMapping?: Record<string, string> | null | undefined;
|
5240
5274
|
} | null | undefined;
|
5241
5275
|
tooltip?: {
|
@@ -5259,6 +5293,7 @@ export declare class Builder implements VSeedBuilder {
|
|
5259
5293
|
} | null | undefined;
|
5260
5294
|
color?: {
|
5261
5295
|
colorScheme?: string[] | null | undefined;
|
5296
|
+
linearColorScheme?: string[] | null | undefined;
|
5262
5297
|
colorMapping?: Record<string, string> | null | undefined;
|
5263
5298
|
} | null | undefined;
|
5264
5299
|
tooltip?: {
|
@@ -5282,6 +5317,7 @@ export declare class Builder implements VSeedBuilder {
|
|
5282
5317
|
} | null | undefined;
|
5283
5318
|
color?: {
|
5284
5319
|
colorScheme?: string[] | null | undefined;
|
5320
|
+
linearColorScheme?: string[] | null | undefined;
|
5285
5321
|
colorMapping?: Record<string, string> | null | undefined;
|
5286
5322
|
} | null | undefined;
|
5287
5323
|
tooltip?: {
|
@@ -5305,6 +5341,7 @@ export declare class Builder implements VSeedBuilder {
|
|
5305
5341
|
} | null | undefined;
|
5306
5342
|
color?: {
|
5307
5343
|
colorScheme?: string[] | null | undefined;
|
5344
|
+
linearColorScheme?: string[] | null | undefined;
|
5308
5345
|
colorMapping?: Record<string, string> | null | undefined;
|
5309
5346
|
} | null | undefined;
|
5310
5347
|
tooltip?: {
|
@@ -5328,6 +5365,7 @@ export declare class Builder implements VSeedBuilder {
|
|
5328
5365
|
} | null | undefined;
|
5329
5366
|
color?: {
|
5330
5367
|
colorScheme?: string[] | null | undefined;
|
5368
|
+
linearColorScheme?: string[] | null | undefined;
|
5331
5369
|
colorMapping?: Record<string, string> | null | undefined;
|
5332
5370
|
} | null | undefined;
|
5333
5371
|
tooltip?: {
|
@@ -5618,6 +5656,7 @@ export declare class Builder implements VSeedBuilder {
|
|
5618
5656
|
} | null | undefined;
|
5619
5657
|
color?: {
|
5620
5658
|
colorScheme?: string[] | null | undefined;
|
5659
|
+
linearColorScheme?: string[] | null | undefined;
|
5621
5660
|
colorMapping?: Record<string, string> | null | undefined;
|
5622
5661
|
} | null | undefined;
|
5623
5662
|
tooltip?: {
|
@@ -5727,6 +5766,7 @@ export declare class Builder implements VSeedBuilder {
|
|
5727
5766
|
} | null | undefined;
|
5728
5767
|
color?: {
|
5729
5768
|
colorScheme?: string[] | null | undefined;
|
5769
|
+
linearColorScheme?: string[] | null | undefined;
|
5730
5770
|
colorMapping?: Record<string, string> | null | undefined;
|
5731
5771
|
} | null | undefined;
|
5732
5772
|
tooltip?: {
|
@@ -5837,6 +5877,7 @@ export declare class Builder implements VSeedBuilder {
|
|
5837
5877
|
} | null | undefined;
|
5838
5878
|
color?: {
|
5839
5879
|
colorScheme?: string[] | null | undefined;
|
5880
|
+
linearColorScheme?: string[] | null | undefined;
|
5840
5881
|
colorMapping?: Record<string, string> | null | undefined;
|
5841
5882
|
} | null | undefined;
|
5842
5883
|
tooltip?: {
|
@@ -5947,6 +5988,7 @@ export declare class Builder implements VSeedBuilder {
|
|
5947
5988
|
} | null | undefined;
|
5948
5989
|
color?: {
|
5949
5990
|
colorScheme?: string[] | null | undefined;
|
5991
|
+
linearColorScheme?: string[] | null | undefined;
|
5950
5992
|
colorMapping?: Record<string, string> | null | undefined;
|
5951
5993
|
} | null | undefined;
|
5952
5994
|
tooltip?: {
|
@@ -6057,6 +6099,7 @@ export declare class Builder implements VSeedBuilder {
|
|
6057
6099
|
} | null | undefined;
|
6058
6100
|
color?: {
|
6059
6101
|
colorScheme?: string[] | null | undefined;
|
6102
|
+
linearColorScheme?: string[] | null | undefined;
|
6060
6103
|
colorMapping?: Record<string, string> | null | undefined;
|
6061
6104
|
} | null | undefined;
|
6062
6105
|
tooltip?: {
|
@@ -6167,6 +6210,7 @@ export declare class Builder implements VSeedBuilder {
|
|
6167
6210
|
} | null | undefined;
|
6168
6211
|
color?: {
|
6169
6212
|
colorScheme?: string[] | null | undefined;
|
6213
|
+
linearColorScheme?: string[] | null | undefined;
|
6170
6214
|
colorMapping?: Record<string, string> | null | undefined;
|
6171
6215
|
} | null | undefined;
|
6172
6216
|
tooltip?: {
|
@@ -6277,6 +6321,7 @@ export declare class Builder implements VSeedBuilder {
|
|
6277
6321
|
} | null | undefined;
|
6278
6322
|
color?: {
|
6279
6323
|
colorScheme?: string[] | null | undefined;
|
6324
|
+
linearColorScheme?: string[] | null | undefined;
|
6280
6325
|
colorMapping?: Record<string, string> | null | undefined;
|
6281
6326
|
} | null | undefined;
|
6282
6327
|
tooltip?: {
|
@@ -6387,6 +6432,7 @@ export declare class Builder implements VSeedBuilder {
|
|
6387
6432
|
} | null | undefined;
|
6388
6433
|
color?: {
|
6389
6434
|
colorScheme?: string[] | null | undefined;
|
6435
|
+
linearColorScheme?: string[] | null | undefined;
|
6390
6436
|
colorMapping?: Record<string, string> | null | undefined;
|
6391
6437
|
} | null | undefined;
|
6392
6438
|
tooltip?: {
|
@@ -6496,6 +6542,7 @@ export declare class Builder implements VSeedBuilder {
|
|
6496
6542
|
} | null | undefined;
|
6497
6543
|
color?: {
|
6498
6544
|
colorScheme?: string[] | null | undefined;
|
6545
|
+
linearColorScheme?: string[] | null | undefined;
|
6499
6546
|
colorMapping?: Record<string, string> | null | undefined;
|
6500
6547
|
} | null | undefined;
|
6501
6548
|
tooltip?: {
|
@@ -6605,6 +6652,7 @@ export declare class Builder implements VSeedBuilder {
|
|
6605
6652
|
} | null | undefined;
|
6606
6653
|
color?: {
|
6607
6654
|
colorScheme?: string[] | null | undefined;
|
6655
|
+
linearColorScheme?: string[] | null | undefined;
|
6608
6656
|
colorMapping?: Record<string, string> | null | undefined;
|
6609
6657
|
} | null | undefined;
|
6610
6658
|
tooltip?: {
|
@@ -6715,6 +6763,7 @@ export declare class Builder implements VSeedBuilder {
|
|
6715
6763
|
} | null | undefined;
|
6716
6764
|
color?: {
|
6717
6765
|
colorScheme?: string[] | null | undefined;
|
6766
|
+
linearColorScheme?: string[] | null | undefined;
|
6718
6767
|
colorMapping?: Record<string, string> | null | undefined;
|
6719
6768
|
} | null | undefined;
|
6720
6769
|
tooltip?: {
|
@@ -6950,6 +6999,7 @@ export declare class Builder implements VSeedBuilder {
|
|
6950
6999
|
} | null | undefined;
|
6951
7000
|
color?: {
|
6952
7001
|
colorScheme?: string[] | null | undefined;
|
7002
|
+
linearColorScheme?: string[] | null | undefined;
|
6953
7003
|
colorMapping?: Record<string, string> | null | undefined;
|
6954
7004
|
} | null | undefined;
|
6955
7005
|
tooltip?: {
|
@@ -6973,6 +7023,7 @@ export declare class Builder implements VSeedBuilder {
|
|
6973
7023
|
} | null | undefined;
|
6974
7024
|
color?: {
|
6975
7025
|
colorScheme?: string[] | null | undefined;
|
7026
|
+
linearColorScheme?: string[] | null | undefined;
|
6976
7027
|
colorMapping?: Record<string, string> | null | undefined;
|
6977
7028
|
} | null | undefined;
|
6978
7029
|
tooltip?: {
|
@@ -6996,6 +7047,7 @@ export declare class Builder implements VSeedBuilder {
|
|
6996
7047
|
} | null | undefined;
|
6997
7048
|
color?: {
|
6998
7049
|
colorScheme?: string[] | null | undefined;
|
7050
|
+
linearColorScheme?: string[] | null | undefined;
|
6999
7051
|
colorMapping?: Record<string, string> | null | undefined;
|
7000
7052
|
} | null | undefined;
|
7001
7053
|
tooltip?: {
|
@@ -7019,6 +7071,7 @@ export declare class Builder implements VSeedBuilder {
|
|
7019
7071
|
} | null | undefined;
|
7020
7072
|
color?: {
|
7021
7073
|
colorScheme?: string[] | null | undefined;
|
7074
|
+
linearColorScheme?: string[] | null | undefined;
|
7022
7075
|
colorMapping?: Record<string, string> | null | undefined;
|
7023
7076
|
} | null | undefined;
|
7024
7077
|
tooltip?: {
|
@@ -7042,6 +7095,7 @@ export declare class Builder implements VSeedBuilder {
|
|
7042
7095
|
} | null | undefined;
|
7043
7096
|
color?: {
|
7044
7097
|
colorScheme?: string[] | null | undefined;
|
7098
|
+
linearColorScheme?: string[] | null | undefined;
|
7045
7099
|
colorMapping?: Record<string, string> | null | undefined;
|
7046
7100
|
} | null | undefined;
|
7047
7101
|
tooltip?: {
|
@@ -7065,6 +7119,7 @@ export declare class Builder implements VSeedBuilder {
|
|
7065
7119
|
} | null | undefined;
|
7066
7120
|
color?: {
|
7067
7121
|
colorScheme?: string[] | null | undefined;
|
7122
|
+
linearColorScheme?: string[] | null | undefined;
|
7068
7123
|
colorMapping?: Record<string, string> | null | undefined;
|
7069
7124
|
} | null | undefined;
|
7070
7125
|
tooltip?: {
|
@@ -7088,6 +7143,7 @@ export declare class Builder implements VSeedBuilder {
|
|
7088
7143
|
} | null | undefined;
|
7089
7144
|
color?: {
|
7090
7145
|
colorScheme?: string[] | null | undefined;
|
7146
|
+
linearColorScheme?: string[] | null | undefined;
|
7091
7147
|
colorMapping?: Record<string, string> | null | undefined;
|
7092
7148
|
} | null | undefined;
|
7093
7149
|
tooltip?: {
|
@@ -7507,6 +7563,7 @@ export declare class Builder implements VSeedBuilder {
|
|
7507
7563
|
} | null | undefined;
|
7508
7564
|
color?: {
|
7509
7565
|
colorScheme?: string[] | null | undefined;
|
7566
|
+
linearColorScheme?: string[] | null | undefined;
|
7510
7567
|
colorMapping?: Record<string, string> | null | undefined;
|
7511
7568
|
} | null | undefined;
|
7512
7569
|
tooltip?: {
|
@@ -7616,6 +7673,7 @@ export declare class Builder implements VSeedBuilder {
|
|
7616
7673
|
} | null | undefined;
|
7617
7674
|
color?: {
|
7618
7675
|
colorScheme?: string[] | null | undefined;
|
7676
|
+
linearColorScheme?: string[] | null | undefined;
|
7619
7677
|
colorMapping?: Record<string, string> | null | undefined;
|
7620
7678
|
} | null | undefined;
|
7621
7679
|
tooltip?: {
|
@@ -7726,6 +7784,7 @@ export declare class Builder implements VSeedBuilder {
|
|
7726
7784
|
} | null | undefined;
|
7727
7785
|
color?: {
|
7728
7786
|
colorScheme?: string[] | null | undefined;
|
7787
|
+
linearColorScheme?: string[] | null | undefined;
|
7729
7788
|
colorMapping?: Record<string, string> | null | undefined;
|
7730
7789
|
} | null | undefined;
|
7731
7790
|
tooltip?: {
|
@@ -7836,6 +7895,7 @@ export declare class Builder implements VSeedBuilder {
|
|
7836
7895
|
} | null | undefined;
|
7837
7896
|
color?: {
|
7838
7897
|
colorScheme?: string[] | null | undefined;
|
7898
|
+
linearColorScheme?: string[] | null | undefined;
|
7839
7899
|
colorMapping?: Record<string, string> | null | undefined;
|
7840
7900
|
} | null | undefined;
|
7841
7901
|
tooltip?: {
|
@@ -7946,6 +8006,7 @@ export declare class Builder implements VSeedBuilder {
|
|
7946
8006
|
} | null | undefined;
|
7947
8007
|
color?: {
|
7948
8008
|
colorScheme?: string[] | null | undefined;
|
8009
|
+
linearColorScheme?: string[] | null | undefined;
|
7949
8010
|
colorMapping?: Record<string, string> | null | undefined;
|
7950
8011
|
} | null | undefined;
|
7951
8012
|
tooltip?: {
|
@@ -8056,6 +8117,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8056
8117
|
} | null | undefined;
|
8057
8118
|
color?: {
|
8058
8119
|
colorScheme?: string[] | null | undefined;
|
8120
|
+
linearColorScheme?: string[] | null | undefined;
|
8059
8121
|
colorMapping?: Record<string, string> | null | undefined;
|
8060
8122
|
} | null | undefined;
|
8061
8123
|
tooltip?: {
|
@@ -8166,6 +8228,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8166
8228
|
} | null | undefined;
|
8167
8229
|
color?: {
|
8168
8230
|
colorScheme?: string[] | null | undefined;
|
8231
|
+
linearColorScheme?: string[] | null | undefined;
|
8169
8232
|
colorMapping?: Record<string, string> | null | undefined;
|
8170
8233
|
} | null | undefined;
|
8171
8234
|
tooltip?: {
|
@@ -8276,6 +8339,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8276
8339
|
} | null | undefined;
|
8277
8340
|
color?: {
|
8278
8341
|
colorScheme?: string[] | null | undefined;
|
8342
|
+
linearColorScheme?: string[] | null | undefined;
|
8279
8343
|
colorMapping?: Record<string, string> | null | undefined;
|
8280
8344
|
} | null | undefined;
|
8281
8345
|
tooltip?: {
|
@@ -8385,6 +8449,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8385
8449
|
} | null | undefined;
|
8386
8450
|
color?: {
|
8387
8451
|
colorScheme?: string[] | null | undefined;
|
8452
|
+
linearColorScheme?: string[] | null | undefined;
|
8388
8453
|
colorMapping?: Record<string, string> | null | undefined;
|
8389
8454
|
} | null | undefined;
|
8390
8455
|
tooltip?: {
|
@@ -8494,6 +8559,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8494
8559
|
} | null | undefined;
|
8495
8560
|
color?: {
|
8496
8561
|
colorScheme?: string[] | null | undefined;
|
8562
|
+
linearColorScheme?: string[] | null | undefined;
|
8497
8563
|
colorMapping?: Record<string, string> | null | undefined;
|
8498
8564
|
} | null | undefined;
|
8499
8565
|
tooltip?: {
|
@@ -8604,6 +8670,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8604
8670
|
} | null | undefined;
|
8605
8671
|
color?: {
|
8606
8672
|
colorScheme?: string[] | null | undefined;
|
8673
|
+
linearColorScheme?: string[] | null | undefined;
|
8607
8674
|
colorMapping?: Record<string, string> | null | undefined;
|
8608
8675
|
} | null | undefined;
|
8609
8676
|
tooltip?: {
|
@@ -8839,6 +8906,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8839
8906
|
} | null | undefined;
|
8840
8907
|
color?: {
|
8841
8908
|
colorScheme?: string[] | null | undefined;
|
8909
|
+
linearColorScheme?: string[] | null | undefined;
|
8842
8910
|
colorMapping?: Record<string, string> | null | undefined;
|
8843
8911
|
} | null | undefined;
|
8844
8912
|
tooltip?: {
|
@@ -8862,6 +8930,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8862
8930
|
} | null | undefined;
|
8863
8931
|
color?: {
|
8864
8932
|
colorScheme?: string[] | null | undefined;
|
8933
|
+
linearColorScheme?: string[] | null | undefined;
|
8865
8934
|
colorMapping?: Record<string, string> | null | undefined;
|
8866
8935
|
} | null | undefined;
|
8867
8936
|
tooltip?: {
|
@@ -8885,6 +8954,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8885
8954
|
} | null | undefined;
|
8886
8955
|
color?: {
|
8887
8956
|
colorScheme?: string[] | null | undefined;
|
8957
|
+
linearColorScheme?: string[] | null | undefined;
|
8888
8958
|
colorMapping?: Record<string, string> | null | undefined;
|
8889
8959
|
} | null | undefined;
|
8890
8960
|
tooltip?: {
|
@@ -8908,6 +8978,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8908
8978
|
} | null | undefined;
|
8909
8979
|
color?: {
|
8910
8980
|
colorScheme?: string[] | null | undefined;
|
8981
|
+
linearColorScheme?: string[] | null | undefined;
|
8911
8982
|
colorMapping?: Record<string, string> | null | undefined;
|
8912
8983
|
} | null | undefined;
|
8913
8984
|
tooltip?: {
|
@@ -8931,6 +9002,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8931
9002
|
} | null | undefined;
|
8932
9003
|
color?: {
|
8933
9004
|
colorScheme?: string[] | null | undefined;
|
9005
|
+
linearColorScheme?: string[] | null | undefined;
|
8934
9006
|
colorMapping?: Record<string, string> | null | undefined;
|
8935
9007
|
} | null | undefined;
|
8936
9008
|
tooltip?: {
|
@@ -8954,6 +9026,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8954
9026
|
} | null | undefined;
|
8955
9027
|
color?: {
|
8956
9028
|
colorScheme?: string[] | null | undefined;
|
9029
|
+
linearColorScheme?: string[] | null | undefined;
|
8957
9030
|
colorMapping?: Record<string, string> | null | undefined;
|
8958
9031
|
} | null | undefined;
|
8959
9032
|
tooltip?: {
|
@@ -8977,6 +9050,7 @@ export declare class Builder implements VSeedBuilder {
|
|
8977
9050
|
} | null | undefined;
|
8978
9051
|
color?: {
|
8979
9052
|
colorScheme?: string[] | null | undefined;
|
9053
|
+
linearColorScheme?: string[] | null | undefined;
|
8980
9054
|
colorMapping?: Record<string, string> | null | undefined;
|
8981
9055
|
} | null | undefined;
|
8982
9056
|
tooltip?: {
|
@@ -9041,6 +9115,7 @@ export declare class Builder implements VSeedBuilder {
|
|
9041
9115
|
} | null | undefined;
|
9042
9116
|
color?: {
|
9043
9117
|
colorScheme?: string[] | null | undefined;
|
9118
|
+
linearColorScheme?: string[] | null | undefined;
|
9044
9119
|
colorMapping?: Record<string, string> | null | undefined;
|
9045
9120
|
} | null | undefined;
|
9046
9121
|
tooltip?: {
|
@@ -9150,6 +9225,7 @@ export declare class Builder implements VSeedBuilder {
|
|
9150
9225
|
} | null | undefined;
|
9151
9226
|
color?: {
|
9152
9227
|
colorScheme?: string[] | null | undefined;
|
9228
|
+
linearColorScheme?: string[] | null | undefined;
|
9153
9229
|
colorMapping?: Record<string, string> | null | undefined;
|
9154
9230
|
} | null | undefined;
|
9155
9231
|
tooltip?: {
|
@@ -9260,6 +9336,7 @@ export declare class Builder implements VSeedBuilder {
|
|
9260
9336
|
} | null | undefined;
|
9261
9337
|
color?: {
|
9262
9338
|
colorScheme?: string[] | null | undefined;
|
9339
|
+
linearColorScheme?: string[] | null | undefined;
|
9263
9340
|
colorMapping?: Record<string, string> | null | undefined;
|
9264
9341
|
} | null | undefined;
|
9265
9342
|
tooltip?: {
|
@@ -9370,6 +9447,7 @@ export declare class Builder implements VSeedBuilder {
|
|
9370
9447
|
} | null | undefined;
|
9371
9448
|
color?: {
|
9372
9449
|
colorScheme?: string[] | null | undefined;
|
9450
|
+
linearColorScheme?: string[] | null | undefined;
|
9373
9451
|
colorMapping?: Record<string, string> | null | undefined;
|
9374
9452
|
} | null | undefined;
|
9375
9453
|
tooltip?: {
|
@@ -9480,6 +9558,7 @@ export declare class Builder implements VSeedBuilder {
|
|
9480
9558
|
} | null | undefined;
|
9481
9559
|
color?: {
|
9482
9560
|
colorScheme?: string[] | null | undefined;
|
9561
|
+
linearColorScheme?: string[] | null | undefined;
|
9483
9562
|
colorMapping?: Record<string, string> | null | undefined;
|
9484
9563
|
} | null | undefined;
|
9485
9564
|
tooltip?: {
|
@@ -9590,6 +9669,7 @@ export declare class Builder implements VSeedBuilder {
|
|
9590
9669
|
} | null | undefined;
|
9591
9670
|
color?: {
|
9592
9671
|
colorScheme?: string[] | null | undefined;
|
9672
|
+
linearColorScheme?: string[] | null | undefined;
|
9593
9673
|
colorMapping?: Record<string, string> | null | undefined;
|
9594
9674
|
} | null | undefined;
|
9595
9675
|
tooltip?: {
|
@@ -9700,6 +9780,7 @@ export declare class Builder implements VSeedBuilder {
|
|
9700
9780
|
} | null | undefined;
|
9701
9781
|
color?: {
|
9702
9782
|
colorScheme?: string[] | null | undefined;
|
9783
|
+
linearColorScheme?: string[] | null | undefined;
|
9703
9784
|
colorMapping?: Record<string, string> | null | undefined;
|
9704
9785
|
} | null | undefined;
|
9705
9786
|
tooltip?: {
|
@@ -9810,6 +9891,7 @@ export declare class Builder implements VSeedBuilder {
|
|
9810
9891
|
} | null | undefined;
|
9811
9892
|
color?: {
|
9812
9893
|
colorScheme?: string[] | null | undefined;
|
9894
|
+
linearColorScheme?: string[] | null | undefined;
|
9813
9895
|
colorMapping?: Record<string, string> | null | undefined;
|
9814
9896
|
} | null | undefined;
|
9815
9897
|
tooltip?: {
|
@@ -9919,6 +10001,7 @@ export declare class Builder implements VSeedBuilder {
|
|
9919
10001
|
} | null | undefined;
|
9920
10002
|
color?: {
|
9921
10003
|
colorScheme?: string[] | null | undefined;
|
10004
|
+
linearColorScheme?: string[] | null | undefined;
|
9922
10005
|
colorMapping?: Record<string, string> | null | undefined;
|
9923
10006
|
} | null | undefined;
|
9924
10007
|
tooltip?: {
|
@@ -10028,6 +10111,7 @@ export declare class Builder implements VSeedBuilder {
|
|
10028
10111
|
} | null | undefined;
|
10029
10112
|
color?: {
|
10030
10113
|
colorScheme?: string[] | null | undefined;
|
10114
|
+
linearColorScheme?: string[] | null | undefined;
|
10031
10115
|
colorMapping?: Record<string, string> | null | undefined;
|
10032
10116
|
} | null | undefined;
|
10033
10117
|
tooltip?: {
|
@@ -10138,6 +10222,7 @@ export declare class Builder implements VSeedBuilder {
|
|
10138
10222
|
} | null | undefined;
|
10139
10223
|
color?: {
|
10140
10224
|
colorScheme?: string[] | null | undefined;
|
10225
|
+
linearColorScheme?: string[] | null | undefined;
|
10141
10226
|
colorMapping?: Record<string, string> | null | undefined;
|
10142
10227
|
} | null | undefined;
|
10143
10228
|
tooltip?: {
|
@@ -10373,6 +10458,7 @@ export declare class Builder implements VSeedBuilder {
|
|
10373
10458
|
} | null | undefined;
|
10374
10459
|
color?: {
|
10375
10460
|
colorScheme?: string[] | null | undefined;
|
10461
|
+
linearColorScheme?: string[] | null | undefined;
|
10376
10462
|
colorMapping?: Record<string, string> | null | undefined;
|
10377
10463
|
} | null | undefined;
|
10378
10464
|
tooltip?: {
|
@@ -10396,6 +10482,7 @@ export declare class Builder implements VSeedBuilder {
|
|
10396
10482
|
} | null | undefined;
|
10397
10483
|
color?: {
|
10398
10484
|
colorScheme?: string[] | null | undefined;
|
10485
|
+
linearColorScheme?: string[] | null | undefined;
|
10399
10486
|
colorMapping?: Record<string, string> | null | undefined;
|
10400
10487
|
} | null | undefined;
|
10401
10488
|
tooltip?: {
|
@@ -10419,6 +10506,7 @@ export declare class Builder implements VSeedBuilder {
|
|
10419
10506
|
} | null | undefined;
|
10420
10507
|
color?: {
|
10421
10508
|
colorScheme?: string[] | null | undefined;
|
10509
|
+
linearColorScheme?: string[] | null | undefined;
|
10422
10510
|
colorMapping?: Record<string, string> | null | undefined;
|
10423
10511
|
} | null | undefined;
|
10424
10512
|
tooltip?: {
|
@@ -10442,6 +10530,7 @@ export declare class Builder implements VSeedBuilder {
|
|
10442
10530
|
} | null | undefined;
|
10443
10531
|
color?: {
|
10444
10532
|
colorScheme?: string[] | null | undefined;
|
10533
|
+
linearColorScheme?: string[] | null | undefined;
|
10445
10534
|
colorMapping?: Record<string, string> | null | undefined;
|
10446
10535
|
} | null | undefined;
|
10447
10536
|
tooltip?: {
|
@@ -10465,6 +10554,7 @@ export declare class Builder implements VSeedBuilder {
|
|
10465
10554
|
} | null | undefined;
|
10466
10555
|
color?: {
|
10467
10556
|
colorScheme?: string[] | null | undefined;
|
10557
|
+
linearColorScheme?: string[] | null | undefined;
|
10468
10558
|
colorMapping?: Record<string, string> | null | undefined;
|
10469
10559
|
} | null | undefined;
|
10470
10560
|
tooltip?: {
|
@@ -10488,6 +10578,7 @@ export declare class Builder implements VSeedBuilder {
|
|
10488
10578
|
} | null | undefined;
|
10489
10579
|
color?: {
|
10490
10580
|
colorScheme?: string[] | null | undefined;
|
10581
|
+
linearColorScheme?: string[] | null | undefined;
|
10491
10582
|
colorMapping?: Record<string, string> | null | undefined;
|
10492
10583
|
} | null | undefined;
|
10493
10584
|
tooltip?: {
|
@@ -10511,6 +10602,7 @@ export declare class Builder implements VSeedBuilder {
|
|
10511
10602
|
} | null | undefined;
|
10512
10603
|
color?: {
|
10513
10604
|
colorScheme?: string[] | null | undefined;
|
10605
|
+
linearColorScheme?: string[] | null | undefined;
|
10514
10606
|
colorMapping?: Record<string, string> | null | undefined;
|
10515
10607
|
} | null | undefined;
|
10516
10608
|
tooltip?: {
|