@visactor/vseed 0.0.23 → 0.0.24
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 +1125 -757
- package/dist/builder/register/chartType.d.ts +2 -0
- package/dist/dataReshape/dataReshapeFor2D1M0Name.d.ts +19 -0
- package/dist/dataReshape/index.d.ts +1 -0
- package/dist/dataReshape/unfoldZeroDimensions.d.ts +10 -0
- package/dist/index.cjs +586 -117
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +541 -105
- package/dist/index.js.map +1 -1
- package/dist/pipeline/advanced/chart/pipeline/heatmap.d.ts +2 -0
- package/dist/pipeline/advanced/chart/pipeline/index.d.ts +2 -0
- package/dist/pipeline/advanced/chart/pipeline/radar.d.ts +2 -0
- package/dist/pipeline/advanced/chart/pipes/config/config.d.ts +2 -0
- package/dist/pipeline/advanced/chart/pipes/encoding/encodingAR.d.ts +2 -0
- package/dist/pipeline/advanced/chart/pipes/encoding/index.d.ts +1 -0
- package/dist/pipeline/advanced/chart/pipes/reshape/index.d.ts +3 -1
- package/dist/pipeline/advanced/chart/pipes/reshape/pivotReshapeTo2D1M0Name.d.ts +8 -0
- package/dist/pipeline/advanced/chart/pipes/reshape/reshapeTo2D1M0Name.d.ts +8 -0
- package/dist/pipeline/spec/chart/pipeline/heatmap.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipeline/index.d.ts +3 -1
- package/dist/pipeline/spec/chart/pipeline/radar.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipes/axes/index.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipes/axes/radarAngle.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipes/axes/radarRadius.d.ts +2 -0
- package/dist/pipeline/spec/chart/pipes/init/index.d.ts +3 -2
- package/dist/pipeline/spec/chart/pipes/{axes/a.d.ts → init/radar.d.ts} +1 -1
- package/dist/types/advancedVSeed.d.ts +455 -185
- package/dist/types/chartType/heatmap/heatmap.d.ts +207 -0
- package/dist/types/chartType/heatmap/index.d.ts +1 -0
- package/dist/types/chartType/index.d.ts +4 -2
- package/dist/types/chartType/radar/index.d.ts +1 -0
- package/dist/types/chartType/radar/radar.d.ts +207 -0
- package/dist/types/properties/chartType/chartType.d.ts +10 -6
- package/dist/types/properties/config/config.d.ts +519 -238
- package/dist/types/properties/theme/customTheme.d.ts +496 -228
- package/dist/types/vseed.d.ts +1018 -784
- package/dist/umd/index.js +564 -117
- package/dist/umd/index.js.map +1 -1
- package/package.json +1 -1
@@ -7,7 +7,7 @@ export declare class Builder implements VSeedBuilder {
|
|
7
7
|
build: () => Spec;
|
8
8
|
buildSpec: (advanced: AdvancedVSeed) => Spec;
|
9
9
|
buildAdvanced: () => {
|
10
|
-
chartType: "table" | "pivotTable" | "line" | "column" | "columnPercent" | "columnParallel" | "bar" | "barPercent" | "barParallel" | "area" | "areaPercent" | "areaRange" | "rose" | "roseParallel" | "pie" | "donut" | "
|
10
|
+
chartType: "table" | "pivotTable" | "line" | "column" | "columnPercent" | "columnParallel" | "bar" | "barPercent" | "barParallel" | "area" | "areaPercent" | "areaRange" | "scatter" | "dualAxis" | "rose" | "roseParallel" | "pie" | "donut" | "radar" | "heatmap" | "funnel";
|
11
11
|
dataset: Record<string | number, any>[];
|
12
12
|
datasetReshapeInfo: {
|
13
13
|
id: string;
|
@@ -1177,7 +1177,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1177
1177
|
labelBackgroundColor?: string | undefined;
|
1178
1178
|
} | undefined;
|
1179
1179
|
} | undefined;
|
1180
|
-
|
1180
|
+
dualAxis?: {
|
1181
1181
|
backgroundColor?: string | undefined;
|
1182
1182
|
label?: {
|
1183
1183
|
enable?: boolean | undefined;
|
@@ -1200,7 +1200,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1200
1200
|
labelFontWeight?: string | number | undefined;
|
1201
1201
|
} | undefined;
|
1202
1202
|
} | undefined;
|
1203
|
-
|
1203
|
+
scatter?: {
|
1204
1204
|
backgroundColor?: string | undefined;
|
1205
1205
|
label?: {
|
1206
1206
|
enable?: boolean | undefined;
|
@@ -1222,8 +1222,95 @@ export declare class Builder implements VSeedBuilder {
|
|
1222
1222
|
labelFontColor?: string | undefined;
|
1223
1223
|
labelFontWeight?: string | number | undefined;
|
1224
1224
|
} | undefined;
|
1225
|
+
xAxis?: {
|
1226
|
+
visible?: boolean | undefined;
|
1227
|
+
min?: number | undefined;
|
1228
|
+
max?: number | undefined;
|
1229
|
+
nice?: boolean | undefined;
|
1230
|
+
zero?: boolean | undefined;
|
1231
|
+
log?: boolean | undefined;
|
1232
|
+
logBase?: number | undefined;
|
1233
|
+
inverse?: boolean | undefined;
|
1234
|
+
label?: {
|
1235
|
+
visible?: boolean | undefined;
|
1236
|
+
labelColor?: string | undefined;
|
1237
|
+
labelFontSize?: number | undefined;
|
1238
|
+
labelFontWeight?: number | undefined;
|
1239
|
+
labelAngle?: number | undefined;
|
1240
|
+
} | undefined;
|
1241
|
+
line?: {
|
1242
|
+
visible?: boolean | undefined;
|
1243
|
+
lineColor?: string | undefined;
|
1244
|
+
lineWidth?: number | undefined;
|
1245
|
+
} | undefined;
|
1246
|
+
tick?: {
|
1247
|
+
visible?: boolean | undefined;
|
1248
|
+
tickInside?: boolean | undefined;
|
1249
|
+
tickColor?: string | undefined;
|
1250
|
+
tickSize?: number | undefined;
|
1251
|
+
} | undefined;
|
1252
|
+
title?: {
|
1253
|
+
visible?: boolean | undefined;
|
1254
|
+
titleText?: string | undefined;
|
1255
|
+
titleColor?: string | undefined;
|
1256
|
+
titleFontSize?: number | undefined;
|
1257
|
+
titleFontWeight?: number | undefined;
|
1258
|
+
} | undefined;
|
1259
|
+
grid?: {
|
1260
|
+
visible?: boolean | undefined;
|
1261
|
+
gridColor?: string | undefined;
|
1262
|
+
gridWidth?: number | undefined;
|
1263
|
+
} | undefined;
|
1264
|
+
} | undefined;
|
1265
|
+
yAxis?: {
|
1266
|
+
visible?: boolean | undefined;
|
1267
|
+
min?: number | undefined;
|
1268
|
+
max?: number | undefined;
|
1269
|
+
nice?: boolean | undefined;
|
1270
|
+
zero?: boolean | undefined;
|
1271
|
+
log?: boolean | undefined;
|
1272
|
+
logBase?: number | undefined;
|
1273
|
+
inverse?: boolean | undefined;
|
1274
|
+
label?: {
|
1275
|
+
visible?: boolean | undefined;
|
1276
|
+
labelColor?: string | undefined;
|
1277
|
+
labelFontSize?: number | undefined;
|
1278
|
+
labelFontWeight?: number | undefined;
|
1279
|
+
labelAngle?: number | undefined;
|
1280
|
+
} | undefined;
|
1281
|
+
line?: {
|
1282
|
+
visible?: boolean | undefined;
|
1283
|
+
lineColor?: string | undefined;
|
1284
|
+
lineWidth?: number | undefined;
|
1285
|
+
} | undefined;
|
1286
|
+
tick?: {
|
1287
|
+
visible?: boolean | undefined;
|
1288
|
+
tickInside?: boolean | undefined;
|
1289
|
+
tickColor?: string | undefined;
|
1290
|
+
tickSize?: number | undefined;
|
1291
|
+
} | undefined;
|
1292
|
+
title?: {
|
1293
|
+
visible?: boolean | undefined;
|
1294
|
+
titleText?: string | undefined;
|
1295
|
+
titleColor?: string | undefined;
|
1296
|
+
titleFontSize?: number | undefined;
|
1297
|
+
titleFontWeight?: number | undefined;
|
1298
|
+
} | undefined;
|
1299
|
+
grid?: {
|
1300
|
+
visible?: boolean | undefined;
|
1301
|
+
gridColor?: string | undefined;
|
1302
|
+
gridWidth?: number | undefined;
|
1303
|
+
} | undefined;
|
1304
|
+
} | undefined;
|
1305
|
+
crosshairLine?: {
|
1306
|
+
visible?: boolean | undefined;
|
1307
|
+
lineColor?: string | undefined;
|
1308
|
+
labelColor?: string | undefined;
|
1309
|
+
labelVisible?: boolean | undefined;
|
1310
|
+
labelBackgroundColor?: string | undefined;
|
1311
|
+
} | undefined;
|
1225
1312
|
} | undefined;
|
1226
|
-
|
1313
|
+
rose?: {
|
1227
1314
|
backgroundColor?: string | undefined;
|
1228
1315
|
label?: {
|
1229
1316
|
enable?: boolean | undefined;
|
@@ -1246,7 +1333,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1246
1333
|
labelFontWeight?: string | number | undefined;
|
1247
1334
|
} | undefined;
|
1248
1335
|
} | undefined;
|
1249
|
-
|
1336
|
+
roseParallel?: {
|
1250
1337
|
backgroundColor?: string | undefined;
|
1251
1338
|
label?: {
|
1252
1339
|
enable?: boolean | undefined;
|
@@ -1269,7 +1356,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1269
1356
|
labelFontWeight?: string | number | undefined;
|
1270
1357
|
} | undefined;
|
1271
1358
|
} | undefined;
|
1272
|
-
|
1359
|
+
pie?: {
|
1273
1360
|
backgroundColor?: string | undefined;
|
1274
1361
|
label?: {
|
1275
1362
|
enable?: boolean | undefined;
|
@@ -1292,7 +1379,7 @@ export declare class Builder implements VSeedBuilder {
|
|
1292
1379
|
labelFontWeight?: string | number | undefined;
|
1293
1380
|
} | undefined;
|
1294
1381
|
} | undefined;
|
1295
|
-
|
1382
|
+
donut?: {
|
1296
1383
|
backgroundColor?: string | undefined;
|
1297
1384
|
label?: {
|
1298
1385
|
enable?: boolean | undefined;
|
@@ -1314,96 +1401,35 @@ export declare class Builder implements VSeedBuilder {
|
|
1314
1401
|
labelFontColor?: string | undefined;
|
1315
1402
|
labelFontWeight?: string | number | undefined;
|
1316
1403
|
} | undefined;
|
1317
|
-
|
1318
|
-
|
1319
|
-
|
1320
|
-
|
1321
|
-
|
1322
|
-
zero?: boolean | undefined;
|
1323
|
-
log?: boolean | undefined;
|
1324
|
-
logBase?: number | undefined;
|
1325
|
-
inverse?: boolean | undefined;
|
1326
|
-
label?: {
|
1327
|
-
visible?: boolean | undefined;
|
1328
|
-
labelColor?: string | undefined;
|
1329
|
-
labelFontSize?: number | undefined;
|
1330
|
-
labelFontWeight?: number | undefined;
|
1331
|
-
labelAngle?: number | undefined;
|
1332
|
-
} | undefined;
|
1333
|
-
line?: {
|
1334
|
-
visible?: boolean | undefined;
|
1335
|
-
lineColor?: string | undefined;
|
1336
|
-
lineWidth?: number | undefined;
|
1337
|
-
} | undefined;
|
1338
|
-
tick?: {
|
1339
|
-
visible?: boolean | undefined;
|
1340
|
-
tickInside?: boolean | undefined;
|
1341
|
-
tickColor?: string | undefined;
|
1342
|
-
tickSize?: number | undefined;
|
1343
|
-
} | undefined;
|
1344
|
-
title?: {
|
1345
|
-
visible?: boolean | undefined;
|
1346
|
-
titleText?: string | undefined;
|
1347
|
-
titleColor?: string | undefined;
|
1348
|
-
titleFontSize?: number | undefined;
|
1349
|
-
titleFontWeight?: number | undefined;
|
1350
|
-
} | undefined;
|
1351
|
-
grid?: {
|
1352
|
-
visible?: boolean | undefined;
|
1353
|
-
gridColor?: string | undefined;
|
1354
|
-
gridWidth?: number | undefined;
|
1355
|
-
} | undefined;
|
1404
|
+
} | undefined;
|
1405
|
+
radar?: {
|
1406
|
+
backgroundColor?: string | undefined;
|
1407
|
+
label?: {
|
1408
|
+
enable?: boolean | undefined;
|
1356
1409
|
} | undefined;
|
1357
|
-
|
1358
|
-
|
1359
|
-
|
1360
|
-
max?: number | undefined;
|
1361
|
-
nice?: boolean | undefined;
|
1362
|
-
zero?: boolean | undefined;
|
1363
|
-
log?: boolean | undefined;
|
1364
|
-
logBase?: number | undefined;
|
1365
|
-
inverse?: boolean | undefined;
|
1366
|
-
label?: {
|
1367
|
-
visible?: boolean | undefined;
|
1368
|
-
labelColor?: string | undefined;
|
1369
|
-
labelFontSize?: number | undefined;
|
1370
|
-
labelFontWeight?: number | undefined;
|
1371
|
-
labelAngle?: number | undefined;
|
1372
|
-
} | undefined;
|
1373
|
-
line?: {
|
1374
|
-
visible?: boolean | undefined;
|
1375
|
-
lineColor?: string | undefined;
|
1376
|
-
lineWidth?: number | undefined;
|
1377
|
-
} | undefined;
|
1378
|
-
tick?: {
|
1379
|
-
visible?: boolean | undefined;
|
1380
|
-
tickInside?: boolean | undefined;
|
1381
|
-
tickColor?: string | undefined;
|
1382
|
-
tickSize?: number | undefined;
|
1383
|
-
} | undefined;
|
1384
|
-
title?: {
|
1385
|
-
visible?: boolean | undefined;
|
1386
|
-
titleText?: string | undefined;
|
1387
|
-
titleColor?: string | undefined;
|
1388
|
-
titleFontSize?: number | undefined;
|
1389
|
-
titleFontWeight?: number | undefined;
|
1390
|
-
} | undefined;
|
1391
|
-
grid?: {
|
1392
|
-
visible?: boolean | undefined;
|
1393
|
-
gridColor?: string | undefined;
|
1394
|
-
gridWidth?: number | undefined;
|
1395
|
-
} | undefined;
|
1410
|
+
color?: {
|
1411
|
+
colorScheme?: string[] | undefined;
|
1412
|
+
colorMapping?: Record<string, string> | undefined;
|
1396
1413
|
} | undefined;
|
1397
|
-
|
1398
|
-
|
1399
|
-
|
1400
|
-
|
1401
|
-
|
1402
|
-
|
1414
|
+
tooltip?: {
|
1415
|
+
enable?: boolean | undefined;
|
1416
|
+
} | undefined;
|
1417
|
+
legend?: {
|
1418
|
+
enable?: boolean | undefined;
|
1419
|
+
border?: boolean | undefined;
|
1420
|
+
maxSize?: number | undefined;
|
1421
|
+
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
1422
|
+
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
1423
|
+
labelFontSize?: number | undefined;
|
1424
|
+
labelFontColor?: string | undefined;
|
1425
|
+
labelFontWeight?: string | number | undefined;
|
1403
1426
|
} | undefined;
|
1404
1427
|
} | undefined;
|
1405
1428
|
funnel?: {
|
1406
1429
|
backgroundColor?: string | undefined;
|
1430
|
+
label?: {
|
1431
|
+
enable?: boolean | undefined;
|
1432
|
+
} | undefined;
|
1407
1433
|
color?: {
|
1408
1434
|
colorScheme?: string[] | undefined;
|
1409
1435
|
colorMapping?: Record<string, string> | undefined;
|
@@ -1411,9 +1437,29 @@ export declare class Builder implements VSeedBuilder {
|
|
1411
1437
|
tooltip?: {
|
1412
1438
|
enable?: boolean | undefined;
|
1413
1439
|
} | undefined;
|
1440
|
+
legend?: {
|
1441
|
+
enable?: boolean | undefined;
|
1442
|
+
border?: boolean | undefined;
|
1443
|
+
maxSize?: number | undefined;
|
1444
|
+
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
1445
|
+
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
1446
|
+
labelFontSize?: number | undefined;
|
1447
|
+
labelFontColor?: string | undefined;
|
1448
|
+
labelFontWeight?: string | number | undefined;
|
1449
|
+
} | undefined;
|
1450
|
+
} | undefined;
|
1451
|
+
heatmap?: {
|
1452
|
+
backgroundColor?: string | undefined;
|
1414
1453
|
label?: {
|
1415
1454
|
enable?: boolean | undefined;
|
1416
1455
|
} | undefined;
|
1456
|
+
color?: {
|
1457
|
+
colorScheme?: string[] | undefined;
|
1458
|
+
colorMapping?: Record<string, string> | undefined;
|
1459
|
+
} | undefined;
|
1460
|
+
tooltip?: {
|
1461
|
+
enable?: boolean | undefined;
|
1462
|
+
} | undefined;
|
1417
1463
|
legend?: {
|
1418
1464
|
enable?: boolean | undefined;
|
1419
1465
|
border?: boolean | undefined;
|
@@ -2772,30 +2818,7 @@ export declare class Builder implements VSeedBuilder {
|
|
2772
2818
|
labelBackgroundColor?: string | undefined;
|
2773
2819
|
} | undefined;
|
2774
2820
|
} | undefined;
|
2775
|
-
|
2776
|
-
backgroundColor?: string | undefined;
|
2777
|
-
label?: {
|
2778
|
-
enable?: boolean | undefined;
|
2779
|
-
} | undefined;
|
2780
|
-
color?: {
|
2781
|
-
colorScheme?: string[] | undefined;
|
2782
|
-
colorMapping?: Record<string, string> | undefined;
|
2783
|
-
} | undefined;
|
2784
|
-
tooltip?: {
|
2785
|
-
enable?: boolean | undefined;
|
2786
|
-
} | undefined;
|
2787
|
-
legend?: {
|
2788
|
-
enable?: boolean | undefined;
|
2789
|
-
border?: boolean | undefined;
|
2790
|
-
maxSize?: number | undefined;
|
2791
|
-
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
2792
|
-
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
2793
|
-
labelFontSize?: number | undefined;
|
2794
|
-
labelFontColor?: string | undefined;
|
2795
|
-
labelFontWeight?: string | number | undefined;
|
2796
|
-
} | undefined;
|
2797
|
-
} | undefined;
|
2798
|
-
roseParallel?: {
|
2821
|
+
dualAxis?: {
|
2799
2822
|
backgroundColor?: string | undefined;
|
2800
2823
|
label?: {
|
2801
2824
|
enable?: boolean | undefined;
|
@@ -2818,76 +2841,7 @@ export declare class Builder implements VSeedBuilder {
|
|
2818
2841
|
labelFontWeight?: string | number | undefined;
|
2819
2842
|
} | undefined;
|
2820
2843
|
} | undefined;
|
2821
|
-
|
2822
|
-
backgroundColor?: string | undefined;
|
2823
|
-
label?: {
|
2824
|
-
enable?: boolean | undefined;
|
2825
|
-
} | undefined;
|
2826
|
-
color?: {
|
2827
|
-
colorScheme?: string[] | undefined;
|
2828
|
-
colorMapping?: Record<string, string> | undefined;
|
2829
|
-
} | undefined;
|
2830
|
-
tooltip?: {
|
2831
|
-
enable?: boolean | undefined;
|
2832
|
-
} | undefined;
|
2833
|
-
legend?: {
|
2834
|
-
enable?: boolean | undefined;
|
2835
|
-
border?: boolean | undefined;
|
2836
|
-
maxSize?: number | undefined;
|
2837
|
-
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
2838
|
-
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
2839
|
-
labelFontSize?: number | undefined;
|
2840
|
-
labelFontColor?: string | undefined;
|
2841
|
-
labelFontWeight?: string | number | undefined;
|
2842
|
-
} | undefined;
|
2843
|
-
} | undefined;
|
2844
|
-
donut?: {
|
2845
|
-
backgroundColor?: string | undefined;
|
2846
|
-
label?: {
|
2847
|
-
enable?: boolean | undefined;
|
2848
|
-
} | undefined;
|
2849
|
-
color?: {
|
2850
|
-
colorScheme?: string[] | undefined;
|
2851
|
-
colorMapping?: Record<string, string> | undefined;
|
2852
|
-
} | undefined;
|
2853
|
-
tooltip?: {
|
2854
|
-
enable?: boolean | undefined;
|
2855
|
-
} | undefined;
|
2856
|
-
legend?: {
|
2857
|
-
enable?: boolean | undefined;
|
2858
|
-
border?: boolean | undefined;
|
2859
|
-
maxSize?: number | undefined;
|
2860
|
-
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
2861
|
-
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
2862
|
-
labelFontSize?: number | undefined;
|
2863
|
-
labelFontColor?: string | undefined;
|
2864
|
-
labelFontWeight?: string | number | undefined;
|
2865
|
-
} | undefined;
|
2866
|
-
} | undefined;
|
2867
|
-
dualAxis?: {
|
2868
|
-
backgroundColor?: string | undefined;
|
2869
|
-
label?: {
|
2870
|
-
enable?: boolean | undefined;
|
2871
|
-
} | undefined;
|
2872
|
-
color?: {
|
2873
|
-
colorScheme?: string[] | undefined;
|
2874
|
-
colorMapping?: Record<string, string> | undefined;
|
2875
|
-
} | undefined;
|
2876
|
-
tooltip?: {
|
2877
|
-
enable?: boolean | undefined;
|
2878
|
-
} | undefined;
|
2879
|
-
legend?: {
|
2880
|
-
enable?: boolean | undefined;
|
2881
|
-
border?: boolean | undefined;
|
2882
|
-
maxSize?: number | undefined;
|
2883
|
-
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
2884
|
-
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
2885
|
-
labelFontSize?: number | undefined;
|
2886
|
-
labelFontColor?: string | undefined;
|
2887
|
-
labelFontWeight?: string | number | undefined;
|
2888
|
-
} | undefined;
|
2889
|
-
} | undefined;
|
2890
|
-
scatter?: {
|
2844
|
+
scatter?: {
|
2891
2845
|
backgroundColor?: string | undefined;
|
2892
2846
|
label?: {
|
2893
2847
|
enable?: boolean | undefined;
|
@@ -2997,8 +2951,126 @@ export declare class Builder implements VSeedBuilder {
|
|
2997
2951
|
labelBackgroundColor?: string | undefined;
|
2998
2952
|
} | undefined;
|
2999
2953
|
} | undefined;
|
2954
|
+
rose?: {
|
2955
|
+
backgroundColor?: string | undefined;
|
2956
|
+
label?: {
|
2957
|
+
enable?: boolean | undefined;
|
2958
|
+
} | undefined;
|
2959
|
+
color?: {
|
2960
|
+
colorScheme?: string[] | undefined;
|
2961
|
+
colorMapping?: Record<string, string> | undefined;
|
2962
|
+
} | undefined;
|
2963
|
+
tooltip?: {
|
2964
|
+
enable?: boolean | undefined;
|
2965
|
+
} | undefined;
|
2966
|
+
legend?: {
|
2967
|
+
enable?: boolean | undefined;
|
2968
|
+
border?: boolean | undefined;
|
2969
|
+
maxSize?: number | undefined;
|
2970
|
+
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
2971
|
+
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
2972
|
+
labelFontSize?: number | undefined;
|
2973
|
+
labelFontColor?: string | undefined;
|
2974
|
+
labelFontWeight?: string | number | undefined;
|
2975
|
+
} | undefined;
|
2976
|
+
} | undefined;
|
2977
|
+
roseParallel?: {
|
2978
|
+
backgroundColor?: string | undefined;
|
2979
|
+
label?: {
|
2980
|
+
enable?: boolean | undefined;
|
2981
|
+
} | undefined;
|
2982
|
+
color?: {
|
2983
|
+
colorScheme?: string[] | undefined;
|
2984
|
+
colorMapping?: Record<string, string> | undefined;
|
2985
|
+
} | undefined;
|
2986
|
+
tooltip?: {
|
2987
|
+
enable?: boolean | undefined;
|
2988
|
+
} | undefined;
|
2989
|
+
legend?: {
|
2990
|
+
enable?: boolean | undefined;
|
2991
|
+
border?: boolean | undefined;
|
2992
|
+
maxSize?: number | undefined;
|
2993
|
+
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
2994
|
+
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
2995
|
+
labelFontSize?: number | undefined;
|
2996
|
+
labelFontColor?: string | undefined;
|
2997
|
+
labelFontWeight?: string | number | undefined;
|
2998
|
+
} | undefined;
|
2999
|
+
} | undefined;
|
3000
|
+
pie?: {
|
3001
|
+
backgroundColor?: string | undefined;
|
3002
|
+
label?: {
|
3003
|
+
enable?: boolean | undefined;
|
3004
|
+
} | undefined;
|
3005
|
+
color?: {
|
3006
|
+
colorScheme?: string[] | undefined;
|
3007
|
+
colorMapping?: Record<string, string> | undefined;
|
3008
|
+
} | undefined;
|
3009
|
+
tooltip?: {
|
3010
|
+
enable?: boolean | undefined;
|
3011
|
+
} | undefined;
|
3012
|
+
legend?: {
|
3013
|
+
enable?: boolean | undefined;
|
3014
|
+
border?: boolean | undefined;
|
3015
|
+
maxSize?: number | undefined;
|
3016
|
+
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
3017
|
+
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
3018
|
+
labelFontSize?: number | undefined;
|
3019
|
+
labelFontColor?: string | undefined;
|
3020
|
+
labelFontWeight?: string | number | undefined;
|
3021
|
+
} | undefined;
|
3022
|
+
} | undefined;
|
3023
|
+
donut?: {
|
3024
|
+
backgroundColor?: string | undefined;
|
3025
|
+
label?: {
|
3026
|
+
enable?: boolean | undefined;
|
3027
|
+
} | undefined;
|
3028
|
+
color?: {
|
3029
|
+
colorScheme?: string[] | undefined;
|
3030
|
+
colorMapping?: Record<string, string> | undefined;
|
3031
|
+
} | undefined;
|
3032
|
+
tooltip?: {
|
3033
|
+
enable?: boolean | undefined;
|
3034
|
+
} | undefined;
|
3035
|
+
legend?: {
|
3036
|
+
enable?: boolean | undefined;
|
3037
|
+
border?: boolean | undefined;
|
3038
|
+
maxSize?: number | undefined;
|
3039
|
+
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
3040
|
+
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
3041
|
+
labelFontSize?: number | undefined;
|
3042
|
+
labelFontColor?: string | undefined;
|
3043
|
+
labelFontWeight?: string | number | undefined;
|
3044
|
+
} | undefined;
|
3045
|
+
} | undefined;
|
3046
|
+
radar?: {
|
3047
|
+
backgroundColor?: string | undefined;
|
3048
|
+
label?: {
|
3049
|
+
enable?: boolean | undefined;
|
3050
|
+
} | undefined;
|
3051
|
+
color?: {
|
3052
|
+
colorScheme?: string[] | undefined;
|
3053
|
+
colorMapping?: Record<string, string> | undefined;
|
3054
|
+
} | undefined;
|
3055
|
+
tooltip?: {
|
3056
|
+
enable?: boolean | undefined;
|
3057
|
+
} | undefined;
|
3058
|
+
legend?: {
|
3059
|
+
enable?: boolean | undefined;
|
3060
|
+
border?: boolean | undefined;
|
3061
|
+
maxSize?: number | undefined;
|
3062
|
+
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
3063
|
+
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
3064
|
+
labelFontSize?: number | undefined;
|
3065
|
+
labelFontColor?: string | undefined;
|
3066
|
+
labelFontWeight?: string | number | undefined;
|
3067
|
+
} | undefined;
|
3068
|
+
} | undefined;
|
3000
3069
|
funnel?: {
|
3001
3070
|
backgroundColor?: string | undefined;
|
3071
|
+
label?: {
|
3072
|
+
enable?: boolean | undefined;
|
3073
|
+
} | undefined;
|
3002
3074
|
color?: {
|
3003
3075
|
colorScheme?: string[] | undefined;
|
3004
3076
|
colorMapping?: Record<string, string> | undefined;
|
@@ -3006,9 +3078,29 @@ export declare class Builder implements VSeedBuilder {
|
|
3006
3078
|
tooltip?: {
|
3007
3079
|
enable?: boolean | undefined;
|
3008
3080
|
} | undefined;
|
3081
|
+
legend?: {
|
3082
|
+
enable?: boolean | undefined;
|
3083
|
+
border?: boolean | undefined;
|
3084
|
+
maxSize?: number | undefined;
|
3085
|
+
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
3086
|
+
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
3087
|
+
labelFontSize?: number | undefined;
|
3088
|
+
labelFontColor?: string | undefined;
|
3089
|
+
labelFontWeight?: string | number | undefined;
|
3090
|
+
} | undefined;
|
3091
|
+
} | undefined;
|
3092
|
+
heatmap?: {
|
3093
|
+
backgroundColor?: string | undefined;
|
3009
3094
|
label?: {
|
3010
3095
|
enable?: boolean | undefined;
|
3011
3096
|
} | undefined;
|
3097
|
+
color?: {
|
3098
|
+
colorScheme?: string[] | undefined;
|
3099
|
+
colorMapping?: Record<string, string> | undefined;
|
3100
|
+
} | undefined;
|
3101
|
+
tooltip?: {
|
3102
|
+
enable?: boolean | undefined;
|
3103
|
+
} | undefined;
|
3012
3104
|
legend?: {
|
3013
3105
|
enable?: boolean | undefined;
|
3014
3106
|
border?: boolean | undefined;
|
@@ -4468,7 +4560,7 @@ export declare class Builder implements VSeedBuilder {
|
|
4468
4560
|
labelBackgroundColor?: string | undefined;
|
4469
4561
|
} | undefined;
|
4470
4562
|
} | undefined;
|
4471
|
-
|
4563
|
+
dualAxis?: {
|
4472
4564
|
backgroundColor?: string | undefined;
|
4473
4565
|
label?: {
|
4474
4566
|
enable?: boolean | undefined;
|
@@ -4491,7 +4583,7 @@ export declare class Builder implements VSeedBuilder {
|
|
4491
4583
|
labelFontWeight?: string | number | undefined;
|
4492
4584
|
} | undefined;
|
4493
4585
|
} | undefined;
|
4494
|
-
|
4586
|
+
scatter?: {
|
4495
4587
|
backgroundColor?: string | undefined;
|
4496
4588
|
label?: {
|
4497
4589
|
enable?: boolean | undefined;
|
@@ -4513,20 +4605,107 @@ export declare class Builder implements VSeedBuilder {
|
|
4513
4605
|
labelFontColor?: string | undefined;
|
4514
4606
|
labelFontWeight?: string | number | undefined;
|
4515
4607
|
} | undefined;
|
4516
|
-
|
4517
|
-
|
4518
|
-
|
4519
|
-
|
4520
|
-
|
4521
|
-
|
4522
|
-
|
4523
|
-
|
4524
|
-
|
4525
|
-
|
4526
|
-
|
4527
|
-
|
4608
|
+
xAxis?: {
|
4609
|
+
visible?: boolean | undefined;
|
4610
|
+
min?: number | undefined;
|
4611
|
+
max?: number | undefined;
|
4612
|
+
nice?: boolean | undefined;
|
4613
|
+
zero?: boolean | undefined;
|
4614
|
+
log?: boolean | undefined;
|
4615
|
+
logBase?: number | undefined;
|
4616
|
+
inverse?: boolean | undefined;
|
4617
|
+
label?: {
|
4618
|
+
visible?: boolean | undefined;
|
4619
|
+
labelColor?: string | undefined;
|
4620
|
+
labelFontSize?: number | undefined;
|
4621
|
+
labelFontWeight?: number | undefined;
|
4622
|
+
labelAngle?: number | undefined;
|
4623
|
+
} | undefined;
|
4624
|
+
line?: {
|
4625
|
+
visible?: boolean | undefined;
|
4626
|
+
lineColor?: string | undefined;
|
4627
|
+
lineWidth?: number | undefined;
|
4628
|
+
} | undefined;
|
4629
|
+
tick?: {
|
4630
|
+
visible?: boolean | undefined;
|
4631
|
+
tickInside?: boolean | undefined;
|
4632
|
+
tickColor?: string | undefined;
|
4633
|
+
tickSize?: number | undefined;
|
4634
|
+
} | undefined;
|
4635
|
+
title?: {
|
4636
|
+
visible?: boolean | undefined;
|
4637
|
+
titleText?: string | undefined;
|
4638
|
+
titleColor?: string | undefined;
|
4639
|
+
titleFontSize?: number | undefined;
|
4640
|
+
titleFontWeight?: number | undefined;
|
4641
|
+
} | undefined;
|
4642
|
+
grid?: {
|
4643
|
+
visible?: boolean | undefined;
|
4644
|
+
gridColor?: string | undefined;
|
4645
|
+
gridWidth?: number | undefined;
|
4646
|
+
} | undefined;
|
4528
4647
|
} | undefined;
|
4529
|
-
|
4648
|
+
yAxis?: {
|
4649
|
+
visible?: boolean | undefined;
|
4650
|
+
min?: number | undefined;
|
4651
|
+
max?: number | undefined;
|
4652
|
+
nice?: boolean | undefined;
|
4653
|
+
zero?: boolean | undefined;
|
4654
|
+
log?: boolean | undefined;
|
4655
|
+
logBase?: number | undefined;
|
4656
|
+
inverse?: boolean | undefined;
|
4657
|
+
label?: {
|
4658
|
+
visible?: boolean | undefined;
|
4659
|
+
labelColor?: string | undefined;
|
4660
|
+
labelFontSize?: number | undefined;
|
4661
|
+
labelFontWeight?: number | undefined;
|
4662
|
+
labelAngle?: number | undefined;
|
4663
|
+
} | undefined;
|
4664
|
+
line?: {
|
4665
|
+
visible?: boolean | undefined;
|
4666
|
+
lineColor?: string | undefined;
|
4667
|
+
lineWidth?: number | undefined;
|
4668
|
+
} | undefined;
|
4669
|
+
tick?: {
|
4670
|
+
visible?: boolean | undefined;
|
4671
|
+
tickInside?: boolean | undefined;
|
4672
|
+
tickColor?: string | undefined;
|
4673
|
+
tickSize?: number | undefined;
|
4674
|
+
} | undefined;
|
4675
|
+
title?: {
|
4676
|
+
visible?: boolean | undefined;
|
4677
|
+
titleText?: string | undefined;
|
4678
|
+
titleColor?: string | undefined;
|
4679
|
+
titleFontSize?: number | undefined;
|
4680
|
+
titleFontWeight?: number | undefined;
|
4681
|
+
} | undefined;
|
4682
|
+
grid?: {
|
4683
|
+
visible?: boolean | undefined;
|
4684
|
+
gridColor?: string | undefined;
|
4685
|
+
gridWidth?: number | undefined;
|
4686
|
+
} | undefined;
|
4687
|
+
} | undefined;
|
4688
|
+
crosshairLine?: {
|
4689
|
+
visible?: boolean | undefined;
|
4690
|
+
lineColor?: string | undefined;
|
4691
|
+
labelColor?: string | undefined;
|
4692
|
+
labelVisible?: boolean | undefined;
|
4693
|
+
labelBackgroundColor?: string | undefined;
|
4694
|
+
} | undefined;
|
4695
|
+
} | undefined;
|
4696
|
+
rose?: {
|
4697
|
+
backgroundColor?: string | undefined;
|
4698
|
+
label?: {
|
4699
|
+
enable?: boolean | undefined;
|
4700
|
+
} | undefined;
|
4701
|
+
color?: {
|
4702
|
+
colorScheme?: string[] | undefined;
|
4703
|
+
colorMapping?: Record<string, string> | undefined;
|
4704
|
+
} | undefined;
|
4705
|
+
tooltip?: {
|
4706
|
+
enable?: boolean | undefined;
|
4707
|
+
} | undefined;
|
4708
|
+
legend?: {
|
4530
4709
|
enable?: boolean | undefined;
|
4531
4710
|
border?: boolean | undefined;
|
4532
4711
|
maxSize?: number | undefined;
|
@@ -4537,7 +4716,7 @@ export declare class Builder implements VSeedBuilder {
|
|
4537
4716
|
labelFontWeight?: string | number | undefined;
|
4538
4717
|
} | undefined;
|
4539
4718
|
} | undefined;
|
4540
|
-
|
4719
|
+
roseParallel?: {
|
4541
4720
|
backgroundColor?: string | undefined;
|
4542
4721
|
label?: {
|
4543
4722
|
enable?: boolean | undefined;
|
@@ -4560,7 +4739,7 @@ export declare class Builder implements VSeedBuilder {
|
|
4560
4739
|
labelFontWeight?: string | number | undefined;
|
4561
4740
|
} | undefined;
|
4562
4741
|
} | undefined;
|
4563
|
-
|
4742
|
+
pie?: {
|
4564
4743
|
backgroundColor?: string | undefined;
|
4565
4744
|
label?: {
|
4566
4745
|
enable?: boolean | undefined;
|
@@ -4583,7 +4762,7 @@ export declare class Builder implements VSeedBuilder {
|
|
4583
4762
|
labelFontWeight?: string | number | undefined;
|
4584
4763
|
} | undefined;
|
4585
4764
|
} | undefined;
|
4586
|
-
|
4765
|
+
donut?: {
|
4587
4766
|
backgroundColor?: string | undefined;
|
4588
4767
|
label?: {
|
4589
4768
|
enable?: boolean | undefined;
|
@@ -4605,96 +4784,35 @@ export declare class Builder implements VSeedBuilder {
|
|
4605
4784
|
labelFontColor?: string | undefined;
|
4606
4785
|
labelFontWeight?: string | number | undefined;
|
4607
4786
|
} | undefined;
|
4608
|
-
|
4609
|
-
|
4610
|
-
|
4611
|
-
|
4612
|
-
|
4613
|
-
zero?: boolean | undefined;
|
4614
|
-
log?: boolean | undefined;
|
4615
|
-
logBase?: number | undefined;
|
4616
|
-
inverse?: boolean | undefined;
|
4617
|
-
label?: {
|
4618
|
-
visible?: boolean | undefined;
|
4619
|
-
labelColor?: string | undefined;
|
4620
|
-
labelFontSize?: number | undefined;
|
4621
|
-
labelFontWeight?: number | undefined;
|
4622
|
-
labelAngle?: number | undefined;
|
4623
|
-
} | undefined;
|
4624
|
-
line?: {
|
4625
|
-
visible?: boolean | undefined;
|
4626
|
-
lineColor?: string | undefined;
|
4627
|
-
lineWidth?: number | undefined;
|
4628
|
-
} | undefined;
|
4629
|
-
tick?: {
|
4630
|
-
visible?: boolean | undefined;
|
4631
|
-
tickInside?: boolean | undefined;
|
4632
|
-
tickColor?: string | undefined;
|
4633
|
-
tickSize?: number | undefined;
|
4634
|
-
} | undefined;
|
4635
|
-
title?: {
|
4636
|
-
visible?: boolean | undefined;
|
4637
|
-
titleText?: string | undefined;
|
4638
|
-
titleColor?: string | undefined;
|
4639
|
-
titleFontSize?: number | undefined;
|
4640
|
-
titleFontWeight?: number | undefined;
|
4641
|
-
} | undefined;
|
4642
|
-
grid?: {
|
4643
|
-
visible?: boolean | undefined;
|
4644
|
-
gridColor?: string | undefined;
|
4645
|
-
gridWidth?: number | undefined;
|
4646
|
-
} | undefined;
|
4787
|
+
} | undefined;
|
4788
|
+
radar?: {
|
4789
|
+
backgroundColor?: string | undefined;
|
4790
|
+
label?: {
|
4791
|
+
enable?: boolean | undefined;
|
4647
4792
|
} | undefined;
|
4648
|
-
|
4649
|
-
|
4650
|
-
|
4651
|
-
max?: number | undefined;
|
4652
|
-
nice?: boolean | undefined;
|
4653
|
-
zero?: boolean | undefined;
|
4654
|
-
log?: boolean | undefined;
|
4655
|
-
logBase?: number | undefined;
|
4656
|
-
inverse?: boolean | undefined;
|
4657
|
-
label?: {
|
4658
|
-
visible?: boolean | undefined;
|
4659
|
-
labelColor?: string | undefined;
|
4660
|
-
labelFontSize?: number | undefined;
|
4661
|
-
labelFontWeight?: number | undefined;
|
4662
|
-
labelAngle?: number | undefined;
|
4663
|
-
} | undefined;
|
4664
|
-
line?: {
|
4665
|
-
visible?: boolean | undefined;
|
4666
|
-
lineColor?: string | undefined;
|
4667
|
-
lineWidth?: number | undefined;
|
4668
|
-
} | undefined;
|
4669
|
-
tick?: {
|
4670
|
-
visible?: boolean | undefined;
|
4671
|
-
tickInside?: boolean | undefined;
|
4672
|
-
tickColor?: string | undefined;
|
4673
|
-
tickSize?: number | undefined;
|
4674
|
-
} | undefined;
|
4675
|
-
title?: {
|
4676
|
-
visible?: boolean | undefined;
|
4677
|
-
titleText?: string | undefined;
|
4678
|
-
titleColor?: string | undefined;
|
4679
|
-
titleFontSize?: number | undefined;
|
4680
|
-
titleFontWeight?: number | undefined;
|
4681
|
-
} | undefined;
|
4682
|
-
grid?: {
|
4683
|
-
visible?: boolean | undefined;
|
4684
|
-
gridColor?: string | undefined;
|
4685
|
-
gridWidth?: number | undefined;
|
4686
|
-
} | undefined;
|
4793
|
+
color?: {
|
4794
|
+
colorScheme?: string[] | undefined;
|
4795
|
+
colorMapping?: Record<string, string> | undefined;
|
4687
4796
|
} | undefined;
|
4688
|
-
|
4689
|
-
|
4690
|
-
|
4691
|
-
|
4692
|
-
|
4693
|
-
|
4797
|
+
tooltip?: {
|
4798
|
+
enable?: boolean | undefined;
|
4799
|
+
} | undefined;
|
4800
|
+
legend?: {
|
4801
|
+
enable?: boolean | undefined;
|
4802
|
+
border?: boolean | undefined;
|
4803
|
+
maxSize?: number | undefined;
|
4804
|
+
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
4805
|
+
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
4806
|
+
labelFontSize?: number | undefined;
|
4807
|
+
labelFontColor?: string | undefined;
|
4808
|
+
labelFontWeight?: string | number | undefined;
|
4694
4809
|
} | undefined;
|
4695
4810
|
} | undefined;
|
4696
4811
|
funnel?: {
|
4697
4812
|
backgroundColor?: string | undefined;
|
4813
|
+
label?: {
|
4814
|
+
enable?: boolean | undefined;
|
4815
|
+
} | undefined;
|
4698
4816
|
color?: {
|
4699
4817
|
colorScheme?: string[] | undefined;
|
4700
4818
|
colorMapping?: Record<string, string> | undefined;
|
@@ -4702,9 +4820,29 @@ export declare class Builder implements VSeedBuilder {
|
|
4702
4820
|
tooltip?: {
|
4703
4821
|
enable?: boolean | undefined;
|
4704
4822
|
} | undefined;
|
4823
|
+
legend?: {
|
4824
|
+
enable?: boolean | undefined;
|
4825
|
+
border?: boolean | undefined;
|
4826
|
+
maxSize?: number | undefined;
|
4827
|
+
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
4828
|
+
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
4829
|
+
labelFontSize?: number | undefined;
|
4830
|
+
labelFontColor?: string | undefined;
|
4831
|
+
labelFontWeight?: string | number | undefined;
|
4832
|
+
} | undefined;
|
4833
|
+
} | undefined;
|
4834
|
+
heatmap?: {
|
4835
|
+
backgroundColor?: string | undefined;
|
4705
4836
|
label?: {
|
4706
4837
|
enable?: boolean | undefined;
|
4707
4838
|
} | undefined;
|
4839
|
+
color?: {
|
4840
|
+
colorScheme?: string[] | undefined;
|
4841
|
+
colorMapping?: Record<string, string> | undefined;
|
4842
|
+
} | undefined;
|
4843
|
+
tooltip?: {
|
4844
|
+
enable?: boolean | undefined;
|
4845
|
+
} | undefined;
|
4708
4846
|
legend?: {
|
4709
4847
|
enable?: boolean | undefined;
|
4710
4848
|
border?: boolean | undefined;
|
@@ -5731,7 +5869,139 @@ export declare class Builder implements VSeedBuilder {
|
|
5731
5869
|
labelBackgroundColor?: string | undefined;
|
5732
5870
|
} | undefined;
|
5733
5871
|
} | undefined;
|
5734
|
-
areaRange?: {
|
5872
|
+
areaRange?: {
|
5873
|
+
backgroundColor?: string | undefined;
|
5874
|
+
label?: {
|
5875
|
+
enable?: boolean | undefined;
|
5876
|
+
} | undefined;
|
5877
|
+
color?: {
|
5878
|
+
colorScheme?: string[] | undefined;
|
5879
|
+
colorMapping?: Record<string, string> | undefined;
|
5880
|
+
} | undefined;
|
5881
|
+
tooltip?: {
|
5882
|
+
enable?: boolean | undefined;
|
5883
|
+
} | undefined;
|
5884
|
+
legend?: {
|
5885
|
+
enable?: boolean | undefined;
|
5886
|
+
border?: boolean | undefined;
|
5887
|
+
maxSize?: number | undefined;
|
5888
|
+
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
5889
|
+
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
5890
|
+
labelFontSize?: number | undefined;
|
5891
|
+
labelFontColor?: string | undefined;
|
5892
|
+
labelFontWeight?: string | number | undefined;
|
5893
|
+
} | undefined;
|
5894
|
+
xAxis?: {
|
5895
|
+
visible?: boolean | undefined;
|
5896
|
+
labelAutoHide?: boolean | undefined;
|
5897
|
+
labelAutoHideGap?: number | undefined;
|
5898
|
+
labelAutoRotate?: boolean | undefined;
|
5899
|
+
labelAutoRotateAngleRange?: number[] | undefined;
|
5900
|
+
labelAutoLimit?: boolean | undefined;
|
5901
|
+
labelAutoLimitLength?: number | undefined;
|
5902
|
+
label?: {
|
5903
|
+
visible?: boolean | undefined;
|
5904
|
+
labelColor?: string | undefined;
|
5905
|
+
labelFontSize?: number | undefined;
|
5906
|
+
labelFontWeight?: number | undefined;
|
5907
|
+
labelAngle?: number | undefined;
|
5908
|
+
} | undefined;
|
5909
|
+
line?: {
|
5910
|
+
visible?: boolean | undefined;
|
5911
|
+
lineColor?: string | undefined;
|
5912
|
+
lineWidth?: number | undefined;
|
5913
|
+
} | undefined;
|
5914
|
+
tick?: {
|
5915
|
+
visible?: boolean | undefined;
|
5916
|
+
tickInside?: boolean | undefined;
|
5917
|
+
tickColor?: string | undefined;
|
5918
|
+
tickSize?: number | undefined;
|
5919
|
+
} | undefined;
|
5920
|
+
title?: {
|
5921
|
+
visible?: boolean | undefined;
|
5922
|
+
titleText?: string | undefined;
|
5923
|
+
titleColor?: string | undefined;
|
5924
|
+
titleFontSize?: number | undefined;
|
5925
|
+
titleFontWeight?: number | undefined;
|
5926
|
+
} | undefined;
|
5927
|
+
grid?: {
|
5928
|
+
visible?: boolean | undefined;
|
5929
|
+
gridColor?: string | undefined;
|
5930
|
+
gridWidth?: number | undefined;
|
5931
|
+
} | undefined;
|
5932
|
+
} | undefined;
|
5933
|
+
yAxis?: {
|
5934
|
+
visible?: boolean | undefined;
|
5935
|
+
min?: number | undefined;
|
5936
|
+
max?: number | undefined;
|
5937
|
+
nice?: boolean | undefined;
|
5938
|
+
zero?: boolean | undefined;
|
5939
|
+
log?: boolean | undefined;
|
5940
|
+
logBase?: number | undefined;
|
5941
|
+
inverse?: boolean | undefined;
|
5942
|
+
label?: {
|
5943
|
+
visible?: boolean | undefined;
|
5944
|
+
labelColor?: string | undefined;
|
5945
|
+
labelFontSize?: number | undefined;
|
5946
|
+
labelFontWeight?: number | undefined;
|
5947
|
+
labelAngle?: number | undefined;
|
5948
|
+
} | undefined;
|
5949
|
+
line?: {
|
5950
|
+
visible?: boolean | undefined;
|
5951
|
+
lineColor?: string | undefined;
|
5952
|
+
lineWidth?: number | undefined;
|
5953
|
+
} | undefined;
|
5954
|
+
tick?: {
|
5955
|
+
visible?: boolean | undefined;
|
5956
|
+
tickInside?: boolean | undefined;
|
5957
|
+
tickColor?: string | undefined;
|
5958
|
+
tickSize?: number | undefined;
|
5959
|
+
} | undefined;
|
5960
|
+
title?: {
|
5961
|
+
visible?: boolean | undefined;
|
5962
|
+
titleText?: string | undefined;
|
5963
|
+
titleColor?: string | undefined;
|
5964
|
+
titleFontSize?: number | undefined;
|
5965
|
+
titleFontWeight?: number | undefined;
|
5966
|
+
} | undefined;
|
5967
|
+
grid?: {
|
5968
|
+
visible?: boolean | undefined;
|
5969
|
+
gridColor?: string | undefined;
|
5970
|
+
gridWidth?: number | undefined;
|
5971
|
+
} | undefined;
|
5972
|
+
} | undefined;
|
5973
|
+
crosshairLine?: {
|
5974
|
+
visible?: boolean | undefined;
|
5975
|
+
lineColor?: string | undefined;
|
5976
|
+
labelColor?: string | undefined;
|
5977
|
+
labelVisible?: boolean | undefined;
|
5978
|
+
labelBackgroundColor?: string | undefined;
|
5979
|
+
} | undefined;
|
5980
|
+
} | undefined;
|
5981
|
+
dualAxis?: {
|
5982
|
+
backgroundColor?: string | undefined;
|
5983
|
+
label?: {
|
5984
|
+
enable?: boolean | undefined;
|
5985
|
+
} | undefined;
|
5986
|
+
color?: {
|
5987
|
+
colorScheme?: string[] | undefined;
|
5988
|
+
colorMapping?: Record<string, string> | undefined;
|
5989
|
+
} | undefined;
|
5990
|
+
tooltip?: {
|
5991
|
+
enable?: boolean | undefined;
|
5992
|
+
} | undefined;
|
5993
|
+
legend?: {
|
5994
|
+
enable?: boolean | undefined;
|
5995
|
+
border?: boolean | undefined;
|
5996
|
+
maxSize?: number | undefined;
|
5997
|
+
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
5998
|
+
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
5999
|
+
labelFontSize?: number | undefined;
|
6000
|
+
labelFontColor?: string | undefined;
|
6001
|
+
labelFontWeight?: string | number | undefined;
|
6002
|
+
} | undefined;
|
6003
|
+
} | undefined;
|
6004
|
+
scatter?: {
|
5735
6005
|
backgroundColor?: string | undefined;
|
5736
6006
|
label?: {
|
5737
6007
|
enable?: boolean | undefined;
|
@@ -5755,12 +6025,13 @@ export declare class Builder implements VSeedBuilder {
|
|
5755
6025
|
} | undefined;
|
5756
6026
|
xAxis?: {
|
5757
6027
|
visible?: boolean | undefined;
|
5758
|
-
|
5759
|
-
|
5760
|
-
|
5761
|
-
|
5762
|
-
|
5763
|
-
|
6028
|
+
min?: number | undefined;
|
6029
|
+
max?: number | undefined;
|
6030
|
+
nice?: boolean | undefined;
|
6031
|
+
zero?: boolean | undefined;
|
6032
|
+
log?: boolean | undefined;
|
6033
|
+
logBase?: number | undefined;
|
6034
|
+
inverse?: boolean | undefined;
|
5764
6035
|
label?: {
|
5765
6036
|
visible?: boolean | undefined;
|
5766
6037
|
labelColor?: string | undefined;
|
@@ -5932,7 +6203,7 @@ export declare class Builder implements VSeedBuilder {
|
|
5932
6203
|
labelFontWeight?: string | number | undefined;
|
5933
6204
|
} | undefined;
|
5934
6205
|
} | undefined;
|
5935
|
-
|
6206
|
+
radar?: {
|
5936
6207
|
backgroundColor?: string | undefined;
|
5937
6208
|
label?: {
|
5938
6209
|
enable?: boolean | undefined;
|
@@ -5955,7 +6226,7 @@ export declare class Builder implements VSeedBuilder {
|
|
5955
6226
|
labelFontWeight?: string | number | undefined;
|
5956
6227
|
} | undefined;
|
5957
6228
|
} | undefined;
|
5958
|
-
|
6229
|
+
funnel?: {
|
5959
6230
|
backgroundColor?: string | undefined;
|
5960
6231
|
label?: {
|
5961
6232
|
enable?: boolean | undefined;
|
@@ -5977,96 +6248,12 @@ export declare class Builder implements VSeedBuilder {
|
|
5977
6248
|
labelFontColor?: string | undefined;
|
5978
6249
|
labelFontWeight?: string | number | undefined;
|
5979
6250
|
} | undefined;
|
5980
|
-
xAxis?: {
|
5981
|
-
visible?: boolean | undefined;
|
5982
|
-
min?: number | undefined;
|
5983
|
-
max?: number | undefined;
|
5984
|
-
nice?: boolean | undefined;
|
5985
|
-
zero?: boolean | undefined;
|
5986
|
-
log?: boolean | undefined;
|
5987
|
-
logBase?: number | undefined;
|
5988
|
-
inverse?: boolean | undefined;
|
5989
|
-
label?: {
|
5990
|
-
visible?: boolean | undefined;
|
5991
|
-
labelColor?: string | undefined;
|
5992
|
-
labelFontSize?: number | undefined;
|
5993
|
-
labelFontWeight?: number | undefined;
|
5994
|
-
labelAngle?: number | undefined;
|
5995
|
-
} | undefined;
|
5996
|
-
line?: {
|
5997
|
-
visible?: boolean | undefined;
|
5998
|
-
lineColor?: string | undefined;
|
5999
|
-
lineWidth?: number | undefined;
|
6000
|
-
} | undefined;
|
6001
|
-
tick?: {
|
6002
|
-
visible?: boolean | undefined;
|
6003
|
-
tickInside?: boolean | undefined;
|
6004
|
-
tickColor?: string | undefined;
|
6005
|
-
tickSize?: number | undefined;
|
6006
|
-
} | undefined;
|
6007
|
-
title?: {
|
6008
|
-
visible?: boolean | undefined;
|
6009
|
-
titleText?: string | undefined;
|
6010
|
-
titleColor?: string | undefined;
|
6011
|
-
titleFontSize?: number | undefined;
|
6012
|
-
titleFontWeight?: number | undefined;
|
6013
|
-
} | undefined;
|
6014
|
-
grid?: {
|
6015
|
-
visible?: boolean | undefined;
|
6016
|
-
gridColor?: string | undefined;
|
6017
|
-
gridWidth?: number | undefined;
|
6018
|
-
} | undefined;
|
6019
|
-
} | undefined;
|
6020
|
-
yAxis?: {
|
6021
|
-
visible?: boolean | undefined;
|
6022
|
-
min?: number | undefined;
|
6023
|
-
max?: number | undefined;
|
6024
|
-
nice?: boolean | undefined;
|
6025
|
-
zero?: boolean | undefined;
|
6026
|
-
log?: boolean | undefined;
|
6027
|
-
logBase?: number | undefined;
|
6028
|
-
inverse?: boolean | undefined;
|
6029
|
-
label?: {
|
6030
|
-
visible?: boolean | undefined;
|
6031
|
-
labelColor?: string | undefined;
|
6032
|
-
labelFontSize?: number | undefined;
|
6033
|
-
labelFontWeight?: number | undefined;
|
6034
|
-
labelAngle?: number | undefined;
|
6035
|
-
} | undefined;
|
6036
|
-
line?: {
|
6037
|
-
visible?: boolean | undefined;
|
6038
|
-
lineColor?: string | undefined;
|
6039
|
-
lineWidth?: number | undefined;
|
6040
|
-
} | undefined;
|
6041
|
-
tick?: {
|
6042
|
-
visible?: boolean | undefined;
|
6043
|
-
tickInside?: boolean | undefined;
|
6044
|
-
tickColor?: string | undefined;
|
6045
|
-
tickSize?: number | undefined;
|
6046
|
-
} | undefined;
|
6047
|
-
title?: {
|
6048
|
-
visible?: boolean | undefined;
|
6049
|
-
titleText?: string | undefined;
|
6050
|
-
titleColor?: string | undefined;
|
6051
|
-
titleFontSize?: number | undefined;
|
6052
|
-
titleFontWeight?: number | undefined;
|
6053
|
-
} | undefined;
|
6054
|
-
grid?: {
|
6055
|
-
visible?: boolean | undefined;
|
6056
|
-
gridColor?: string | undefined;
|
6057
|
-
gridWidth?: number | undefined;
|
6058
|
-
} | undefined;
|
6059
|
-
} | undefined;
|
6060
|
-
crosshairLine?: {
|
6061
|
-
visible?: boolean | undefined;
|
6062
|
-
lineColor?: string | undefined;
|
6063
|
-
labelColor?: string | undefined;
|
6064
|
-
labelVisible?: boolean | undefined;
|
6065
|
-
labelBackgroundColor?: string | undefined;
|
6066
|
-
} | undefined;
|
6067
6251
|
} | undefined;
|
6068
|
-
|
6252
|
+
heatmap?: {
|
6069
6253
|
backgroundColor?: string | undefined;
|
6254
|
+
label?: {
|
6255
|
+
enable?: boolean | undefined;
|
6256
|
+
} | undefined;
|
6070
6257
|
color?: {
|
6071
6258
|
colorScheme?: string[] | undefined;
|
6072
6259
|
colorMapping?: Record<string, string> | undefined;
|
@@ -6074,9 +6261,6 @@ export declare class Builder implements VSeedBuilder {
|
|
6074
6261
|
tooltip?: {
|
6075
6262
|
enable?: boolean | undefined;
|
6076
6263
|
} | undefined;
|
6077
|
-
label?: {
|
6078
|
-
enable?: boolean | undefined;
|
6079
|
-
} | undefined;
|
6080
6264
|
legend?: {
|
6081
6265
|
enable?: boolean | undefined;
|
6082
6266
|
border?: boolean | undefined;
|
@@ -6095,7 +6279,7 @@ export declare class Builder implements VSeedBuilder {
|
|
6095
6279
|
get vseed(): VSeed;
|
6096
6280
|
set vseed(value: VSeed);
|
6097
6281
|
get advancedVSeed(): {
|
6098
|
-
chartType: "table" | "pivotTable" | "line" | "column" | "columnPercent" | "columnParallel" | "bar" | "barPercent" | "barParallel" | "area" | "areaPercent" | "areaRange" | "rose" | "roseParallel" | "pie" | "donut" | "
|
6282
|
+
chartType: "table" | "pivotTable" | "line" | "column" | "columnPercent" | "columnParallel" | "bar" | "barPercent" | "barParallel" | "area" | "areaPercent" | "areaRange" | "scatter" | "dualAxis" | "rose" | "roseParallel" | "pie" | "donut" | "radar" | "heatmap" | "funnel";
|
6099
6283
|
dataset: Record<string | number, any>[];
|
6100
6284
|
datasetReshapeInfo: {
|
6101
6285
|
id: string;
|
@@ -7265,7 +7449,7 @@ export declare class Builder implements VSeedBuilder {
|
|
7265
7449
|
labelBackgroundColor?: string | undefined;
|
7266
7450
|
} | undefined;
|
7267
7451
|
} | undefined;
|
7268
|
-
|
7452
|
+
dualAxis?: {
|
7269
7453
|
backgroundColor?: string | undefined;
|
7270
7454
|
label?: {
|
7271
7455
|
enable?: boolean | undefined;
|
@@ -7288,7 +7472,7 @@ export declare class Builder implements VSeedBuilder {
|
|
7288
7472
|
labelFontWeight?: string | number | undefined;
|
7289
7473
|
} | undefined;
|
7290
7474
|
} | undefined;
|
7291
|
-
|
7475
|
+
scatter?: {
|
7292
7476
|
backgroundColor?: string | undefined;
|
7293
7477
|
label?: {
|
7294
7478
|
enable?: boolean | undefined;
|
@@ -7310,8 +7494,95 @@ export declare class Builder implements VSeedBuilder {
|
|
7310
7494
|
labelFontColor?: string | undefined;
|
7311
7495
|
labelFontWeight?: string | number | undefined;
|
7312
7496
|
} | undefined;
|
7497
|
+
xAxis?: {
|
7498
|
+
visible?: boolean | undefined;
|
7499
|
+
min?: number | undefined;
|
7500
|
+
max?: number | undefined;
|
7501
|
+
nice?: boolean | undefined;
|
7502
|
+
zero?: boolean | undefined;
|
7503
|
+
log?: boolean | undefined;
|
7504
|
+
logBase?: number | undefined;
|
7505
|
+
inverse?: boolean | undefined;
|
7506
|
+
label?: {
|
7507
|
+
visible?: boolean | undefined;
|
7508
|
+
labelColor?: string | undefined;
|
7509
|
+
labelFontSize?: number | undefined;
|
7510
|
+
labelFontWeight?: number | undefined;
|
7511
|
+
labelAngle?: number | undefined;
|
7512
|
+
} | undefined;
|
7513
|
+
line?: {
|
7514
|
+
visible?: boolean | undefined;
|
7515
|
+
lineColor?: string | undefined;
|
7516
|
+
lineWidth?: number | undefined;
|
7517
|
+
} | undefined;
|
7518
|
+
tick?: {
|
7519
|
+
visible?: boolean | undefined;
|
7520
|
+
tickInside?: boolean | undefined;
|
7521
|
+
tickColor?: string | undefined;
|
7522
|
+
tickSize?: number | undefined;
|
7523
|
+
} | undefined;
|
7524
|
+
title?: {
|
7525
|
+
visible?: boolean | undefined;
|
7526
|
+
titleText?: string | undefined;
|
7527
|
+
titleColor?: string | undefined;
|
7528
|
+
titleFontSize?: number | undefined;
|
7529
|
+
titleFontWeight?: number | undefined;
|
7530
|
+
} | undefined;
|
7531
|
+
grid?: {
|
7532
|
+
visible?: boolean | undefined;
|
7533
|
+
gridColor?: string | undefined;
|
7534
|
+
gridWidth?: number | undefined;
|
7535
|
+
} | undefined;
|
7536
|
+
} | undefined;
|
7537
|
+
yAxis?: {
|
7538
|
+
visible?: boolean | undefined;
|
7539
|
+
min?: number | undefined;
|
7540
|
+
max?: number | undefined;
|
7541
|
+
nice?: boolean | undefined;
|
7542
|
+
zero?: boolean | undefined;
|
7543
|
+
log?: boolean | undefined;
|
7544
|
+
logBase?: number | undefined;
|
7545
|
+
inverse?: boolean | undefined;
|
7546
|
+
label?: {
|
7547
|
+
visible?: boolean | undefined;
|
7548
|
+
labelColor?: string | undefined;
|
7549
|
+
labelFontSize?: number | undefined;
|
7550
|
+
labelFontWeight?: number | undefined;
|
7551
|
+
labelAngle?: number | undefined;
|
7552
|
+
} | undefined;
|
7553
|
+
line?: {
|
7554
|
+
visible?: boolean | undefined;
|
7555
|
+
lineColor?: string | undefined;
|
7556
|
+
lineWidth?: number | undefined;
|
7557
|
+
} | undefined;
|
7558
|
+
tick?: {
|
7559
|
+
visible?: boolean | undefined;
|
7560
|
+
tickInside?: boolean | undefined;
|
7561
|
+
tickColor?: string | undefined;
|
7562
|
+
tickSize?: number | undefined;
|
7563
|
+
} | undefined;
|
7564
|
+
title?: {
|
7565
|
+
visible?: boolean | undefined;
|
7566
|
+
titleText?: string | undefined;
|
7567
|
+
titleColor?: string | undefined;
|
7568
|
+
titleFontSize?: number | undefined;
|
7569
|
+
titleFontWeight?: number | undefined;
|
7570
|
+
} | undefined;
|
7571
|
+
grid?: {
|
7572
|
+
visible?: boolean | undefined;
|
7573
|
+
gridColor?: string | undefined;
|
7574
|
+
gridWidth?: number | undefined;
|
7575
|
+
} | undefined;
|
7576
|
+
} | undefined;
|
7577
|
+
crosshairLine?: {
|
7578
|
+
visible?: boolean | undefined;
|
7579
|
+
lineColor?: string | undefined;
|
7580
|
+
labelColor?: string | undefined;
|
7581
|
+
labelVisible?: boolean | undefined;
|
7582
|
+
labelBackgroundColor?: string | undefined;
|
7583
|
+
} | undefined;
|
7313
7584
|
} | undefined;
|
7314
|
-
|
7585
|
+
rose?: {
|
7315
7586
|
backgroundColor?: string | undefined;
|
7316
7587
|
label?: {
|
7317
7588
|
enable?: boolean | undefined;
|
@@ -7334,7 +7605,7 @@ export declare class Builder implements VSeedBuilder {
|
|
7334
7605
|
labelFontWeight?: string | number | undefined;
|
7335
7606
|
} | undefined;
|
7336
7607
|
} | undefined;
|
7337
|
-
|
7608
|
+
roseParallel?: {
|
7338
7609
|
backgroundColor?: string | undefined;
|
7339
7610
|
label?: {
|
7340
7611
|
enable?: boolean | undefined;
|
@@ -7357,7 +7628,7 @@ export declare class Builder implements VSeedBuilder {
|
|
7357
7628
|
labelFontWeight?: string | number | undefined;
|
7358
7629
|
} | undefined;
|
7359
7630
|
} | undefined;
|
7360
|
-
|
7631
|
+
pie?: {
|
7361
7632
|
backgroundColor?: string | undefined;
|
7362
7633
|
label?: {
|
7363
7634
|
enable?: boolean | undefined;
|
@@ -7380,7 +7651,7 @@ export declare class Builder implements VSeedBuilder {
|
|
7380
7651
|
labelFontWeight?: string | number | undefined;
|
7381
7652
|
} | undefined;
|
7382
7653
|
} | undefined;
|
7383
|
-
|
7654
|
+
donut?: {
|
7384
7655
|
backgroundColor?: string | undefined;
|
7385
7656
|
label?: {
|
7386
7657
|
enable?: boolean | undefined;
|
@@ -7402,96 +7673,35 @@ export declare class Builder implements VSeedBuilder {
|
|
7402
7673
|
labelFontColor?: string | undefined;
|
7403
7674
|
labelFontWeight?: string | number | undefined;
|
7404
7675
|
} | undefined;
|
7405
|
-
|
7406
|
-
|
7407
|
-
|
7408
|
-
|
7409
|
-
|
7410
|
-
|
7411
|
-
|
7412
|
-
|
7413
|
-
|
7414
|
-
label?: {
|
7415
|
-
visible?: boolean | undefined;
|
7416
|
-
labelColor?: string | undefined;
|
7417
|
-
labelFontSize?: number | undefined;
|
7418
|
-
labelFontWeight?: number | undefined;
|
7419
|
-
labelAngle?: number | undefined;
|
7420
|
-
} | undefined;
|
7421
|
-
line?: {
|
7422
|
-
visible?: boolean | undefined;
|
7423
|
-
lineColor?: string | undefined;
|
7424
|
-
lineWidth?: number | undefined;
|
7425
|
-
} | undefined;
|
7426
|
-
tick?: {
|
7427
|
-
visible?: boolean | undefined;
|
7428
|
-
tickInside?: boolean | undefined;
|
7429
|
-
tickColor?: string | undefined;
|
7430
|
-
tickSize?: number | undefined;
|
7431
|
-
} | undefined;
|
7432
|
-
title?: {
|
7433
|
-
visible?: boolean | undefined;
|
7434
|
-
titleText?: string | undefined;
|
7435
|
-
titleColor?: string | undefined;
|
7436
|
-
titleFontSize?: number | undefined;
|
7437
|
-
titleFontWeight?: number | undefined;
|
7438
|
-
} | undefined;
|
7439
|
-
grid?: {
|
7440
|
-
visible?: boolean | undefined;
|
7441
|
-
gridColor?: string | undefined;
|
7442
|
-
gridWidth?: number | undefined;
|
7443
|
-
} | undefined;
|
7676
|
+
} | undefined;
|
7677
|
+
radar?: {
|
7678
|
+
backgroundColor?: string | undefined;
|
7679
|
+
label?: {
|
7680
|
+
enable?: boolean | undefined;
|
7681
|
+
} | undefined;
|
7682
|
+
color?: {
|
7683
|
+
colorScheme?: string[] | undefined;
|
7684
|
+
colorMapping?: Record<string, string> | undefined;
|
7444
7685
|
} | undefined;
|
7445
|
-
|
7446
|
-
|
7447
|
-
min?: number | undefined;
|
7448
|
-
max?: number | undefined;
|
7449
|
-
nice?: boolean | undefined;
|
7450
|
-
zero?: boolean | undefined;
|
7451
|
-
log?: boolean | undefined;
|
7452
|
-
logBase?: number | undefined;
|
7453
|
-
inverse?: boolean | undefined;
|
7454
|
-
label?: {
|
7455
|
-
visible?: boolean | undefined;
|
7456
|
-
labelColor?: string | undefined;
|
7457
|
-
labelFontSize?: number | undefined;
|
7458
|
-
labelFontWeight?: number | undefined;
|
7459
|
-
labelAngle?: number | undefined;
|
7460
|
-
} | undefined;
|
7461
|
-
line?: {
|
7462
|
-
visible?: boolean | undefined;
|
7463
|
-
lineColor?: string | undefined;
|
7464
|
-
lineWidth?: number | undefined;
|
7465
|
-
} | undefined;
|
7466
|
-
tick?: {
|
7467
|
-
visible?: boolean | undefined;
|
7468
|
-
tickInside?: boolean | undefined;
|
7469
|
-
tickColor?: string | undefined;
|
7470
|
-
tickSize?: number | undefined;
|
7471
|
-
} | undefined;
|
7472
|
-
title?: {
|
7473
|
-
visible?: boolean | undefined;
|
7474
|
-
titleText?: string | undefined;
|
7475
|
-
titleColor?: string | undefined;
|
7476
|
-
titleFontSize?: number | undefined;
|
7477
|
-
titleFontWeight?: number | undefined;
|
7478
|
-
} | undefined;
|
7479
|
-
grid?: {
|
7480
|
-
visible?: boolean | undefined;
|
7481
|
-
gridColor?: string | undefined;
|
7482
|
-
gridWidth?: number | undefined;
|
7483
|
-
} | undefined;
|
7686
|
+
tooltip?: {
|
7687
|
+
enable?: boolean | undefined;
|
7484
7688
|
} | undefined;
|
7485
|
-
|
7486
|
-
|
7487
|
-
|
7488
|
-
|
7489
|
-
|
7490
|
-
|
7689
|
+
legend?: {
|
7690
|
+
enable?: boolean | undefined;
|
7691
|
+
border?: boolean | undefined;
|
7692
|
+
maxSize?: number | undefined;
|
7693
|
+
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
7694
|
+
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
7695
|
+
labelFontSize?: number | undefined;
|
7696
|
+
labelFontColor?: string | undefined;
|
7697
|
+
labelFontWeight?: string | number | undefined;
|
7491
7698
|
} | undefined;
|
7492
7699
|
} | undefined;
|
7493
7700
|
funnel?: {
|
7494
7701
|
backgroundColor?: string | undefined;
|
7702
|
+
label?: {
|
7703
|
+
enable?: boolean | undefined;
|
7704
|
+
} | undefined;
|
7495
7705
|
color?: {
|
7496
7706
|
colorScheme?: string[] | undefined;
|
7497
7707
|
colorMapping?: Record<string, string> | undefined;
|
@@ -7499,9 +7709,29 @@ export declare class Builder implements VSeedBuilder {
|
|
7499
7709
|
tooltip?: {
|
7500
7710
|
enable?: boolean | undefined;
|
7501
7711
|
} | undefined;
|
7712
|
+
legend?: {
|
7713
|
+
enable?: boolean | undefined;
|
7714
|
+
border?: boolean | undefined;
|
7715
|
+
maxSize?: number | undefined;
|
7716
|
+
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
7717
|
+
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
7718
|
+
labelFontSize?: number | undefined;
|
7719
|
+
labelFontColor?: string | undefined;
|
7720
|
+
labelFontWeight?: string | number | undefined;
|
7721
|
+
} | undefined;
|
7722
|
+
} | undefined;
|
7723
|
+
heatmap?: {
|
7724
|
+
backgroundColor?: string | undefined;
|
7502
7725
|
label?: {
|
7503
7726
|
enable?: boolean | undefined;
|
7504
7727
|
} | undefined;
|
7728
|
+
color?: {
|
7729
|
+
colorScheme?: string[] | undefined;
|
7730
|
+
colorMapping?: Record<string, string> | undefined;
|
7731
|
+
} | undefined;
|
7732
|
+
tooltip?: {
|
7733
|
+
enable?: boolean | undefined;
|
7734
|
+
} | undefined;
|
7505
7735
|
legend?: {
|
7506
7736
|
enable?: boolean | undefined;
|
7507
7737
|
border?: boolean | undefined;
|
@@ -8860,98 +9090,6 @@ export declare class Builder implements VSeedBuilder {
|
|
8860
9090
|
labelBackgroundColor?: string | undefined;
|
8861
9091
|
} | undefined;
|
8862
9092
|
} | undefined;
|
8863
|
-
rose?: {
|
8864
|
-
backgroundColor?: string | undefined;
|
8865
|
-
label?: {
|
8866
|
-
enable?: boolean | undefined;
|
8867
|
-
} | undefined;
|
8868
|
-
color?: {
|
8869
|
-
colorScheme?: string[] | undefined;
|
8870
|
-
colorMapping?: Record<string, string> | undefined;
|
8871
|
-
} | undefined;
|
8872
|
-
tooltip?: {
|
8873
|
-
enable?: boolean | undefined;
|
8874
|
-
} | undefined;
|
8875
|
-
legend?: {
|
8876
|
-
enable?: boolean | undefined;
|
8877
|
-
border?: boolean | undefined;
|
8878
|
-
maxSize?: number | undefined;
|
8879
|
-
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
8880
|
-
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
8881
|
-
labelFontSize?: number | undefined;
|
8882
|
-
labelFontColor?: string | undefined;
|
8883
|
-
labelFontWeight?: string | number | undefined;
|
8884
|
-
} | undefined;
|
8885
|
-
} | undefined;
|
8886
|
-
roseParallel?: {
|
8887
|
-
backgroundColor?: string | undefined;
|
8888
|
-
label?: {
|
8889
|
-
enable?: boolean | undefined;
|
8890
|
-
} | undefined;
|
8891
|
-
color?: {
|
8892
|
-
colorScheme?: string[] | undefined;
|
8893
|
-
colorMapping?: Record<string, string> | undefined;
|
8894
|
-
} | undefined;
|
8895
|
-
tooltip?: {
|
8896
|
-
enable?: boolean | undefined;
|
8897
|
-
} | undefined;
|
8898
|
-
legend?: {
|
8899
|
-
enable?: boolean | undefined;
|
8900
|
-
border?: boolean | undefined;
|
8901
|
-
maxSize?: number | undefined;
|
8902
|
-
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
8903
|
-
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
8904
|
-
labelFontSize?: number | undefined;
|
8905
|
-
labelFontColor?: string | undefined;
|
8906
|
-
labelFontWeight?: string | number | undefined;
|
8907
|
-
} | undefined;
|
8908
|
-
} | undefined;
|
8909
|
-
pie?: {
|
8910
|
-
backgroundColor?: string | undefined;
|
8911
|
-
label?: {
|
8912
|
-
enable?: boolean | undefined;
|
8913
|
-
} | undefined;
|
8914
|
-
color?: {
|
8915
|
-
colorScheme?: string[] | undefined;
|
8916
|
-
colorMapping?: Record<string, string> | undefined;
|
8917
|
-
} | undefined;
|
8918
|
-
tooltip?: {
|
8919
|
-
enable?: boolean | undefined;
|
8920
|
-
} | undefined;
|
8921
|
-
legend?: {
|
8922
|
-
enable?: boolean | undefined;
|
8923
|
-
border?: boolean | undefined;
|
8924
|
-
maxSize?: number | undefined;
|
8925
|
-
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
8926
|
-
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
8927
|
-
labelFontSize?: number | undefined;
|
8928
|
-
labelFontColor?: string | undefined;
|
8929
|
-
labelFontWeight?: string | number | undefined;
|
8930
|
-
} | undefined;
|
8931
|
-
} | undefined;
|
8932
|
-
donut?: {
|
8933
|
-
backgroundColor?: string | undefined;
|
8934
|
-
label?: {
|
8935
|
-
enable?: boolean | undefined;
|
8936
|
-
} | undefined;
|
8937
|
-
color?: {
|
8938
|
-
colorScheme?: string[] | undefined;
|
8939
|
-
colorMapping?: Record<string, string> | undefined;
|
8940
|
-
} | undefined;
|
8941
|
-
tooltip?: {
|
8942
|
-
enable?: boolean | undefined;
|
8943
|
-
} | undefined;
|
8944
|
-
legend?: {
|
8945
|
-
enable?: boolean | undefined;
|
8946
|
-
border?: boolean | undefined;
|
8947
|
-
maxSize?: number | undefined;
|
8948
|
-
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
8949
|
-
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
8950
|
-
labelFontSize?: number | undefined;
|
8951
|
-
labelFontColor?: string | undefined;
|
8952
|
-
labelFontWeight?: string | number | undefined;
|
8953
|
-
} | undefined;
|
8954
|
-
} | undefined;
|
8955
9093
|
dualAxis?: {
|
8956
9094
|
backgroundColor?: string | undefined;
|
8957
9095
|
label?: {
|
@@ -9077,16 +9215,134 @@ export declare class Builder implements VSeedBuilder {
|
|
9077
9215
|
gridWidth?: number | undefined;
|
9078
9216
|
} | undefined;
|
9079
9217
|
} | undefined;
|
9080
|
-
crosshairLine?: {
|
9081
|
-
visible?: boolean | undefined;
|
9082
|
-
lineColor?: string | undefined;
|
9083
|
-
labelColor?: string | undefined;
|
9084
|
-
labelVisible?: boolean | undefined;
|
9085
|
-
labelBackgroundColor?: string | undefined;
|
9218
|
+
crosshairLine?: {
|
9219
|
+
visible?: boolean | undefined;
|
9220
|
+
lineColor?: string | undefined;
|
9221
|
+
labelColor?: string | undefined;
|
9222
|
+
labelVisible?: boolean | undefined;
|
9223
|
+
labelBackgroundColor?: string | undefined;
|
9224
|
+
} | undefined;
|
9225
|
+
} | undefined;
|
9226
|
+
rose?: {
|
9227
|
+
backgroundColor?: string | undefined;
|
9228
|
+
label?: {
|
9229
|
+
enable?: boolean | undefined;
|
9230
|
+
} | undefined;
|
9231
|
+
color?: {
|
9232
|
+
colorScheme?: string[] | undefined;
|
9233
|
+
colorMapping?: Record<string, string> | undefined;
|
9234
|
+
} | undefined;
|
9235
|
+
tooltip?: {
|
9236
|
+
enable?: boolean | undefined;
|
9237
|
+
} | undefined;
|
9238
|
+
legend?: {
|
9239
|
+
enable?: boolean | undefined;
|
9240
|
+
border?: boolean | undefined;
|
9241
|
+
maxSize?: number | undefined;
|
9242
|
+
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
9243
|
+
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
9244
|
+
labelFontSize?: number | undefined;
|
9245
|
+
labelFontColor?: string | undefined;
|
9246
|
+
labelFontWeight?: string | number | undefined;
|
9247
|
+
} | undefined;
|
9248
|
+
} | undefined;
|
9249
|
+
roseParallel?: {
|
9250
|
+
backgroundColor?: string | undefined;
|
9251
|
+
label?: {
|
9252
|
+
enable?: boolean | undefined;
|
9253
|
+
} | undefined;
|
9254
|
+
color?: {
|
9255
|
+
colorScheme?: string[] | undefined;
|
9256
|
+
colorMapping?: Record<string, string> | undefined;
|
9257
|
+
} | undefined;
|
9258
|
+
tooltip?: {
|
9259
|
+
enable?: boolean | undefined;
|
9260
|
+
} | undefined;
|
9261
|
+
legend?: {
|
9262
|
+
enable?: boolean | undefined;
|
9263
|
+
border?: boolean | undefined;
|
9264
|
+
maxSize?: number | undefined;
|
9265
|
+
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
9266
|
+
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
9267
|
+
labelFontSize?: number | undefined;
|
9268
|
+
labelFontColor?: string | undefined;
|
9269
|
+
labelFontWeight?: string | number | undefined;
|
9270
|
+
} | undefined;
|
9271
|
+
} | undefined;
|
9272
|
+
pie?: {
|
9273
|
+
backgroundColor?: string | undefined;
|
9274
|
+
label?: {
|
9275
|
+
enable?: boolean | undefined;
|
9276
|
+
} | undefined;
|
9277
|
+
color?: {
|
9278
|
+
colorScheme?: string[] | undefined;
|
9279
|
+
colorMapping?: Record<string, string> | undefined;
|
9280
|
+
} | undefined;
|
9281
|
+
tooltip?: {
|
9282
|
+
enable?: boolean | undefined;
|
9283
|
+
} | undefined;
|
9284
|
+
legend?: {
|
9285
|
+
enable?: boolean | undefined;
|
9286
|
+
border?: boolean | undefined;
|
9287
|
+
maxSize?: number | undefined;
|
9288
|
+
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
9289
|
+
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
9290
|
+
labelFontSize?: number | undefined;
|
9291
|
+
labelFontColor?: string | undefined;
|
9292
|
+
labelFontWeight?: string | number | undefined;
|
9293
|
+
} | undefined;
|
9294
|
+
} | undefined;
|
9295
|
+
donut?: {
|
9296
|
+
backgroundColor?: string | undefined;
|
9297
|
+
label?: {
|
9298
|
+
enable?: boolean | undefined;
|
9299
|
+
} | undefined;
|
9300
|
+
color?: {
|
9301
|
+
colorScheme?: string[] | undefined;
|
9302
|
+
colorMapping?: Record<string, string> | undefined;
|
9303
|
+
} | undefined;
|
9304
|
+
tooltip?: {
|
9305
|
+
enable?: boolean | undefined;
|
9306
|
+
} | undefined;
|
9307
|
+
legend?: {
|
9308
|
+
enable?: boolean | undefined;
|
9309
|
+
border?: boolean | undefined;
|
9310
|
+
maxSize?: number | undefined;
|
9311
|
+
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
9312
|
+
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
9313
|
+
labelFontSize?: number | undefined;
|
9314
|
+
labelFontColor?: string | undefined;
|
9315
|
+
labelFontWeight?: string | number | undefined;
|
9316
|
+
} | undefined;
|
9317
|
+
} | undefined;
|
9318
|
+
radar?: {
|
9319
|
+
backgroundColor?: string | undefined;
|
9320
|
+
label?: {
|
9321
|
+
enable?: boolean | undefined;
|
9322
|
+
} | undefined;
|
9323
|
+
color?: {
|
9324
|
+
colorScheme?: string[] | undefined;
|
9325
|
+
colorMapping?: Record<string, string> | undefined;
|
9326
|
+
} | undefined;
|
9327
|
+
tooltip?: {
|
9328
|
+
enable?: boolean | undefined;
|
9329
|
+
} | undefined;
|
9330
|
+
legend?: {
|
9331
|
+
enable?: boolean | undefined;
|
9332
|
+
border?: boolean | undefined;
|
9333
|
+
maxSize?: number | undefined;
|
9334
|
+
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
9335
|
+
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
9336
|
+
labelFontSize?: number | undefined;
|
9337
|
+
labelFontColor?: string | undefined;
|
9338
|
+
labelFontWeight?: string | number | undefined;
|
9086
9339
|
} | undefined;
|
9087
9340
|
} | undefined;
|
9088
9341
|
funnel?: {
|
9089
9342
|
backgroundColor?: string | undefined;
|
9343
|
+
label?: {
|
9344
|
+
enable?: boolean | undefined;
|
9345
|
+
} | undefined;
|
9090
9346
|
color?: {
|
9091
9347
|
colorScheme?: string[] | undefined;
|
9092
9348
|
colorMapping?: Record<string, string> | undefined;
|
@@ -9094,9 +9350,29 @@ export declare class Builder implements VSeedBuilder {
|
|
9094
9350
|
tooltip?: {
|
9095
9351
|
enable?: boolean | undefined;
|
9096
9352
|
} | undefined;
|
9353
|
+
legend?: {
|
9354
|
+
enable?: boolean | undefined;
|
9355
|
+
border?: boolean | undefined;
|
9356
|
+
maxSize?: number | undefined;
|
9357
|
+
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
9358
|
+
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
9359
|
+
labelFontSize?: number | undefined;
|
9360
|
+
labelFontColor?: string | undefined;
|
9361
|
+
labelFontWeight?: string | number | undefined;
|
9362
|
+
} | undefined;
|
9363
|
+
} | undefined;
|
9364
|
+
heatmap?: {
|
9365
|
+
backgroundColor?: string | undefined;
|
9097
9366
|
label?: {
|
9098
9367
|
enable?: boolean | undefined;
|
9099
9368
|
} | undefined;
|
9369
|
+
color?: {
|
9370
|
+
colorScheme?: string[] | undefined;
|
9371
|
+
colorMapping?: Record<string, string> | undefined;
|
9372
|
+
} | undefined;
|
9373
|
+
tooltip?: {
|
9374
|
+
enable?: boolean | undefined;
|
9375
|
+
} | undefined;
|
9100
9376
|
legend?: {
|
9101
9377
|
enable?: boolean | undefined;
|
9102
9378
|
border?: boolean | undefined;
|
@@ -9433,7 +9709,7 @@ export declare class Builder implements VSeedBuilder {
|
|
9433
9709
|
locale: "zh-CN" | "en-US";
|
9434
9710
|
} | null;
|
9435
9711
|
set advancedVSeed(value: {
|
9436
|
-
chartType: "table" | "pivotTable" | "line" | "column" | "columnPercent" | "columnParallel" | "bar" | "barPercent" | "barParallel" | "area" | "areaPercent" | "areaRange" | "rose" | "roseParallel" | "pie" | "donut" | "
|
9712
|
+
chartType: "table" | "pivotTable" | "line" | "column" | "columnPercent" | "columnParallel" | "bar" | "barPercent" | "barParallel" | "area" | "areaPercent" | "areaRange" | "scatter" | "dualAxis" | "rose" | "roseParallel" | "pie" | "donut" | "radar" | "heatmap" | "funnel";
|
9437
9713
|
dataset: Record<string | number, any>[];
|
9438
9714
|
datasetReshapeInfo: {
|
9439
9715
|
id: string;
|
@@ -10603,7 +10879,7 @@ export declare class Builder implements VSeedBuilder {
|
|
10603
10879
|
labelBackgroundColor?: string | undefined;
|
10604
10880
|
} | undefined;
|
10605
10881
|
} | undefined;
|
10606
|
-
|
10882
|
+
dualAxis?: {
|
10607
10883
|
backgroundColor?: string | undefined;
|
10608
10884
|
label?: {
|
10609
10885
|
enable?: boolean | undefined;
|
@@ -10626,7 +10902,7 @@ export declare class Builder implements VSeedBuilder {
|
|
10626
10902
|
labelFontWeight?: string | number | undefined;
|
10627
10903
|
} | undefined;
|
10628
10904
|
} | undefined;
|
10629
|
-
|
10905
|
+
scatter?: {
|
10630
10906
|
backgroundColor?: string | undefined;
|
10631
10907
|
label?: {
|
10632
10908
|
enable?: boolean | undefined;
|
@@ -10648,8 +10924,95 @@ export declare class Builder implements VSeedBuilder {
|
|
10648
10924
|
labelFontColor?: string | undefined;
|
10649
10925
|
labelFontWeight?: string | number | undefined;
|
10650
10926
|
} | undefined;
|
10927
|
+
xAxis?: {
|
10928
|
+
visible?: boolean | undefined;
|
10929
|
+
min?: number | undefined;
|
10930
|
+
max?: number | undefined;
|
10931
|
+
nice?: boolean | undefined;
|
10932
|
+
zero?: boolean | undefined;
|
10933
|
+
log?: boolean | undefined;
|
10934
|
+
logBase?: number | undefined;
|
10935
|
+
inverse?: boolean | undefined;
|
10936
|
+
label?: {
|
10937
|
+
visible?: boolean | undefined;
|
10938
|
+
labelColor?: string | undefined;
|
10939
|
+
labelFontSize?: number | undefined;
|
10940
|
+
labelFontWeight?: number | undefined;
|
10941
|
+
labelAngle?: number | undefined;
|
10942
|
+
} | undefined;
|
10943
|
+
line?: {
|
10944
|
+
visible?: boolean | undefined;
|
10945
|
+
lineColor?: string | undefined;
|
10946
|
+
lineWidth?: number | undefined;
|
10947
|
+
} | undefined;
|
10948
|
+
tick?: {
|
10949
|
+
visible?: boolean | undefined;
|
10950
|
+
tickInside?: boolean | undefined;
|
10951
|
+
tickColor?: string | undefined;
|
10952
|
+
tickSize?: number | undefined;
|
10953
|
+
} | undefined;
|
10954
|
+
title?: {
|
10955
|
+
visible?: boolean | undefined;
|
10956
|
+
titleText?: string | undefined;
|
10957
|
+
titleColor?: string | undefined;
|
10958
|
+
titleFontSize?: number | undefined;
|
10959
|
+
titleFontWeight?: number | undefined;
|
10960
|
+
} | undefined;
|
10961
|
+
grid?: {
|
10962
|
+
visible?: boolean | undefined;
|
10963
|
+
gridColor?: string | undefined;
|
10964
|
+
gridWidth?: number | undefined;
|
10965
|
+
} | undefined;
|
10966
|
+
} | undefined;
|
10967
|
+
yAxis?: {
|
10968
|
+
visible?: boolean | undefined;
|
10969
|
+
min?: number | undefined;
|
10970
|
+
max?: number | undefined;
|
10971
|
+
nice?: boolean | undefined;
|
10972
|
+
zero?: boolean | undefined;
|
10973
|
+
log?: boolean | undefined;
|
10974
|
+
logBase?: number | undefined;
|
10975
|
+
inverse?: boolean | undefined;
|
10976
|
+
label?: {
|
10977
|
+
visible?: boolean | undefined;
|
10978
|
+
labelColor?: string | undefined;
|
10979
|
+
labelFontSize?: number | undefined;
|
10980
|
+
labelFontWeight?: number | undefined;
|
10981
|
+
labelAngle?: number | undefined;
|
10982
|
+
} | undefined;
|
10983
|
+
line?: {
|
10984
|
+
visible?: boolean | undefined;
|
10985
|
+
lineColor?: string | undefined;
|
10986
|
+
lineWidth?: number | undefined;
|
10987
|
+
} | undefined;
|
10988
|
+
tick?: {
|
10989
|
+
visible?: boolean | undefined;
|
10990
|
+
tickInside?: boolean | undefined;
|
10991
|
+
tickColor?: string | undefined;
|
10992
|
+
tickSize?: number | undefined;
|
10993
|
+
} | undefined;
|
10994
|
+
title?: {
|
10995
|
+
visible?: boolean | undefined;
|
10996
|
+
titleText?: string | undefined;
|
10997
|
+
titleColor?: string | undefined;
|
10998
|
+
titleFontSize?: number | undefined;
|
10999
|
+
titleFontWeight?: number | undefined;
|
11000
|
+
} | undefined;
|
11001
|
+
grid?: {
|
11002
|
+
visible?: boolean | undefined;
|
11003
|
+
gridColor?: string | undefined;
|
11004
|
+
gridWidth?: number | undefined;
|
11005
|
+
} | undefined;
|
11006
|
+
} | undefined;
|
11007
|
+
crosshairLine?: {
|
11008
|
+
visible?: boolean | undefined;
|
11009
|
+
lineColor?: string | undefined;
|
11010
|
+
labelColor?: string | undefined;
|
11011
|
+
labelVisible?: boolean | undefined;
|
11012
|
+
labelBackgroundColor?: string | undefined;
|
11013
|
+
} | undefined;
|
10651
11014
|
} | undefined;
|
10652
|
-
|
11015
|
+
rose?: {
|
10653
11016
|
backgroundColor?: string | undefined;
|
10654
11017
|
label?: {
|
10655
11018
|
enable?: boolean | undefined;
|
@@ -10672,7 +11035,7 @@ export declare class Builder implements VSeedBuilder {
|
|
10672
11035
|
labelFontWeight?: string | number | undefined;
|
10673
11036
|
} | undefined;
|
10674
11037
|
} | undefined;
|
10675
|
-
|
11038
|
+
roseParallel?: {
|
10676
11039
|
backgroundColor?: string | undefined;
|
10677
11040
|
label?: {
|
10678
11041
|
enable?: boolean | undefined;
|
@@ -10695,7 +11058,7 @@ export declare class Builder implements VSeedBuilder {
|
|
10695
11058
|
labelFontWeight?: string | number | undefined;
|
10696
11059
|
} | undefined;
|
10697
11060
|
} | undefined;
|
10698
|
-
|
11061
|
+
pie?: {
|
10699
11062
|
backgroundColor?: string | undefined;
|
10700
11063
|
label?: {
|
10701
11064
|
enable?: boolean | undefined;
|
@@ -10718,7 +11081,7 @@ export declare class Builder implements VSeedBuilder {
|
|
10718
11081
|
labelFontWeight?: string | number | undefined;
|
10719
11082
|
} | undefined;
|
10720
11083
|
} | undefined;
|
10721
|
-
|
11084
|
+
donut?: {
|
10722
11085
|
backgroundColor?: string | undefined;
|
10723
11086
|
label?: {
|
10724
11087
|
enable?: boolean | undefined;
|
@@ -10740,96 +11103,35 @@ export declare class Builder implements VSeedBuilder {
|
|
10740
11103
|
labelFontColor?: string | undefined;
|
10741
11104
|
labelFontWeight?: string | number | undefined;
|
10742
11105
|
} | undefined;
|
10743
|
-
|
10744
|
-
|
10745
|
-
|
10746
|
-
|
10747
|
-
|
10748
|
-
zero?: boolean | undefined;
|
10749
|
-
log?: boolean | undefined;
|
10750
|
-
logBase?: number | undefined;
|
10751
|
-
inverse?: boolean | undefined;
|
10752
|
-
label?: {
|
10753
|
-
visible?: boolean | undefined;
|
10754
|
-
labelColor?: string | undefined;
|
10755
|
-
labelFontSize?: number | undefined;
|
10756
|
-
labelFontWeight?: number | undefined;
|
10757
|
-
labelAngle?: number | undefined;
|
10758
|
-
} | undefined;
|
10759
|
-
line?: {
|
10760
|
-
visible?: boolean | undefined;
|
10761
|
-
lineColor?: string | undefined;
|
10762
|
-
lineWidth?: number | undefined;
|
10763
|
-
} | undefined;
|
10764
|
-
tick?: {
|
10765
|
-
visible?: boolean | undefined;
|
10766
|
-
tickInside?: boolean | undefined;
|
10767
|
-
tickColor?: string | undefined;
|
10768
|
-
tickSize?: number | undefined;
|
10769
|
-
} | undefined;
|
10770
|
-
title?: {
|
10771
|
-
visible?: boolean | undefined;
|
10772
|
-
titleText?: string | undefined;
|
10773
|
-
titleColor?: string | undefined;
|
10774
|
-
titleFontSize?: number | undefined;
|
10775
|
-
titleFontWeight?: number | undefined;
|
10776
|
-
} | undefined;
|
10777
|
-
grid?: {
|
10778
|
-
visible?: boolean | undefined;
|
10779
|
-
gridColor?: string | undefined;
|
10780
|
-
gridWidth?: number | undefined;
|
10781
|
-
} | undefined;
|
11106
|
+
} | undefined;
|
11107
|
+
radar?: {
|
11108
|
+
backgroundColor?: string | undefined;
|
11109
|
+
label?: {
|
11110
|
+
enable?: boolean | undefined;
|
10782
11111
|
} | undefined;
|
10783
|
-
|
10784
|
-
|
10785
|
-
|
10786
|
-
max?: number | undefined;
|
10787
|
-
nice?: boolean | undefined;
|
10788
|
-
zero?: boolean | undefined;
|
10789
|
-
log?: boolean | undefined;
|
10790
|
-
logBase?: number | undefined;
|
10791
|
-
inverse?: boolean | undefined;
|
10792
|
-
label?: {
|
10793
|
-
visible?: boolean | undefined;
|
10794
|
-
labelColor?: string | undefined;
|
10795
|
-
labelFontSize?: number | undefined;
|
10796
|
-
labelFontWeight?: number | undefined;
|
10797
|
-
labelAngle?: number | undefined;
|
10798
|
-
} | undefined;
|
10799
|
-
line?: {
|
10800
|
-
visible?: boolean | undefined;
|
10801
|
-
lineColor?: string | undefined;
|
10802
|
-
lineWidth?: number | undefined;
|
10803
|
-
} | undefined;
|
10804
|
-
tick?: {
|
10805
|
-
visible?: boolean | undefined;
|
10806
|
-
tickInside?: boolean | undefined;
|
10807
|
-
tickColor?: string | undefined;
|
10808
|
-
tickSize?: number | undefined;
|
10809
|
-
} | undefined;
|
10810
|
-
title?: {
|
10811
|
-
visible?: boolean | undefined;
|
10812
|
-
titleText?: string | undefined;
|
10813
|
-
titleColor?: string | undefined;
|
10814
|
-
titleFontSize?: number | undefined;
|
10815
|
-
titleFontWeight?: number | undefined;
|
10816
|
-
} | undefined;
|
10817
|
-
grid?: {
|
10818
|
-
visible?: boolean | undefined;
|
10819
|
-
gridColor?: string | undefined;
|
10820
|
-
gridWidth?: number | undefined;
|
10821
|
-
} | undefined;
|
11112
|
+
color?: {
|
11113
|
+
colorScheme?: string[] | undefined;
|
11114
|
+
colorMapping?: Record<string, string> | undefined;
|
10822
11115
|
} | undefined;
|
10823
|
-
|
10824
|
-
|
10825
|
-
|
10826
|
-
|
10827
|
-
|
10828
|
-
|
11116
|
+
tooltip?: {
|
11117
|
+
enable?: boolean | undefined;
|
11118
|
+
} | undefined;
|
11119
|
+
legend?: {
|
11120
|
+
enable?: boolean | undefined;
|
11121
|
+
border?: boolean | undefined;
|
11122
|
+
maxSize?: number | undefined;
|
11123
|
+
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
11124
|
+
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
11125
|
+
labelFontSize?: number | undefined;
|
11126
|
+
labelFontColor?: string | undefined;
|
11127
|
+
labelFontWeight?: string | number | undefined;
|
10829
11128
|
} | undefined;
|
10830
11129
|
} | undefined;
|
10831
11130
|
funnel?: {
|
10832
11131
|
backgroundColor?: string | undefined;
|
11132
|
+
label?: {
|
11133
|
+
enable?: boolean | undefined;
|
11134
|
+
} | undefined;
|
10833
11135
|
color?: {
|
10834
11136
|
colorScheme?: string[] | undefined;
|
10835
11137
|
colorMapping?: Record<string, string> | undefined;
|
@@ -10837,9 +11139,29 @@ export declare class Builder implements VSeedBuilder {
|
|
10837
11139
|
tooltip?: {
|
10838
11140
|
enable?: boolean | undefined;
|
10839
11141
|
} | undefined;
|
11142
|
+
legend?: {
|
11143
|
+
enable?: boolean | undefined;
|
11144
|
+
border?: boolean | undefined;
|
11145
|
+
maxSize?: number | undefined;
|
11146
|
+
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
11147
|
+
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
11148
|
+
labelFontSize?: number | undefined;
|
11149
|
+
labelFontColor?: string | undefined;
|
11150
|
+
labelFontWeight?: string | number | undefined;
|
11151
|
+
} | undefined;
|
11152
|
+
} | undefined;
|
11153
|
+
heatmap?: {
|
11154
|
+
backgroundColor?: string | undefined;
|
10840
11155
|
label?: {
|
10841
11156
|
enable?: boolean | undefined;
|
10842
11157
|
} | undefined;
|
11158
|
+
color?: {
|
11159
|
+
colorScheme?: string[] | undefined;
|
11160
|
+
colorMapping?: Record<string, string> | undefined;
|
11161
|
+
} | undefined;
|
11162
|
+
tooltip?: {
|
11163
|
+
enable?: boolean | undefined;
|
11164
|
+
} | undefined;
|
10843
11165
|
legend?: {
|
10844
11166
|
enable?: boolean | undefined;
|
10845
11167
|
border?: boolean | undefined;
|
@@ -12198,7 +12520,7 @@ export declare class Builder implements VSeedBuilder {
|
|
12198
12520
|
labelBackgroundColor?: string | undefined;
|
12199
12521
|
} | undefined;
|
12200
12522
|
} | undefined;
|
12201
|
-
|
12523
|
+
dualAxis?: {
|
12202
12524
|
backgroundColor?: string | undefined;
|
12203
12525
|
label?: {
|
12204
12526
|
enable?: boolean | undefined;
|
@@ -12221,7 +12543,7 @@ export declare class Builder implements VSeedBuilder {
|
|
12221
12543
|
labelFontWeight?: string | number | undefined;
|
12222
12544
|
} | undefined;
|
12223
12545
|
} | undefined;
|
12224
|
-
|
12546
|
+
scatter?: {
|
12225
12547
|
backgroundColor?: string | undefined;
|
12226
12548
|
label?: {
|
12227
12549
|
enable?: boolean | undefined;
|
@@ -12243,8 +12565,95 @@ export declare class Builder implements VSeedBuilder {
|
|
12243
12565
|
labelFontColor?: string | undefined;
|
12244
12566
|
labelFontWeight?: string | number | undefined;
|
12245
12567
|
} | undefined;
|
12568
|
+
xAxis?: {
|
12569
|
+
visible?: boolean | undefined;
|
12570
|
+
min?: number | undefined;
|
12571
|
+
max?: number | undefined;
|
12572
|
+
nice?: boolean | undefined;
|
12573
|
+
zero?: boolean | undefined;
|
12574
|
+
log?: boolean | undefined;
|
12575
|
+
logBase?: number | undefined;
|
12576
|
+
inverse?: boolean | undefined;
|
12577
|
+
label?: {
|
12578
|
+
visible?: boolean | undefined;
|
12579
|
+
labelColor?: string | undefined;
|
12580
|
+
labelFontSize?: number | undefined;
|
12581
|
+
labelFontWeight?: number | undefined;
|
12582
|
+
labelAngle?: number | undefined;
|
12583
|
+
} | undefined;
|
12584
|
+
line?: {
|
12585
|
+
visible?: boolean | undefined;
|
12586
|
+
lineColor?: string | undefined;
|
12587
|
+
lineWidth?: number | undefined;
|
12588
|
+
} | undefined;
|
12589
|
+
tick?: {
|
12590
|
+
visible?: boolean | undefined;
|
12591
|
+
tickInside?: boolean | undefined;
|
12592
|
+
tickColor?: string | undefined;
|
12593
|
+
tickSize?: number | undefined;
|
12594
|
+
} | undefined;
|
12595
|
+
title?: {
|
12596
|
+
visible?: boolean | undefined;
|
12597
|
+
titleText?: string | undefined;
|
12598
|
+
titleColor?: string | undefined;
|
12599
|
+
titleFontSize?: number | undefined;
|
12600
|
+
titleFontWeight?: number | undefined;
|
12601
|
+
} | undefined;
|
12602
|
+
grid?: {
|
12603
|
+
visible?: boolean | undefined;
|
12604
|
+
gridColor?: string | undefined;
|
12605
|
+
gridWidth?: number | undefined;
|
12606
|
+
} | undefined;
|
12607
|
+
} | undefined;
|
12608
|
+
yAxis?: {
|
12609
|
+
visible?: boolean | undefined;
|
12610
|
+
min?: number | undefined;
|
12611
|
+
max?: number | undefined;
|
12612
|
+
nice?: boolean | undefined;
|
12613
|
+
zero?: boolean | undefined;
|
12614
|
+
log?: boolean | undefined;
|
12615
|
+
logBase?: number | undefined;
|
12616
|
+
inverse?: boolean | undefined;
|
12617
|
+
label?: {
|
12618
|
+
visible?: boolean | undefined;
|
12619
|
+
labelColor?: string | undefined;
|
12620
|
+
labelFontSize?: number | undefined;
|
12621
|
+
labelFontWeight?: number | undefined;
|
12622
|
+
labelAngle?: number | undefined;
|
12623
|
+
} | undefined;
|
12624
|
+
line?: {
|
12625
|
+
visible?: boolean | undefined;
|
12626
|
+
lineColor?: string | undefined;
|
12627
|
+
lineWidth?: number | undefined;
|
12628
|
+
} | undefined;
|
12629
|
+
tick?: {
|
12630
|
+
visible?: boolean | undefined;
|
12631
|
+
tickInside?: boolean | undefined;
|
12632
|
+
tickColor?: string | undefined;
|
12633
|
+
tickSize?: number | undefined;
|
12634
|
+
} | undefined;
|
12635
|
+
title?: {
|
12636
|
+
visible?: boolean | undefined;
|
12637
|
+
titleText?: string | undefined;
|
12638
|
+
titleColor?: string | undefined;
|
12639
|
+
titleFontSize?: number | undefined;
|
12640
|
+
titleFontWeight?: number | undefined;
|
12641
|
+
} | undefined;
|
12642
|
+
grid?: {
|
12643
|
+
visible?: boolean | undefined;
|
12644
|
+
gridColor?: string | undefined;
|
12645
|
+
gridWidth?: number | undefined;
|
12646
|
+
} | undefined;
|
12647
|
+
} | undefined;
|
12648
|
+
crosshairLine?: {
|
12649
|
+
visible?: boolean | undefined;
|
12650
|
+
lineColor?: string | undefined;
|
12651
|
+
labelColor?: string | undefined;
|
12652
|
+
labelVisible?: boolean | undefined;
|
12653
|
+
labelBackgroundColor?: string | undefined;
|
12654
|
+
} | undefined;
|
12246
12655
|
} | undefined;
|
12247
|
-
|
12656
|
+
rose?: {
|
12248
12657
|
backgroundColor?: string | undefined;
|
12249
12658
|
label?: {
|
12250
12659
|
enable?: boolean | undefined;
|
@@ -12267,7 +12676,7 @@ export declare class Builder implements VSeedBuilder {
|
|
12267
12676
|
labelFontWeight?: string | number | undefined;
|
12268
12677
|
} | undefined;
|
12269
12678
|
} | undefined;
|
12270
|
-
|
12679
|
+
roseParallel?: {
|
12271
12680
|
backgroundColor?: string | undefined;
|
12272
12681
|
label?: {
|
12273
12682
|
enable?: boolean | undefined;
|
@@ -12290,7 +12699,7 @@ export declare class Builder implements VSeedBuilder {
|
|
12290
12699
|
labelFontWeight?: string | number | undefined;
|
12291
12700
|
} | undefined;
|
12292
12701
|
} | undefined;
|
12293
|
-
|
12702
|
+
pie?: {
|
12294
12703
|
backgroundColor?: string | undefined;
|
12295
12704
|
label?: {
|
12296
12705
|
enable?: boolean | undefined;
|
@@ -12313,7 +12722,7 @@ export declare class Builder implements VSeedBuilder {
|
|
12313
12722
|
labelFontWeight?: string | number | undefined;
|
12314
12723
|
} | undefined;
|
12315
12724
|
} | undefined;
|
12316
|
-
|
12725
|
+
donut?: {
|
12317
12726
|
backgroundColor?: string | undefined;
|
12318
12727
|
label?: {
|
12319
12728
|
enable?: boolean | undefined;
|
@@ -12335,96 +12744,35 @@ export declare class Builder implements VSeedBuilder {
|
|
12335
12744
|
labelFontColor?: string | undefined;
|
12336
12745
|
labelFontWeight?: string | number | undefined;
|
12337
12746
|
} | undefined;
|
12338
|
-
|
12339
|
-
|
12340
|
-
|
12341
|
-
|
12342
|
-
|
12343
|
-
zero?: boolean | undefined;
|
12344
|
-
log?: boolean | undefined;
|
12345
|
-
logBase?: number | undefined;
|
12346
|
-
inverse?: boolean | undefined;
|
12347
|
-
label?: {
|
12348
|
-
visible?: boolean | undefined;
|
12349
|
-
labelColor?: string | undefined;
|
12350
|
-
labelFontSize?: number | undefined;
|
12351
|
-
labelFontWeight?: number | undefined;
|
12352
|
-
labelAngle?: number | undefined;
|
12353
|
-
} | undefined;
|
12354
|
-
line?: {
|
12355
|
-
visible?: boolean | undefined;
|
12356
|
-
lineColor?: string | undefined;
|
12357
|
-
lineWidth?: number | undefined;
|
12358
|
-
} | undefined;
|
12359
|
-
tick?: {
|
12360
|
-
visible?: boolean | undefined;
|
12361
|
-
tickInside?: boolean | undefined;
|
12362
|
-
tickColor?: string | undefined;
|
12363
|
-
tickSize?: number | undefined;
|
12364
|
-
} | undefined;
|
12365
|
-
title?: {
|
12366
|
-
visible?: boolean | undefined;
|
12367
|
-
titleText?: string | undefined;
|
12368
|
-
titleColor?: string | undefined;
|
12369
|
-
titleFontSize?: number | undefined;
|
12370
|
-
titleFontWeight?: number | undefined;
|
12371
|
-
} | undefined;
|
12372
|
-
grid?: {
|
12373
|
-
visible?: boolean | undefined;
|
12374
|
-
gridColor?: string | undefined;
|
12375
|
-
gridWidth?: number | undefined;
|
12376
|
-
} | undefined;
|
12747
|
+
} | undefined;
|
12748
|
+
radar?: {
|
12749
|
+
backgroundColor?: string | undefined;
|
12750
|
+
label?: {
|
12751
|
+
enable?: boolean | undefined;
|
12377
12752
|
} | undefined;
|
12378
|
-
|
12379
|
-
|
12380
|
-
|
12381
|
-
max?: number | undefined;
|
12382
|
-
nice?: boolean | undefined;
|
12383
|
-
zero?: boolean | undefined;
|
12384
|
-
log?: boolean | undefined;
|
12385
|
-
logBase?: number | undefined;
|
12386
|
-
inverse?: boolean | undefined;
|
12387
|
-
label?: {
|
12388
|
-
visible?: boolean | undefined;
|
12389
|
-
labelColor?: string | undefined;
|
12390
|
-
labelFontSize?: number | undefined;
|
12391
|
-
labelFontWeight?: number | undefined;
|
12392
|
-
labelAngle?: number | undefined;
|
12393
|
-
} | undefined;
|
12394
|
-
line?: {
|
12395
|
-
visible?: boolean | undefined;
|
12396
|
-
lineColor?: string | undefined;
|
12397
|
-
lineWidth?: number | undefined;
|
12398
|
-
} | undefined;
|
12399
|
-
tick?: {
|
12400
|
-
visible?: boolean | undefined;
|
12401
|
-
tickInside?: boolean | undefined;
|
12402
|
-
tickColor?: string | undefined;
|
12403
|
-
tickSize?: number | undefined;
|
12404
|
-
} | undefined;
|
12405
|
-
title?: {
|
12406
|
-
visible?: boolean | undefined;
|
12407
|
-
titleText?: string | undefined;
|
12408
|
-
titleColor?: string | undefined;
|
12409
|
-
titleFontSize?: number | undefined;
|
12410
|
-
titleFontWeight?: number | undefined;
|
12411
|
-
} | undefined;
|
12412
|
-
grid?: {
|
12413
|
-
visible?: boolean | undefined;
|
12414
|
-
gridColor?: string | undefined;
|
12415
|
-
gridWidth?: number | undefined;
|
12416
|
-
} | undefined;
|
12753
|
+
color?: {
|
12754
|
+
colorScheme?: string[] | undefined;
|
12755
|
+
colorMapping?: Record<string, string> | undefined;
|
12417
12756
|
} | undefined;
|
12418
|
-
|
12419
|
-
|
12420
|
-
|
12421
|
-
|
12422
|
-
|
12423
|
-
|
12757
|
+
tooltip?: {
|
12758
|
+
enable?: boolean | undefined;
|
12759
|
+
} | undefined;
|
12760
|
+
legend?: {
|
12761
|
+
enable?: boolean | undefined;
|
12762
|
+
border?: boolean | undefined;
|
12763
|
+
maxSize?: number | undefined;
|
12764
|
+
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
12765
|
+
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
12766
|
+
labelFontSize?: number | undefined;
|
12767
|
+
labelFontColor?: string | undefined;
|
12768
|
+
labelFontWeight?: string | number | undefined;
|
12424
12769
|
} | undefined;
|
12425
12770
|
} | undefined;
|
12426
12771
|
funnel?: {
|
12427
12772
|
backgroundColor?: string | undefined;
|
12773
|
+
label?: {
|
12774
|
+
enable?: boolean | undefined;
|
12775
|
+
} | undefined;
|
12428
12776
|
color?: {
|
12429
12777
|
colorScheme?: string[] | undefined;
|
12430
12778
|
colorMapping?: Record<string, string> | undefined;
|
@@ -12432,9 +12780,29 @@ export declare class Builder implements VSeedBuilder {
|
|
12432
12780
|
tooltip?: {
|
12433
12781
|
enable?: boolean | undefined;
|
12434
12782
|
} | undefined;
|
12783
|
+
legend?: {
|
12784
|
+
enable?: boolean | undefined;
|
12785
|
+
border?: boolean | undefined;
|
12786
|
+
maxSize?: number | undefined;
|
12787
|
+
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | undefined;
|
12788
|
+
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | undefined;
|
12789
|
+
labelFontSize?: number | undefined;
|
12790
|
+
labelFontColor?: string | undefined;
|
12791
|
+
labelFontWeight?: string | number | undefined;
|
12792
|
+
} | undefined;
|
12793
|
+
} | undefined;
|
12794
|
+
heatmap?: {
|
12795
|
+
backgroundColor?: string | undefined;
|
12435
12796
|
label?: {
|
12436
12797
|
enable?: boolean | undefined;
|
12437
12798
|
} | undefined;
|
12799
|
+
color?: {
|
12800
|
+
colorScheme?: string[] | undefined;
|
12801
|
+
colorMapping?: Record<string, string> | undefined;
|
12802
|
+
} | undefined;
|
12803
|
+
tooltip?: {
|
12804
|
+
enable?: boolean | undefined;
|
12805
|
+
} | undefined;
|
12438
12806
|
legend?: {
|
12439
12807
|
enable?: boolean | undefined;
|
12440
12808
|
border?: boolean | undefined;
|