@visactor/vseed 0.3.10 → 0.3.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (79) hide show
  1. package/dist/cjs/index.cjs +1 -1
  2. package/dist/cjs/index.cjs.map +1 -1
  3. package/dist/esm/builder/builder/builder.d.ts +1428 -0
  4. package/dist/esm/pipeline/advanced/chart/pipes/config/boxplot.js +1 -1
  5. package/dist/esm/pipeline/advanced/chart/pipes/config/boxplot.js.map +1 -1
  6. package/dist/esm/pipeline/advanced/chart/pipes/config/column.js +3 -2
  7. package/dist/esm/pipeline/advanced/chart/pipes/config/column.js.map +1 -1
  8. package/dist/esm/pipeline/advanced/chart/pipes/config/dualAxis.js +1 -1
  9. package/dist/esm/pipeline/advanced/chart/pipes/config/dualAxis.js.map +1 -1
  10. package/dist/esm/pipeline/advanced/chart/pipes/config/heatmap.js +3 -2
  11. package/dist/esm/pipeline/advanced/chart/pipes/config/heatmap.js.map +1 -1
  12. package/dist/esm/pipeline/advanced/chart/pipes/config/histogram.js +1 -1
  13. package/dist/esm/pipeline/advanced/chart/pipes/config/histogram.js.map +1 -1
  14. package/dist/esm/pipeline/advanced/chart/pipes/config/line.js +3 -2
  15. package/dist/esm/pipeline/advanced/chart/pipes/config/line.js.map +1 -1
  16. package/dist/esm/pipeline/advanced/chart/pipes/config/pie.js +2 -1
  17. package/dist/esm/pipeline/advanced/chart/pipes/config/pie.js.map +1 -1
  18. package/dist/esm/pipeline/advanced/chart/pipes/config/scatter.js +2 -1
  19. package/dist/esm/pipeline/advanced/chart/pipes/config/scatter.js.map +1 -1
  20. package/dist/esm/pipeline/spec/chart/pipes/player/playerAdapter.js +50 -5
  21. package/dist/esm/pipeline/spec/chart/pipes/player/playerAdapter.js.map +1 -1
  22. package/dist/esm/theme/common/index.d.ts +1 -0
  23. package/dist/esm/theme/common/index.js +1 -0
  24. package/dist/esm/theme/common/player.d.ts +3 -0
  25. package/dist/esm/theme/common/player.js +39 -0
  26. package/dist/esm/theme/common/player.js.map +1 -0
  27. package/dist/esm/theme/dark/dark.js +33 -15
  28. package/dist/esm/theme/dark/dark.js.map +1 -1
  29. package/dist/esm/theme/light/light.js +18 -1
  30. package/dist/esm/theme/light/light.js.map +1 -1
  31. package/dist/esm/types/advancedVSeed.d.ts +646 -0
  32. package/dist/esm/types/chartType/column/zColumn.d.ts +14 -0
  33. package/dist/esm/types/chartType/columnParallel/zColumnParallel.d.ts +14 -0
  34. package/dist/esm/types/properties/config/area.d.ts +38 -0
  35. package/dist/esm/types/properties/config/area.js +2 -0
  36. package/dist/esm/types/properties/config/area.js.map +1 -1
  37. package/dist/esm/types/properties/config/bar.d.ts +57 -0
  38. package/dist/esm/types/properties/config/bar.js +2 -0
  39. package/dist/esm/types/properties/config/bar.js.map +1 -1
  40. package/dist/esm/types/properties/config/column.d.ts +57 -0
  41. package/dist/esm/types/properties/config/column.js +2 -0
  42. package/dist/esm/types/properties/config/column.js.map +1 -1
  43. package/dist/esm/types/properties/config/config.d.ts +323 -0
  44. package/dist/esm/types/properties/config/funnel.d.ts +19 -0
  45. package/dist/esm/types/properties/config/funnel.js +2 -0
  46. package/dist/esm/types/properties/config/funnel.js.map +1 -1
  47. package/dist/esm/types/properties/config/heatmap.d.ts +19 -0
  48. package/dist/esm/types/properties/config/heatmap.js +2 -0
  49. package/dist/esm/types/properties/config/heatmap.js.map +1 -1
  50. package/dist/esm/types/properties/config/line.d.ts +19 -0
  51. package/dist/esm/types/properties/config/line.js +3 -1
  52. package/dist/esm/types/properties/config/line.js.map +1 -1
  53. package/dist/esm/types/properties/config/pie.d.ts +57 -0
  54. package/dist/esm/types/properties/config/pie.js +2 -0
  55. package/dist/esm/types/properties/config/pie.js.map +1 -1
  56. package/dist/esm/types/properties/config/player/player.d.ts +54 -0
  57. package/dist/esm/types/properties/config/player/zPlayer.d.ts +20 -0
  58. package/dist/esm/types/properties/config/player/zPlayer.js +23 -0
  59. package/dist/esm/types/properties/config/player/zPlayer.js.map +1 -0
  60. package/dist/esm/types/properties/config/rose.d.ts +38 -0
  61. package/dist/esm/types/properties/config/rose.js +2 -0
  62. package/dist/esm/types/properties/config/rose.js.map +1 -1
  63. package/dist/esm/types/properties/config/scatter.d.ts +19 -0
  64. package/dist/esm/types/properties/config/scatter.js +2 -0
  65. package/dist/esm/types/properties/config/scatter.js.map +1 -1
  66. package/dist/esm/types/properties/index.d.ts +1 -1
  67. package/dist/esm/types/properties/index.js +1 -1
  68. package/dist/esm/types/properties/theme/customTheme.d.ts +646 -0
  69. package/dist/esm/types/zVseed.d.ts +28 -0
  70. package/dist/umd/index.js +178 -36
  71. package/dist/umd/index.js.map +1 -1
  72. package/package.json +1 -1
  73. package/dist/esm/types/properties/player/player.d.ts +0 -22
  74. package/dist/esm/types/properties/player/zPlayer.d.ts +0 -6
  75. package/dist/esm/types/properties/player/zPlayer.js +0 -9
  76. package/dist/esm/types/properties/player/zPlayer.js.map +0 -1
  77. /package/dist/esm/types/properties/{player → config/player}/index.d.ts +0 -0
  78. /package/dist/esm/types/properties/{player → config/player}/index.js +0 -0
  79. /package/dist/esm/types/properties/{player → config/player}/player.js +0 -0
@@ -513,6 +513,20 @@ export declare class Builder implements VSeedBuilder {
513
513
  lineWidth?: number | undefined;
514
514
  } | undefined;
515
515
  } | null | undefined;
516
+ player?: {
517
+ field: string;
518
+ interval?: number | undefined;
519
+ autoPlay?: boolean | undefined;
520
+ loop?: boolean | undefined;
521
+ position?: "left" | "top" | "right" | "bottom" | undefined;
522
+ railColor?: string | undefined;
523
+ trackColor?: string | undefined;
524
+ sliderHandleColor?: string | undefined;
525
+ startButtonColor?: string | undefined;
526
+ pauseButtonColor?: string | undefined;
527
+ backwardButtonColor?: string | undefined;
528
+ forwardButtonColor?: string | undefined;
529
+ } | null | undefined;
516
530
  } | null | undefined;
517
531
  column?: {
518
532
  backgroundColor?: string | null | undefined;
@@ -595,6 +609,20 @@ export declare class Builder implements VSeedBuilder {
595
609
  labelFontSize?: number | null | undefined;
596
610
  labelFontWeight?: string | number | null | undefined;
597
611
  } | null | undefined;
612
+ player?: {
613
+ field: string;
614
+ interval?: number | undefined;
615
+ autoPlay?: boolean | undefined;
616
+ loop?: boolean | undefined;
617
+ position?: "left" | "top" | "right" | "bottom" | undefined;
618
+ railColor?: string | undefined;
619
+ trackColor?: string | undefined;
620
+ sliderHandleColor?: string | undefined;
621
+ startButtonColor?: string | undefined;
622
+ pauseButtonColor?: string | undefined;
623
+ backwardButtonColor?: string | undefined;
624
+ forwardButtonColor?: string | undefined;
625
+ } | null | undefined;
598
626
  xAxis?: {
599
627
  visible?: boolean | null | undefined;
600
628
  labelAutoHide?: boolean | null | undefined;
@@ -1066,6 +1094,20 @@ export declare class Builder implements VSeedBuilder {
1066
1094
  labelFontSize?: number | null | undefined;
1067
1095
  labelFontWeight?: string | number | null | undefined;
1068
1096
  } | null | undefined;
1097
+ player?: {
1098
+ field: string;
1099
+ interval?: number | undefined;
1100
+ autoPlay?: boolean | undefined;
1101
+ loop?: boolean | undefined;
1102
+ position?: "left" | "top" | "right" | "bottom" | undefined;
1103
+ railColor?: string | undefined;
1104
+ trackColor?: string | undefined;
1105
+ sliderHandleColor?: string | undefined;
1106
+ startButtonColor?: string | undefined;
1107
+ pauseButtonColor?: string | undefined;
1108
+ backwardButtonColor?: string | undefined;
1109
+ forwardButtonColor?: string | undefined;
1110
+ } | null | undefined;
1069
1111
  xAxis?: {
1070
1112
  visible?: boolean | null | undefined;
1071
1113
  labelAutoHide?: boolean | null | undefined;
@@ -1363,6 +1405,20 @@ export declare class Builder implements VSeedBuilder {
1363
1405
  labelFontSize?: number | null | undefined;
1364
1406
  labelFontWeight?: string | number | null | undefined;
1365
1407
  } | null | undefined;
1408
+ player?: {
1409
+ field: string;
1410
+ interval?: number | undefined;
1411
+ autoPlay?: boolean | undefined;
1412
+ loop?: boolean | undefined;
1413
+ position?: "left" | "top" | "right" | "bottom" | undefined;
1414
+ railColor?: string | undefined;
1415
+ trackColor?: string | undefined;
1416
+ sliderHandleColor?: string | undefined;
1417
+ startButtonColor?: string | undefined;
1418
+ pauseButtonColor?: string | undefined;
1419
+ backwardButtonColor?: string | undefined;
1420
+ forwardButtonColor?: string | undefined;
1421
+ } | null | undefined;
1366
1422
  xAxis?: {
1367
1423
  visible?: boolean | null | undefined;
1368
1424
  labelAutoHide?: boolean | null | undefined;
@@ -1660,6 +1716,20 @@ export declare class Builder implements VSeedBuilder {
1660
1716
  labelFontSize?: number | null | undefined;
1661
1717
  labelFontWeight?: string | number | null | undefined;
1662
1718
  } | null | undefined;
1719
+ player?: {
1720
+ field: string;
1721
+ interval?: number | undefined;
1722
+ autoPlay?: boolean | undefined;
1723
+ loop?: boolean | undefined;
1724
+ position?: "left" | "top" | "right" | "bottom" | undefined;
1725
+ railColor?: string | undefined;
1726
+ trackColor?: string | undefined;
1727
+ sliderHandleColor?: string | undefined;
1728
+ startButtonColor?: string | undefined;
1729
+ pauseButtonColor?: string | undefined;
1730
+ backwardButtonColor?: string | undefined;
1731
+ forwardButtonColor?: string | undefined;
1732
+ } | null | undefined;
1663
1733
  xAxis?: {
1664
1734
  visible?: boolean | null | undefined;
1665
1735
  min?: number | null | undefined;
@@ -1955,6 +2025,20 @@ export declare class Builder implements VSeedBuilder {
1955
2025
  labelFontSize?: number | null | undefined;
1956
2026
  labelFontWeight?: string | number | null | undefined;
1957
2027
  } | null | undefined;
2028
+ player?: {
2029
+ field: string;
2030
+ interval?: number | undefined;
2031
+ autoPlay?: boolean | undefined;
2032
+ loop?: boolean | undefined;
2033
+ position?: "left" | "top" | "right" | "bottom" | undefined;
2034
+ railColor?: string | undefined;
2035
+ trackColor?: string | undefined;
2036
+ sliderHandleColor?: string | undefined;
2037
+ startButtonColor?: string | undefined;
2038
+ pauseButtonColor?: string | undefined;
2039
+ backwardButtonColor?: string | undefined;
2040
+ forwardButtonColor?: string | undefined;
2041
+ } | null | undefined;
1958
2042
  xAxis?: {
1959
2043
  visible?: boolean | null | undefined;
1960
2044
  min?: number | null | undefined;
@@ -2250,6 +2334,20 @@ export declare class Builder implements VSeedBuilder {
2250
2334
  labelFontSize?: number | null | undefined;
2251
2335
  labelFontWeight?: string | number | null | undefined;
2252
2336
  } | null | undefined;
2337
+ player?: {
2338
+ field: string;
2339
+ interval?: number | undefined;
2340
+ autoPlay?: boolean | undefined;
2341
+ loop?: boolean | undefined;
2342
+ position?: "left" | "top" | "right" | "bottom" | undefined;
2343
+ railColor?: string | undefined;
2344
+ trackColor?: string | undefined;
2345
+ sliderHandleColor?: string | undefined;
2346
+ startButtonColor?: string | undefined;
2347
+ pauseButtonColor?: string | undefined;
2348
+ backwardButtonColor?: string | undefined;
2349
+ forwardButtonColor?: string | undefined;
2350
+ } | null | undefined;
2253
2351
  xAxis?: {
2254
2352
  visible?: boolean | null | undefined;
2255
2353
  min?: number | null | undefined;
@@ -2545,6 +2643,20 @@ export declare class Builder implements VSeedBuilder {
2545
2643
  labelFontSize?: number | null | undefined;
2546
2644
  labelFontWeight?: string | number | null | undefined;
2547
2645
  } | null | undefined;
2646
+ player?: {
2647
+ field: string;
2648
+ interval?: number | undefined;
2649
+ autoPlay?: boolean | undefined;
2650
+ loop?: boolean | undefined;
2651
+ position?: "left" | "top" | "right" | "bottom" | undefined;
2652
+ railColor?: string | undefined;
2653
+ trackColor?: string | undefined;
2654
+ sliderHandleColor?: string | undefined;
2655
+ startButtonColor?: string | undefined;
2656
+ pauseButtonColor?: string | undefined;
2657
+ backwardButtonColor?: string | undefined;
2658
+ forwardButtonColor?: string | undefined;
2659
+ } | null | undefined;
2548
2660
  xAxis?: {
2549
2661
  visible?: boolean | null | undefined;
2550
2662
  labelAutoHide?: boolean | null | undefined;
@@ -2840,6 +2952,20 @@ export declare class Builder implements VSeedBuilder {
2840
2952
  labelFontSize?: number | null | undefined;
2841
2953
  labelFontWeight?: string | number | null | undefined;
2842
2954
  } | null | undefined;
2955
+ player?: {
2956
+ field: string;
2957
+ interval?: number | undefined;
2958
+ autoPlay?: boolean | undefined;
2959
+ loop?: boolean | undefined;
2960
+ position?: "left" | "top" | "right" | "bottom" | undefined;
2961
+ railColor?: string | undefined;
2962
+ trackColor?: string | undefined;
2963
+ sliderHandleColor?: string | undefined;
2964
+ startButtonColor?: string | undefined;
2965
+ pauseButtonColor?: string | undefined;
2966
+ backwardButtonColor?: string | undefined;
2967
+ forwardButtonColor?: string | undefined;
2968
+ } | null | undefined;
2843
2969
  xAxis?: {
2844
2970
  visible?: boolean | null | undefined;
2845
2971
  labelAutoHide?: boolean | null | undefined;
@@ -3135,6 +3261,20 @@ export declare class Builder implements VSeedBuilder {
3135
3261
  labelFontSize?: number | null | undefined;
3136
3262
  labelFontWeight?: string | number | null | undefined;
3137
3263
  } | null | undefined;
3264
+ player?: {
3265
+ field: string;
3266
+ interval?: number | undefined;
3267
+ autoPlay?: boolean | undefined;
3268
+ loop?: boolean | undefined;
3269
+ position?: "left" | "top" | "right" | "bottom" | undefined;
3270
+ railColor?: string | undefined;
3271
+ trackColor?: string | undefined;
3272
+ sliderHandleColor?: string | undefined;
3273
+ startButtonColor?: string | undefined;
3274
+ pauseButtonColor?: string | undefined;
3275
+ backwardButtonColor?: string | undefined;
3276
+ forwardButtonColor?: string | undefined;
3277
+ } | null | undefined;
3138
3278
  xAxis?: {
3139
3279
  visible?: boolean | null | undefined;
3140
3280
  min?: number | null | undefined;
@@ -4059,6 +4199,20 @@ export declare class Builder implements VSeedBuilder {
4059
4199
  labelFontSize?: number | null | undefined;
4060
4200
  labelFontWeight?: string | number | null | undefined;
4061
4201
  } | null | undefined;
4202
+ player?: {
4203
+ field: string;
4204
+ interval?: number | undefined;
4205
+ autoPlay?: boolean | undefined;
4206
+ loop?: boolean | undefined;
4207
+ position?: "left" | "top" | "right" | "bottom" | undefined;
4208
+ railColor?: string | undefined;
4209
+ trackColor?: string | undefined;
4210
+ sliderHandleColor?: string | undefined;
4211
+ startButtonColor?: string | undefined;
4212
+ pauseButtonColor?: string | undefined;
4213
+ backwardButtonColor?: string | undefined;
4214
+ forwardButtonColor?: string | undefined;
4215
+ } | null | undefined;
4062
4216
  pivotGrid?: {
4063
4217
  borderColor?: string | null | undefined;
4064
4218
  bodyFontColor?: string | null | undefined;
@@ -4159,6 +4313,20 @@ export declare class Builder implements VSeedBuilder {
4159
4313
  labelFontSize?: number | null | undefined;
4160
4314
  labelFontWeight?: string | number | null | undefined;
4161
4315
  } | null | undefined;
4316
+ player?: {
4317
+ field: string;
4318
+ interval?: number | undefined;
4319
+ autoPlay?: boolean | undefined;
4320
+ loop?: boolean | undefined;
4321
+ position?: "left" | "top" | "right" | "bottom" | undefined;
4322
+ railColor?: string | undefined;
4323
+ trackColor?: string | undefined;
4324
+ sliderHandleColor?: string | undefined;
4325
+ startButtonColor?: string | undefined;
4326
+ pauseButtonColor?: string | undefined;
4327
+ backwardButtonColor?: string | undefined;
4328
+ forwardButtonColor?: string | undefined;
4329
+ } | null | undefined;
4162
4330
  pivotGrid?: {
4163
4331
  borderColor?: string | null | undefined;
4164
4332
  bodyFontColor?: string | null | undefined;
@@ -4259,6 +4427,20 @@ export declare class Builder implements VSeedBuilder {
4259
4427
  labelFontSize?: number | null | undefined;
4260
4428
  labelFontWeight?: string | number | null | undefined;
4261
4429
  } | null | undefined;
4430
+ player?: {
4431
+ field: string;
4432
+ interval?: number | undefined;
4433
+ autoPlay?: boolean | undefined;
4434
+ loop?: boolean | undefined;
4435
+ position?: "left" | "top" | "right" | "bottom" | undefined;
4436
+ railColor?: string | undefined;
4437
+ trackColor?: string | undefined;
4438
+ sliderHandleColor?: string | undefined;
4439
+ startButtonColor?: string | undefined;
4440
+ pauseButtonColor?: string | undefined;
4441
+ backwardButtonColor?: string | undefined;
4442
+ forwardButtonColor?: string | undefined;
4443
+ } | null | undefined;
4262
4444
  pivotGrid?: {
4263
4445
  borderColor?: string | null | undefined;
4264
4446
  bodyFontColor?: string | null | undefined;
@@ -4373,6 +4555,20 @@ export declare class Builder implements VSeedBuilder {
4373
4555
  labelFontSize?: number | null | undefined;
4374
4556
  labelFontWeight?: string | number | null | undefined;
4375
4557
  } | null | undefined;
4558
+ player?: {
4559
+ field: string;
4560
+ interval?: number | undefined;
4561
+ autoPlay?: boolean | undefined;
4562
+ loop?: boolean | undefined;
4563
+ position?: "left" | "top" | "right" | "bottom" | undefined;
4564
+ railColor?: string | undefined;
4565
+ trackColor?: string | undefined;
4566
+ sliderHandleColor?: string | undefined;
4567
+ startButtonColor?: string | undefined;
4568
+ pauseButtonColor?: string | undefined;
4569
+ backwardButtonColor?: string | undefined;
4570
+ forwardButtonColor?: string | undefined;
4571
+ } | null | undefined;
4376
4572
  pivotGrid?: {
4377
4573
  borderColor?: string | null | undefined;
4378
4574
  bodyFontColor?: string | null | undefined;
@@ -4487,6 +4683,20 @@ export declare class Builder implements VSeedBuilder {
4487
4683
  labelFontSize?: number | null | undefined;
4488
4684
  labelFontWeight?: string | number | null | undefined;
4489
4685
  } | null | undefined;
4686
+ player?: {
4687
+ field: string;
4688
+ interval?: number | undefined;
4689
+ autoPlay?: boolean | undefined;
4690
+ loop?: boolean | undefined;
4691
+ position?: "left" | "top" | "right" | "bottom" | undefined;
4692
+ railColor?: string | undefined;
4693
+ trackColor?: string | undefined;
4694
+ sliderHandleColor?: string | undefined;
4695
+ startButtonColor?: string | undefined;
4696
+ pauseButtonColor?: string | undefined;
4697
+ backwardButtonColor?: string | undefined;
4698
+ forwardButtonColor?: string | undefined;
4699
+ } | null | undefined;
4490
4700
  pivotGrid?: {
4491
4701
  borderColor?: string | null | undefined;
4492
4702
  bodyFontColor?: string | null | undefined;
@@ -4600,6 +4810,20 @@ export declare class Builder implements VSeedBuilder {
4600
4810
  labelFontSize?: number | null | undefined;
4601
4811
  labelFontWeight?: string | number | null | undefined;
4602
4812
  } | null | undefined;
4813
+ player?: {
4814
+ field: string;
4815
+ interval?: number | undefined;
4816
+ autoPlay?: boolean | undefined;
4817
+ loop?: boolean | undefined;
4818
+ position?: "left" | "top" | "right" | "bottom" | undefined;
4819
+ railColor?: string | undefined;
4820
+ trackColor?: string | undefined;
4821
+ sliderHandleColor?: string | undefined;
4822
+ startButtonColor?: string | undefined;
4823
+ pauseButtonColor?: string | undefined;
4824
+ backwardButtonColor?: string | undefined;
4825
+ forwardButtonColor?: string | undefined;
4826
+ } | null | undefined;
4603
4827
  pivotGrid?: {
4604
4828
  borderColor?: string | null | undefined;
4605
4829
  bodyFontColor?: string | null | undefined;
@@ -4700,6 +4924,20 @@ export declare class Builder implements VSeedBuilder {
4700
4924
  labelFontSize?: number | null | undefined;
4701
4925
  labelFontWeight?: string | number | null | undefined;
4702
4926
  } | null | undefined;
4927
+ player?: {
4928
+ field: string;
4929
+ interval?: number | undefined;
4930
+ autoPlay?: boolean | undefined;
4931
+ loop?: boolean | undefined;
4932
+ position?: "left" | "top" | "right" | "bottom" | undefined;
4933
+ railColor?: string | undefined;
4934
+ trackColor?: string | undefined;
4935
+ sliderHandleColor?: string | undefined;
4936
+ startButtonColor?: string | undefined;
4937
+ pauseButtonColor?: string | undefined;
4938
+ backwardButtonColor?: string | undefined;
4939
+ forwardButtonColor?: string | undefined;
4940
+ } | null | undefined;
4703
4941
  pivotGrid?: {
4704
4942
  borderColor?: string | null | undefined;
4705
4943
  bodyFontColor?: string | null | undefined;
@@ -6306,6 +6544,20 @@ export declare class Builder implements VSeedBuilder {
6306
6544
  lineWidth?: number | undefined;
6307
6545
  } | undefined;
6308
6546
  } | null | undefined;
6547
+ player?: {
6548
+ field: string;
6549
+ interval?: number | undefined;
6550
+ autoPlay?: boolean | undefined;
6551
+ loop?: boolean | undefined;
6552
+ position?: "left" | "top" | "right" | "bottom" | undefined;
6553
+ railColor?: string | undefined;
6554
+ trackColor?: string | undefined;
6555
+ sliderHandleColor?: string | undefined;
6556
+ startButtonColor?: string | undefined;
6557
+ pauseButtonColor?: string | undefined;
6558
+ backwardButtonColor?: string | undefined;
6559
+ forwardButtonColor?: string | undefined;
6560
+ } | null | undefined;
6309
6561
  } | null | undefined;
6310
6562
  column?: {
6311
6563
  backgroundColor?: string | null | undefined;
@@ -6388,6 +6640,20 @@ export declare class Builder implements VSeedBuilder {
6388
6640
  labelFontSize?: number | null | undefined;
6389
6641
  labelFontWeight?: string | number | null | undefined;
6390
6642
  } | null | undefined;
6643
+ player?: {
6644
+ field: string;
6645
+ interval?: number | undefined;
6646
+ autoPlay?: boolean | undefined;
6647
+ loop?: boolean | undefined;
6648
+ position?: "left" | "top" | "right" | "bottom" | undefined;
6649
+ railColor?: string | undefined;
6650
+ trackColor?: string | undefined;
6651
+ sliderHandleColor?: string | undefined;
6652
+ startButtonColor?: string | undefined;
6653
+ pauseButtonColor?: string | undefined;
6654
+ backwardButtonColor?: string | undefined;
6655
+ forwardButtonColor?: string | undefined;
6656
+ } | null | undefined;
6391
6657
  xAxis?: {
6392
6658
  visible?: boolean | null | undefined;
6393
6659
  labelAutoHide?: boolean | null | undefined;
@@ -6859,6 +7125,20 @@ export declare class Builder implements VSeedBuilder {
6859
7125
  labelFontSize?: number | null | undefined;
6860
7126
  labelFontWeight?: string | number | null | undefined;
6861
7127
  } | null | undefined;
7128
+ player?: {
7129
+ field: string;
7130
+ interval?: number | undefined;
7131
+ autoPlay?: boolean | undefined;
7132
+ loop?: boolean | undefined;
7133
+ position?: "left" | "top" | "right" | "bottom" | undefined;
7134
+ railColor?: string | undefined;
7135
+ trackColor?: string | undefined;
7136
+ sliderHandleColor?: string | undefined;
7137
+ startButtonColor?: string | undefined;
7138
+ pauseButtonColor?: string | undefined;
7139
+ backwardButtonColor?: string | undefined;
7140
+ forwardButtonColor?: string | undefined;
7141
+ } | null | undefined;
6862
7142
  xAxis?: {
6863
7143
  visible?: boolean | null | undefined;
6864
7144
  labelAutoHide?: boolean | null | undefined;
@@ -7156,6 +7436,20 @@ export declare class Builder implements VSeedBuilder {
7156
7436
  labelFontSize?: number | null | undefined;
7157
7437
  labelFontWeight?: string | number | null | undefined;
7158
7438
  } | null | undefined;
7439
+ player?: {
7440
+ field: string;
7441
+ interval?: number | undefined;
7442
+ autoPlay?: boolean | undefined;
7443
+ loop?: boolean | undefined;
7444
+ position?: "left" | "top" | "right" | "bottom" | undefined;
7445
+ railColor?: string | undefined;
7446
+ trackColor?: string | undefined;
7447
+ sliderHandleColor?: string | undefined;
7448
+ startButtonColor?: string | undefined;
7449
+ pauseButtonColor?: string | undefined;
7450
+ backwardButtonColor?: string | undefined;
7451
+ forwardButtonColor?: string | undefined;
7452
+ } | null | undefined;
7159
7453
  xAxis?: {
7160
7454
  visible?: boolean | null | undefined;
7161
7455
  labelAutoHide?: boolean | null | undefined;
@@ -7453,6 +7747,20 @@ export declare class Builder implements VSeedBuilder {
7453
7747
  labelFontSize?: number | null | undefined;
7454
7748
  labelFontWeight?: string | number | null | undefined;
7455
7749
  } | null | undefined;
7750
+ player?: {
7751
+ field: string;
7752
+ interval?: number | undefined;
7753
+ autoPlay?: boolean | undefined;
7754
+ loop?: boolean | undefined;
7755
+ position?: "left" | "top" | "right" | "bottom" | undefined;
7756
+ railColor?: string | undefined;
7757
+ trackColor?: string | undefined;
7758
+ sliderHandleColor?: string | undefined;
7759
+ startButtonColor?: string | undefined;
7760
+ pauseButtonColor?: string | undefined;
7761
+ backwardButtonColor?: string | undefined;
7762
+ forwardButtonColor?: string | undefined;
7763
+ } | null | undefined;
7456
7764
  xAxis?: {
7457
7765
  visible?: boolean | null | undefined;
7458
7766
  min?: number | null | undefined;
@@ -7748,6 +8056,20 @@ export declare class Builder implements VSeedBuilder {
7748
8056
  labelFontSize?: number | null | undefined;
7749
8057
  labelFontWeight?: string | number | null | undefined;
7750
8058
  } | null | undefined;
8059
+ player?: {
8060
+ field: string;
8061
+ interval?: number | undefined;
8062
+ autoPlay?: boolean | undefined;
8063
+ loop?: boolean | undefined;
8064
+ position?: "left" | "top" | "right" | "bottom" | undefined;
8065
+ railColor?: string | undefined;
8066
+ trackColor?: string | undefined;
8067
+ sliderHandleColor?: string | undefined;
8068
+ startButtonColor?: string | undefined;
8069
+ pauseButtonColor?: string | undefined;
8070
+ backwardButtonColor?: string | undefined;
8071
+ forwardButtonColor?: string | undefined;
8072
+ } | null | undefined;
7751
8073
  xAxis?: {
7752
8074
  visible?: boolean | null | undefined;
7753
8075
  min?: number | null | undefined;
@@ -8043,6 +8365,20 @@ export declare class Builder implements VSeedBuilder {
8043
8365
  labelFontSize?: number | null | undefined;
8044
8366
  labelFontWeight?: string | number | null | undefined;
8045
8367
  } | null | undefined;
8368
+ player?: {
8369
+ field: string;
8370
+ interval?: number | undefined;
8371
+ autoPlay?: boolean | undefined;
8372
+ loop?: boolean | undefined;
8373
+ position?: "left" | "top" | "right" | "bottom" | undefined;
8374
+ railColor?: string | undefined;
8375
+ trackColor?: string | undefined;
8376
+ sliderHandleColor?: string | undefined;
8377
+ startButtonColor?: string | undefined;
8378
+ pauseButtonColor?: string | undefined;
8379
+ backwardButtonColor?: string | undefined;
8380
+ forwardButtonColor?: string | undefined;
8381
+ } | null | undefined;
8046
8382
  xAxis?: {
8047
8383
  visible?: boolean | null | undefined;
8048
8384
  min?: number | null | undefined;
@@ -8338,6 +8674,20 @@ export declare class Builder implements VSeedBuilder {
8338
8674
  labelFontSize?: number | null | undefined;
8339
8675
  labelFontWeight?: string | number | null | undefined;
8340
8676
  } | null | undefined;
8677
+ player?: {
8678
+ field: string;
8679
+ interval?: number | undefined;
8680
+ autoPlay?: boolean | undefined;
8681
+ loop?: boolean | undefined;
8682
+ position?: "left" | "top" | "right" | "bottom" | undefined;
8683
+ railColor?: string | undefined;
8684
+ trackColor?: string | undefined;
8685
+ sliderHandleColor?: string | undefined;
8686
+ startButtonColor?: string | undefined;
8687
+ pauseButtonColor?: string | undefined;
8688
+ backwardButtonColor?: string | undefined;
8689
+ forwardButtonColor?: string | undefined;
8690
+ } | null | undefined;
8341
8691
  xAxis?: {
8342
8692
  visible?: boolean | null | undefined;
8343
8693
  labelAutoHide?: boolean | null | undefined;
@@ -8633,6 +8983,20 @@ export declare class Builder implements VSeedBuilder {
8633
8983
  labelFontSize?: number | null | undefined;
8634
8984
  labelFontWeight?: string | number | null | undefined;
8635
8985
  } | null | undefined;
8986
+ player?: {
8987
+ field: string;
8988
+ interval?: number | undefined;
8989
+ autoPlay?: boolean | undefined;
8990
+ loop?: boolean | undefined;
8991
+ position?: "left" | "top" | "right" | "bottom" | undefined;
8992
+ railColor?: string | undefined;
8993
+ trackColor?: string | undefined;
8994
+ sliderHandleColor?: string | undefined;
8995
+ startButtonColor?: string | undefined;
8996
+ pauseButtonColor?: string | undefined;
8997
+ backwardButtonColor?: string | undefined;
8998
+ forwardButtonColor?: string | undefined;
8999
+ } | null | undefined;
8636
9000
  xAxis?: {
8637
9001
  visible?: boolean | null | undefined;
8638
9002
  labelAutoHide?: boolean | null | undefined;
@@ -8928,6 +9292,20 @@ export declare class Builder implements VSeedBuilder {
8928
9292
  labelFontSize?: number | null | undefined;
8929
9293
  labelFontWeight?: string | number | null | undefined;
8930
9294
  } | null | undefined;
9295
+ player?: {
9296
+ field: string;
9297
+ interval?: number | undefined;
9298
+ autoPlay?: boolean | undefined;
9299
+ loop?: boolean | undefined;
9300
+ position?: "left" | "top" | "right" | "bottom" | undefined;
9301
+ railColor?: string | undefined;
9302
+ trackColor?: string | undefined;
9303
+ sliderHandleColor?: string | undefined;
9304
+ startButtonColor?: string | undefined;
9305
+ pauseButtonColor?: string | undefined;
9306
+ backwardButtonColor?: string | undefined;
9307
+ forwardButtonColor?: string | undefined;
9308
+ } | null | undefined;
8931
9309
  xAxis?: {
8932
9310
  visible?: boolean | null | undefined;
8933
9311
  min?: number | null | undefined;
@@ -9852,6 +10230,20 @@ export declare class Builder implements VSeedBuilder {
9852
10230
  labelFontSize?: number | null | undefined;
9853
10231
  labelFontWeight?: string | number | null | undefined;
9854
10232
  } | null | undefined;
10233
+ player?: {
10234
+ field: string;
10235
+ interval?: number | undefined;
10236
+ autoPlay?: boolean | undefined;
10237
+ loop?: boolean | undefined;
10238
+ position?: "left" | "top" | "right" | "bottom" | undefined;
10239
+ railColor?: string | undefined;
10240
+ trackColor?: string | undefined;
10241
+ sliderHandleColor?: string | undefined;
10242
+ startButtonColor?: string | undefined;
10243
+ pauseButtonColor?: string | undefined;
10244
+ backwardButtonColor?: string | undefined;
10245
+ forwardButtonColor?: string | undefined;
10246
+ } | null | undefined;
9855
10247
  pivotGrid?: {
9856
10248
  borderColor?: string | null | undefined;
9857
10249
  bodyFontColor?: string | null | undefined;
@@ -9952,6 +10344,20 @@ export declare class Builder implements VSeedBuilder {
9952
10344
  labelFontSize?: number | null | undefined;
9953
10345
  labelFontWeight?: string | number | null | undefined;
9954
10346
  } | null | undefined;
10347
+ player?: {
10348
+ field: string;
10349
+ interval?: number | undefined;
10350
+ autoPlay?: boolean | undefined;
10351
+ loop?: boolean | undefined;
10352
+ position?: "left" | "top" | "right" | "bottom" | undefined;
10353
+ railColor?: string | undefined;
10354
+ trackColor?: string | undefined;
10355
+ sliderHandleColor?: string | undefined;
10356
+ startButtonColor?: string | undefined;
10357
+ pauseButtonColor?: string | undefined;
10358
+ backwardButtonColor?: string | undefined;
10359
+ forwardButtonColor?: string | undefined;
10360
+ } | null | undefined;
9955
10361
  pivotGrid?: {
9956
10362
  borderColor?: string | null | undefined;
9957
10363
  bodyFontColor?: string | null | undefined;
@@ -10052,6 +10458,20 @@ export declare class Builder implements VSeedBuilder {
10052
10458
  labelFontSize?: number | null | undefined;
10053
10459
  labelFontWeight?: string | number | null | undefined;
10054
10460
  } | null | undefined;
10461
+ player?: {
10462
+ field: string;
10463
+ interval?: number | undefined;
10464
+ autoPlay?: boolean | undefined;
10465
+ loop?: boolean | undefined;
10466
+ position?: "left" | "top" | "right" | "bottom" | undefined;
10467
+ railColor?: string | undefined;
10468
+ trackColor?: string | undefined;
10469
+ sliderHandleColor?: string | undefined;
10470
+ startButtonColor?: string | undefined;
10471
+ pauseButtonColor?: string | undefined;
10472
+ backwardButtonColor?: string | undefined;
10473
+ forwardButtonColor?: string | undefined;
10474
+ } | null | undefined;
10055
10475
  pivotGrid?: {
10056
10476
  borderColor?: string | null | undefined;
10057
10477
  bodyFontColor?: string | null | undefined;
@@ -10166,6 +10586,20 @@ export declare class Builder implements VSeedBuilder {
10166
10586
  labelFontSize?: number | null | undefined;
10167
10587
  labelFontWeight?: string | number | null | undefined;
10168
10588
  } | null | undefined;
10589
+ player?: {
10590
+ field: string;
10591
+ interval?: number | undefined;
10592
+ autoPlay?: boolean | undefined;
10593
+ loop?: boolean | undefined;
10594
+ position?: "left" | "top" | "right" | "bottom" | undefined;
10595
+ railColor?: string | undefined;
10596
+ trackColor?: string | undefined;
10597
+ sliderHandleColor?: string | undefined;
10598
+ startButtonColor?: string | undefined;
10599
+ pauseButtonColor?: string | undefined;
10600
+ backwardButtonColor?: string | undefined;
10601
+ forwardButtonColor?: string | undefined;
10602
+ } | null | undefined;
10169
10603
  pivotGrid?: {
10170
10604
  borderColor?: string | null | undefined;
10171
10605
  bodyFontColor?: string | null | undefined;
@@ -10280,6 +10714,20 @@ export declare class Builder implements VSeedBuilder {
10280
10714
  labelFontSize?: number | null | undefined;
10281
10715
  labelFontWeight?: string | number | null | undefined;
10282
10716
  } | null | undefined;
10717
+ player?: {
10718
+ field: string;
10719
+ interval?: number | undefined;
10720
+ autoPlay?: boolean | undefined;
10721
+ loop?: boolean | undefined;
10722
+ position?: "left" | "top" | "right" | "bottom" | undefined;
10723
+ railColor?: string | undefined;
10724
+ trackColor?: string | undefined;
10725
+ sliderHandleColor?: string | undefined;
10726
+ startButtonColor?: string | undefined;
10727
+ pauseButtonColor?: string | undefined;
10728
+ backwardButtonColor?: string | undefined;
10729
+ forwardButtonColor?: string | undefined;
10730
+ } | null | undefined;
10283
10731
  pivotGrid?: {
10284
10732
  borderColor?: string | null | undefined;
10285
10733
  bodyFontColor?: string | null | undefined;
@@ -10393,6 +10841,20 @@ export declare class Builder implements VSeedBuilder {
10393
10841
  labelFontSize?: number | null | undefined;
10394
10842
  labelFontWeight?: string | number | null | undefined;
10395
10843
  } | null | undefined;
10844
+ player?: {
10845
+ field: string;
10846
+ interval?: number | undefined;
10847
+ autoPlay?: boolean | undefined;
10848
+ loop?: boolean | undefined;
10849
+ position?: "left" | "top" | "right" | "bottom" | undefined;
10850
+ railColor?: string | undefined;
10851
+ trackColor?: string | undefined;
10852
+ sliderHandleColor?: string | undefined;
10853
+ startButtonColor?: string | undefined;
10854
+ pauseButtonColor?: string | undefined;
10855
+ backwardButtonColor?: string | undefined;
10856
+ forwardButtonColor?: string | undefined;
10857
+ } | null | undefined;
10396
10858
  pivotGrid?: {
10397
10859
  borderColor?: string | null | undefined;
10398
10860
  bodyFontColor?: string | null | undefined;
@@ -10493,6 +10955,20 @@ export declare class Builder implements VSeedBuilder {
10493
10955
  labelFontSize?: number | null | undefined;
10494
10956
  labelFontWeight?: string | number | null | undefined;
10495
10957
  } | null | undefined;
10958
+ player?: {
10959
+ field: string;
10960
+ interval?: number | undefined;
10961
+ autoPlay?: boolean | undefined;
10962
+ loop?: boolean | undefined;
10963
+ position?: "left" | "top" | "right" | "bottom" | undefined;
10964
+ railColor?: string | undefined;
10965
+ trackColor?: string | undefined;
10966
+ sliderHandleColor?: string | undefined;
10967
+ startButtonColor?: string | undefined;
10968
+ pauseButtonColor?: string | undefined;
10969
+ backwardButtonColor?: string | undefined;
10970
+ forwardButtonColor?: string | undefined;
10971
+ } | null | undefined;
10496
10972
  pivotGrid?: {
10497
10973
  borderColor?: string | null | undefined;
10498
10974
  bodyFontColor?: string | null | undefined;
@@ -12365,6 +12841,20 @@ export declare class Builder implements VSeedBuilder {
12365
12841
  lineWidth?: number | undefined;
12366
12842
  } | undefined;
12367
12843
  } | null | undefined;
12844
+ player?: {
12845
+ field: string;
12846
+ interval?: number | undefined;
12847
+ autoPlay?: boolean | undefined;
12848
+ loop?: boolean | undefined;
12849
+ position?: "left" | "top" | "right" | "bottom" | undefined;
12850
+ railColor?: string | undefined;
12851
+ trackColor?: string | undefined;
12852
+ sliderHandleColor?: string | undefined;
12853
+ startButtonColor?: string | undefined;
12854
+ pauseButtonColor?: string | undefined;
12855
+ backwardButtonColor?: string | undefined;
12856
+ forwardButtonColor?: string | undefined;
12857
+ } | null | undefined;
12368
12858
  } | null | undefined;
12369
12859
  column?: {
12370
12860
  backgroundColor?: string | null | undefined;
@@ -12447,6 +12937,20 @@ export declare class Builder implements VSeedBuilder {
12447
12937
  labelFontSize?: number | null | undefined;
12448
12938
  labelFontWeight?: string | number | null | undefined;
12449
12939
  } | null | undefined;
12940
+ player?: {
12941
+ field: string;
12942
+ interval?: number | undefined;
12943
+ autoPlay?: boolean | undefined;
12944
+ loop?: boolean | undefined;
12945
+ position?: "left" | "top" | "right" | "bottom" | undefined;
12946
+ railColor?: string | undefined;
12947
+ trackColor?: string | undefined;
12948
+ sliderHandleColor?: string | undefined;
12949
+ startButtonColor?: string | undefined;
12950
+ pauseButtonColor?: string | undefined;
12951
+ backwardButtonColor?: string | undefined;
12952
+ forwardButtonColor?: string | undefined;
12953
+ } | null | undefined;
12450
12954
  xAxis?: {
12451
12955
  visible?: boolean | null | undefined;
12452
12956
  labelAutoHide?: boolean | null | undefined;
@@ -12918,6 +13422,20 @@ export declare class Builder implements VSeedBuilder {
12918
13422
  labelFontSize?: number | null | undefined;
12919
13423
  labelFontWeight?: string | number | null | undefined;
12920
13424
  } | null | undefined;
13425
+ player?: {
13426
+ field: string;
13427
+ interval?: number | undefined;
13428
+ autoPlay?: boolean | undefined;
13429
+ loop?: boolean | undefined;
13430
+ position?: "left" | "top" | "right" | "bottom" | undefined;
13431
+ railColor?: string | undefined;
13432
+ trackColor?: string | undefined;
13433
+ sliderHandleColor?: string | undefined;
13434
+ startButtonColor?: string | undefined;
13435
+ pauseButtonColor?: string | undefined;
13436
+ backwardButtonColor?: string | undefined;
13437
+ forwardButtonColor?: string | undefined;
13438
+ } | null | undefined;
12921
13439
  xAxis?: {
12922
13440
  visible?: boolean | null | undefined;
12923
13441
  labelAutoHide?: boolean | null | undefined;
@@ -13215,6 +13733,20 @@ export declare class Builder implements VSeedBuilder {
13215
13733
  labelFontSize?: number | null | undefined;
13216
13734
  labelFontWeight?: string | number | null | undefined;
13217
13735
  } | null | undefined;
13736
+ player?: {
13737
+ field: string;
13738
+ interval?: number | undefined;
13739
+ autoPlay?: boolean | undefined;
13740
+ loop?: boolean | undefined;
13741
+ position?: "left" | "top" | "right" | "bottom" | undefined;
13742
+ railColor?: string | undefined;
13743
+ trackColor?: string | undefined;
13744
+ sliderHandleColor?: string | undefined;
13745
+ startButtonColor?: string | undefined;
13746
+ pauseButtonColor?: string | undefined;
13747
+ backwardButtonColor?: string | undefined;
13748
+ forwardButtonColor?: string | undefined;
13749
+ } | null | undefined;
13218
13750
  xAxis?: {
13219
13751
  visible?: boolean | null | undefined;
13220
13752
  labelAutoHide?: boolean | null | undefined;
@@ -13512,6 +14044,20 @@ export declare class Builder implements VSeedBuilder {
13512
14044
  labelFontSize?: number | null | undefined;
13513
14045
  labelFontWeight?: string | number | null | undefined;
13514
14046
  } | null | undefined;
14047
+ player?: {
14048
+ field: string;
14049
+ interval?: number | undefined;
14050
+ autoPlay?: boolean | undefined;
14051
+ loop?: boolean | undefined;
14052
+ position?: "left" | "top" | "right" | "bottom" | undefined;
14053
+ railColor?: string | undefined;
14054
+ trackColor?: string | undefined;
14055
+ sliderHandleColor?: string | undefined;
14056
+ startButtonColor?: string | undefined;
14057
+ pauseButtonColor?: string | undefined;
14058
+ backwardButtonColor?: string | undefined;
14059
+ forwardButtonColor?: string | undefined;
14060
+ } | null | undefined;
13515
14061
  xAxis?: {
13516
14062
  visible?: boolean | null | undefined;
13517
14063
  min?: number | null | undefined;
@@ -13807,6 +14353,20 @@ export declare class Builder implements VSeedBuilder {
13807
14353
  labelFontSize?: number | null | undefined;
13808
14354
  labelFontWeight?: string | number | null | undefined;
13809
14355
  } | null | undefined;
14356
+ player?: {
14357
+ field: string;
14358
+ interval?: number | undefined;
14359
+ autoPlay?: boolean | undefined;
14360
+ loop?: boolean | undefined;
14361
+ position?: "left" | "top" | "right" | "bottom" | undefined;
14362
+ railColor?: string | undefined;
14363
+ trackColor?: string | undefined;
14364
+ sliderHandleColor?: string | undefined;
14365
+ startButtonColor?: string | undefined;
14366
+ pauseButtonColor?: string | undefined;
14367
+ backwardButtonColor?: string | undefined;
14368
+ forwardButtonColor?: string | undefined;
14369
+ } | null | undefined;
13810
14370
  xAxis?: {
13811
14371
  visible?: boolean | null | undefined;
13812
14372
  min?: number | null | undefined;
@@ -14102,6 +14662,20 @@ export declare class Builder implements VSeedBuilder {
14102
14662
  labelFontSize?: number | null | undefined;
14103
14663
  labelFontWeight?: string | number | null | undefined;
14104
14664
  } | null | undefined;
14665
+ player?: {
14666
+ field: string;
14667
+ interval?: number | undefined;
14668
+ autoPlay?: boolean | undefined;
14669
+ loop?: boolean | undefined;
14670
+ position?: "left" | "top" | "right" | "bottom" | undefined;
14671
+ railColor?: string | undefined;
14672
+ trackColor?: string | undefined;
14673
+ sliderHandleColor?: string | undefined;
14674
+ startButtonColor?: string | undefined;
14675
+ pauseButtonColor?: string | undefined;
14676
+ backwardButtonColor?: string | undefined;
14677
+ forwardButtonColor?: string | undefined;
14678
+ } | null | undefined;
14105
14679
  xAxis?: {
14106
14680
  visible?: boolean | null | undefined;
14107
14681
  min?: number | null | undefined;
@@ -14397,6 +14971,20 @@ export declare class Builder implements VSeedBuilder {
14397
14971
  labelFontSize?: number | null | undefined;
14398
14972
  labelFontWeight?: string | number | null | undefined;
14399
14973
  } | null | undefined;
14974
+ player?: {
14975
+ field: string;
14976
+ interval?: number | undefined;
14977
+ autoPlay?: boolean | undefined;
14978
+ loop?: boolean | undefined;
14979
+ position?: "left" | "top" | "right" | "bottom" | undefined;
14980
+ railColor?: string | undefined;
14981
+ trackColor?: string | undefined;
14982
+ sliderHandleColor?: string | undefined;
14983
+ startButtonColor?: string | undefined;
14984
+ pauseButtonColor?: string | undefined;
14985
+ backwardButtonColor?: string | undefined;
14986
+ forwardButtonColor?: string | undefined;
14987
+ } | null | undefined;
14400
14988
  xAxis?: {
14401
14989
  visible?: boolean | null | undefined;
14402
14990
  labelAutoHide?: boolean | null | undefined;
@@ -14692,6 +15280,20 @@ export declare class Builder implements VSeedBuilder {
14692
15280
  labelFontSize?: number | null | undefined;
14693
15281
  labelFontWeight?: string | number | null | undefined;
14694
15282
  } | null | undefined;
15283
+ player?: {
15284
+ field: string;
15285
+ interval?: number | undefined;
15286
+ autoPlay?: boolean | undefined;
15287
+ loop?: boolean | undefined;
15288
+ position?: "left" | "top" | "right" | "bottom" | undefined;
15289
+ railColor?: string | undefined;
15290
+ trackColor?: string | undefined;
15291
+ sliderHandleColor?: string | undefined;
15292
+ startButtonColor?: string | undefined;
15293
+ pauseButtonColor?: string | undefined;
15294
+ backwardButtonColor?: string | undefined;
15295
+ forwardButtonColor?: string | undefined;
15296
+ } | null | undefined;
14695
15297
  xAxis?: {
14696
15298
  visible?: boolean | null | undefined;
14697
15299
  labelAutoHide?: boolean | null | undefined;
@@ -14987,6 +15589,20 @@ export declare class Builder implements VSeedBuilder {
14987
15589
  labelFontSize?: number | null | undefined;
14988
15590
  labelFontWeight?: string | number | null | undefined;
14989
15591
  } | null | undefined;
15592
+ player?: {
15593
+ field: string;
15594
+ interval?: number | undefined;
15595
+ autoPlay?: boolean | undefined;
15596
+ loop?: boolean | undefined;
15597
+ position?: "left" | "top" | "right" | "bottom" | undefined;
15598
+ railColor?: string | undefined;
15599
+ trackColor?: string | undefined;
15600
+ sliderHandleColor?: string | undefined;
15601
+ startButtonColor?: string | undefined;
15602
+ pauseButtonColor?: string | undefined;
15603
+ backwardButtonColor?: string | undefined;
15604
+ forwardButtonColor?: string | undefined;
15605
+ } | null | undefined;
14990
15606
  xAxis?: {
14991
15607
  visible?: boolean | null | undefined;
14992
15608
  min?: number | null | undefined;
@@ -15911,6 +16527,20 @@ export declare class Builder implements VSeedBuilder {
15911
16527
  labelFontSize?: number | null | undefined;
15912
16528
  labelFontWeight?: string | number | null | undefined;
15913
16529
  } | null | undefined;
16530
+ player?: {
16531
+ field: string;
16532
+ interval?: number | undefined;
16533
+ autoPlay?: boolean | undefined;
16534
+ loop?: boolean | undefined;
16535
+ position?: "left" | "top" | "right" | "bottom" | undefined;
16536
+ railColor?: string | undefined;
16537
+ trackColor?: string | undefined;
16538
+ sliderHandleColor?: string | undefined;
16539
+ startButtonColor?: string | undefined;
16540
+ pauseButtonColor?: string | undefined;
16541
+ backwardButtonColor?: string | undefined;
16542
+ forwardButtonColor?: string | undefined;
16543
+ } | null | undefined;
15914
16544
  pivotGrid?: {
15915
16545
  borderColor?: string | null | undefined;
15916
16546
  bodyFontColor?: string | null | undefined;
@@ -16011,6 +16641,20 @@ export declare class Builder implements VSeedBuilder {
16011
16641
  labelFontSize?: number | null | undefined;
16012
16642
  labelFontWeight?: string | number | null | undefined;
16013
16643
  } | null | undefined;
16644
+ player?: {
16645
+ field: string;
16646
+ interval?: number | undefined;
16647
+ autoPlay?: boolean | undefined;
16648
+ loop?: boolean | undefined;
16649
+ position?: "left" | "top" | "right" | "bottom" | undefined;
16650
+ railColor?: string | undefined;
16651
+ trackColor?: string | undefined;
16652
+ sliderHandleColor?: string | undefined;
16653
+ startButtonColor?: string | undefined;
16654
+ pauseButtonColor?: string | undefined;
16655
+ backwardButtonColor?: string | undefined;
16656
+ forwardButtonColor?: string | undefined;
16657
+ } | null | undefined;
16014
16658
  pivotGrid?: {
16015
16659
  borderColor?: string | null | undefined;
16016
16660
  bodyFontColor?: string | null | undefined;
@@ -16111,6 +16755,20 @@ export declare class Builder implements VSeedBuilder {
16111
16755
  labelFontSize?: number | null | undefined;
16112
16756
  labelFontWeight?: string | number | null | undefined;
16113
16757
  } | null | undefined;
16758
+ player?: {
16759
+ field: string;
16760
+ interval?: number | undefined;
16761
+ autoPlay?: boolean | undefined;
16762
+ loop?: boolean | undefined;
16763
+ position?: "left" | "top" | "right" | "bottom" | undefined;
16764
+ railColor?: string | undefined;
16765
+ trackColor?: string | undefined;
16766
+ sliderHandleColor?: string | undefined;
16767
+ startButtonColor?: string | undefined;
16768
+ pauseButtonColor?: string | undefined;
16769
+ backwardButtonColor?: string | undefined;
16770
+ forwardButtonColor?: string | undefined;
16771
+ } | null | undefined;
16114
16772
  pivotGrid?: {
16115
16773
  borderColor?: string | null | undefined;
16116
16774
  bodyFontColor?: string | null | undefined;
@@ -16225,6 +16883,20 @@ export declare class Builder implements VSeedBuilder {
16225
16883
  labelFontSize?: number | null | undefined;
16226
16884
  labelFontWeight?: string | number | null | undefined;
16227
16885
  } | null | undefined;
16886
+ player?: {
16887
+ field: string;
16888
+ interval?: number | undefined;
16889
+ autoPlay?: boolean | undefined;
16890
+ loop?: boolean | undefined;
16891
+ position?: "left" | "top" | "right" | "bottom" | undefined;
16892
+ railColor?: string | undefined;
16893
+ trackColor?: string | undefined;
16894
+ sliderHandleColor?: string | undefined;
16895
+ startButtonColor?: string | undefined;
16896
+ pauseButtonColor?: string | undefined;
16897
+ backwardButtonColor?: string | undefined;
16898
+ forwardButtonColor?: string | undefined;
16899
+ } | null | undefined;
16228
16900
  pivotGrid?: {
16229
16901
  borderColor?: string | null | undefined;
16230
16902
  bodyFontColor?: string | null | undefined;
@@ -16339,6 +17011,20 @@ export declare class Builder implements VSeedBuilder {
16339
17011
  labelFontSize?: number | null | undefined;
16340
17012
  labelFontWeight?: string | number | null | undefined;
16341
17013
  } | null | undefined;
17014
+ player?: {
17015
+ field: string;
17016
+ interval?: number | undefined;
17017
+ autoPlay?: boolean | undefined;
17018
+ loop?: boolean | undefined;
17019
+ position?: "left" | "top" | "right" | "bottom" | undefined;
17020
+ railColor?: string | undefined;
17021
+ trackColor?: string | undefined;
17022
+ sliderHandleColor?: string | undefined;
17023
+ startButtonColor?: string | undefined;
17024
+ pauseButtonColor?: string | undefined;
17025
+ backwardButtonColor?: string | undefined;
17026
+ forwardButtonColor?: string | undefined;
17027
+ } | null | undefined;
16342
17028
  pivotGrid?: {
16343
17029
  borderColor?: string | null | undefined;
16344
17030
  bodyFontColor?: string | null | undefined;
@@ -16452,6 +17138,20 @@ export declare class Builder implements VSeedBuilder {
16452
17138
  labelFontSize?: number | null | undefined;
16453
17139
  labelFontWeight?: string | number | null | undefined;
16454
17140
  } | null | undefined;
17141
+ player?: {
17142
+ field: string;
17143
+ interval?: number | undefined;
17144
+ autoPlay?: boolean | undefined;
17145
+ loop?: boolean | undefined;
17146
+ position?: "left" | "top" | "right" | "bottom" | undefined;
17147
+ railColor?: string | undefined;
17148
+ trackColor?: string | undefined;
17149
+ sliderHandleColor?: string | undefined;
17150
+ startButtonColor?: string | undefined;
17151
+ pauseButtonColor?: string | undefined;
17152
+ backwardButtonColor?: string | undefined;
17153
+ forwardButtonColor?: string | undefined;
17154
+ } | null | undefined;
16455
17155
  pivotGrid?: {
16456
17156
  borderColor?: string | null | undefined;
16457
17157
  bodyFontColor?: string | null | undefined;
@@ -16552,6 +17252,20 @@ export declare class Builder implements VSeedBuilder {
16552
17252
  labelFontSize?: number | null | undefined;
16553
17253
  labelFontWeight?: string | number | null | undefined;
16554
17254
  } | null | undefined;
17255
+ player?: {
17256
+ field: string;
17257
+ interval?: number | undefined;
17258
+ autoPlay?: boolean | undefined;
17259
+ loop?: boolean | undefined;
17260
+ position?: "left" | "top" | "right" | "bottom" | undefined;
17261
+ railColor?: string | undefined;
17262
+ trackColor?: string | undefined;
17263
+ sliderHandleColor?: string | undefined;
17264
+ startButtonColor?: string | undefined;
17265
+ pauseButtonColor?: string | undefined;
17266
+ backwardButtonColor?: string | undefined;
17267
+ forwardButtonColor?: string | undefined;
17268
+ } | null | undefined;
16555
17269
  pivotGrid?: {
16556
17270
  borderColor?: string | null | undefined;
16557
17271
  bodyFontColor?: string | null | undefined;
@@ -18158,6 +18872,20 @@ export declare class Builder implements VSeedBuilder {
18158
18872
  lineWidth?: number | undefined;
18159
18873
  } | undefined;
18160
18874
  } | null | undefined;
18875
+ player?: {
18876
+ field: string;
18877
+ interval?: number | undefined;
18878
+ autoPlay?: boolean | undefined;
18879
+ loop?: boolean | undefined;
18880
+ position?: "left" | "top" | "right" | "bottom" | undefined;
18881
+ railColor?: string | undefined;
18882
+ trackColor?: string | undefined;
18883
+ sliderHandleColor?: string | undefined;
18884
+ startButtonColor?: string | undefined;
18885
+ pauseButtonColor?: string | undefined;
18886
+ backwardButtonColor?: string | undefined;
18887
+ forwardButtonColor?: string | undefined;
18888
+ } | null | undefined;
18161
18889
  } | null | undefined;
18162
18890
  column?: {
18163
18891
  backgroundColor?: string | null | undefined;
@@ -18240,6 +18968,20 @@ export declare class Builder implements VSeedBuilder {
18240
18968
  labelFontSize?: number | null | undefined;
18241
18969
  labelFontWeight?: string | number | null | undefined;
18242
18970
  } | null | undefined;
18971
+ player?: {
18972
+ field: string;
18973
+ interval?: number | undefined;
18974
+ autoPlay?: boolean | undefined;
18975
+ loop?: boolean | undefined;
18976
+ position?: "left" | "top" | "right" | "bottom" | undefined;
18977
+ railColor?: string | undefined;
18978
+ trackColor?: string | undefined;
18979
+ sliderHandleColor?: string | undefined;
18980
+ startButtonColor?: string | undefined;
18981
+ pauseButtonColor?: string | undefined;
18982
+ backwardButtonColor?: string | undefined;
18983
+ forwardButtonColor?: string | undefined;
18984
+ } | null | undefined;
18243
18985
  xAxis?: {
18244
18986
  visible?: boolean | null | undefined;
18245
18987
  labelAutoHide?: boolean | null | undefined;
@@ -18711,6 +19453,20 @@ export declare class Builder implements VSeedBuilder {
18711
19453
  labelFontSize?: number | null | undefined;
18712
19454
  labelFontWeight?: string | number | null | undefined;
18713
19455
  } | null | undefined;
19456
+ player?: {
19457
+ field: string;
19458
+ interval?: number | undefined;
19459
+ autoPlay?: boolean | undefined;
19460
+ loop?: boolean | undefined;
19461
+ position?: "left" | "top" | "right" | "bottom" | undefined;
19462
+ railColor?: string | undefined;
19463
+ trackColor?: string | undefined;
19464
+ sliderHandleColor?: string | undefined;
19465
+ startButtonColor?: string | undefined;
19466
+ pauseButtonColor?: string | undefined;
19467
+ backwardButtonColor?: string | undefined;
19468
+ forwardButtonColor?: string | undefined;
19469
+ } | null | undefined;
18714
19470
  xAxis?: {
18715
19471
  visible?: boolean | null | undefined;
18716
19472
  labelAutoHide?: boolean | null | undefined;
@@ -19008,6 +19764,20 @@ export declare class Builder implements VSeedBuilder {
19008
19764
  labelFontSize?: number | null | undefined;
19009
19765
  labelFontWeight?: string | number | null | undefined;
19010
19766
  } | null | undefined;
19767
+ player?: {
19768
+ field: string;
19769
+ interval?: number | undefined;
19770
+ autoPlay?: boolean | undefined;
19771
+ loop?: boolean | undefined;
19772
+ position?: "left" | "top" | "right" | "bottom" | undefined;
19773
+ railColor?: string | undefined;
19774
+ trackColor?: string | undefined;
19775
+ sliderHandleColor?: string | undefined;
19776
+ startButtonColor?: string | undefined;
19777
+ pauseButtonColor?: string | undefined;
19778
+ backwardButtonColor?: string | undefined;
19779
+ forwardButtonColor?: string | undefined;
19780
+ } | null | undefined;
19011
19781
  xAxis?: {
19012
19782
  visible?: boolean | null | undefined;
19013
19783
  labelAutoHide?: boolean | null | undefined;
@@ -19305,6 +20075,20 @@ export declare class Builder implements VSeedBuilder {
19305
20075
  labelFontSize?: number | null | undefined;
19306
20076
  labelFontWeight?: string | number | null | undefined;
19307
20077
  } | null | undefined;
20078
+ player?: {
20079
+ field: string;
20080
+ interval?: number | undefined;
20081
+ autoPlay?: boolean | undefined;
20082
+ loop?: boolean | undefined;
20083
+ position?: "left" | "top" | "right" | "bottom" | undefined;
20084
+ railColor?: string | undefined;
20085
+ trackColor?: string | undefined;
20086
+ sliderHandleColor?: string | undefined;
20087
+ startButtonColor?: string | undefined;
20088
+ pauseButtonColor?: string | undefined;
20089
+ backwardButtonColor?: string | undefined;
20090
+ forwardButtonColor?: string | undefined;
20091
+ } | null | undefined;
19308
20092
  xAxis?: {
19309
20093
  visible?: boolean | null | undefined;
19310
20094
  min?: number | null | undefined;
@@ -19600,6 +20384,20 @@ export declare class Builder implements VSeedBuilder {
19600
20384
  labelFontSize?: number | null | undefined;
19601
20385
  labelFontWeight?: string | number | null | undefined;
19602
20386
  } | null | undefined;
20387
+ player?: {
20388
+ field: string;
20389
+ interval?: number | undefined;
20390
+ autoPlay?: boolean | undefined;
20391
+ loop?: boolean | undefined;
20392
+ position?: "left" | "top" | "right" | "bottom" | undefined;
20393
+ railColor?: string | undefined;
20394
+ trackColor?: string | undefined;
20395
+ sliderHandleColor?: string | undefined;
20396
+ startButtonColor?: string | undefined;
20397
+ pauseButtonColor?: string | undefined;
20398
+ backwardButtonColor?: string | undefined;
20399
+ forwardButtonColor?: string | undefined;
20400
+ } | null | undefined;
19603
20401
  xAxis?: {
19604
20402
  visible?: boolean | null | undefined;
19605
20403
  min?: number | null | undefined;
@@ -19895,6 +20693,20 @@ export declare class Builder implements VSeedBuilder {
19895
20693
  labelFontSize?: number | null | undefined;
19896
20694
  labelFontWeight?: string | number | null | undefined;
19897
20695
  } | null | undefined;
20696
+ player?: {
20697
+ field: string;
20698
+ interval?: number | undefined;
20699
+ autoPlay?: boolean | undefined;
20700
+ loop?: boolean | undefined;
20701
+ position?: "left" | "top" | "right" | "bottom" | undefined;
20702
+ railColor?: string | undefined;
20703
+ trackColor?: string | undefined;
20704
+ sliderHandleColor?: string | undefined;
20705
+ startButtonColor?: string | undefined;
20706
+ pauseButtonColor?: string | undefined;
20707
+ backwardButtonColor?: string | undefined;
20708
+ forwardButtonColor?: string | undefined;
20709
+ } | null | undefined;
19898
20710
  xAxis?: {
19899
20711
  visible?: boolean | null | undefined;
19900
20712
  min?: number | null | undefined;
@@ -20190,6 +21002,20 @@ export declare class Builder implements VSeedBuilder {
20190
21002
  labelFontSize?: number | null | undefined;
20191
21003
  labelFontWeight?: string | number | null | undefined;
20192
21004
  } | null | undefined;
21005
+ player?: {
21006
+ field: string;
21007
+ interval?: number | undefined;
21008
+ autoPlay?: boolean | undefined;
21009
+ loop?: boolean | undefined;
21010
+ position?: "left" | "top" | "right" | "bottom" | undefined;
21011
+ railColor?: string | undefined;
21012
+ trackColor?: string | undefined;
21013
+ sliderHandleColor?: string | undefined;
21014
+ startButtonColor?: string | undefined;
21015
+ pauseButtonColor?: string | undefined;
21016
+ backwardButtonColor?: string | undefined;
21017
+ forwardButtonColor?: string | undefined;
21018
+ } | null | undefined;
20193
21019
  xAxis?: {
20194
21020
  visible?: boolean | null | undefined;
20195
21021
  labelAutoHide?: boolean | null | undefined;
@@ -20485,6 +21311,20 @@ export declare class Builder implements VSeedBuilder {
20485
21311
  labelFontSize?: number | null | undefined;
20486
21312
  labelFontWeight?: string | number | null | undefined;
20487
21313
  } | null | undefined;
21314
+ player?: {
21315
+ field: string;
21316
+ interval?: number | undefined;
21317
+ autoPlay?: boolean | undefined;
21318
+ loop?: boolean | undefined;
21319
+ position?: "left" | "top" | "right" | "bottom" | undefined;
21320
+ railColor?: string | undefined;
21321
+ trackColor?: string | undefined;
21322
+ sliderHandleColor?: string | undefined;
21323
+ startButtonColor?: string | undefined;
21324
+ pauseButtonColor?: string | undefined;
21325
+ backwardButtonColor?: string | undefined;
21326
+ forwardButtonColor?: string | undefined;
21327
+ } | null | undefined;
20488
21328
  xAxis?: {
20489
21329
  visible?: boolean | null | undefined;
20490
21330
  labelAutoHide?: boolean | null | undefined;
@@ -20780,6 +21620,20 @@ export declare class Builder implements VSeedBuilder {
20780
21620
  labelFontSize?: number | null | undefined;
20781
21621
  labelFontWeight?: string | number | null | undefined;
20782
21622
  } | null | undefined;
21623
+ player?: {
21624
+ field: string;
21625
+ interval?: number | undefined;
21626
+ autoPlay?: boolean | undefined;
21627
+ loop?: boolean | undefined;
21628
+ position?: "left" | "top" | "right" | "bottom" | undefined;
21629
+ railColor?: string | undefined;
21630
+ trackColor?: string | undefined;
21631
+ sliderHandleColor?: string | undefined;
21632
+ startButtonColor?: string | undefined;
21633
+ pauseButtonColor?: string | undefined;
21634
+ backwardButtonColor?: string | undefined;
21635
+ forwardButtonColor?: string | undefined;
21636
+ } | null | undefined;
20783
21637
  xAxis?: {
20784
21638
  visible?: boolean | null | undefined;
20785
21639
  min?: number | null | undefined;
@@ -21704,6 +22558,20 @@ export declare class Builder implements VSeedBuilder {
21704
22558
  labelFontSize?: number | null | undefined;
21705
22559
  labelFontWeight?: string | number | null | undefined;
21706
22560
  } | null | undefined;
22561
+ player?: {
22562
+ field: string;
22563
+ interval?: number | undefined;
22564
+ autoPlay?: boolean | undefined;
22565
+ loop?: boolean | undefined;
22566
+ position?: "left" | "top" | "right" | "bottom" | undefined;
22567
+ railColor?: string | undefined;
22568
+ trackColor?: string | undefined;
22569
+ sliderHandleColor?: string | undefined;
22570
+ startButtonColor?: string | undefined;
22571
+ pauseButtonColor?: string | undefined;
22572
+ backwardButtonColor?: string | undefined;
22573
+ forwardButtonColor?: string | undefined;
22574
+ } | null | undefined;
21707
22575
  pivotGrid?: {
21708
22576
  borderColor?: string | null | undefined;
21709
22577
  bodyFontColor?: string | null | undefined;
@@ -21804,6 +22672,20 @@ export declare class Builder implements VSeedBuilder {
21804
22672
  labelFontSize?: number | null | undefined;
21805
22673
  labelFontWeight?: string | number | null | undefined;
21806
22674
  } | null | undefined;
22675
+ player?: {
22676
+ field: string;
22677
+ interval?: number | undefined;
22678
+ autoPlay?: boolean | undefined;
22679
+ loop?: boolean | undefined;
22680
+ position?: "left" | "top" | "right" | "bottom" | undefined;
22681
+ railColor?: string | undefined;
22682
+ trackColor?: string | undefined;
22683
+ sliderHandleColor?: string | undefined;
22684
+ startButtonColor?: string | undefined;
22685
+ pauseButtonColor?: string | undefined;
22686
+ backwardButtonColor?: string | undefined;
22687
+ forwardButtonColor?: string | undefined;
22688
+ } | null | undefined;
21807
22689
  pivotGrid?: {
21808
22690
  borderColor?: string | null | undefined;
21809
22691
  bodyFontColor?: string | null | undefined;
@@ -21904,6 +22786,20 @@ export declare class Builder implements VSeedBuilder {
21904
22786
  labelFontSize?: number | null | undefined;
21905
22787
  labelFontWeight?: string | number | null | undefined;
21906
22788
  } | null | undefined;
22789
+ player?: {
22790
+ field: string;
22791
+ interval?: number | undefined;
22792
+ autoPlay?: boolean | undefined;
22793
+ loop?: boolean | undefined;
22794
+ position?: "left" | "top" | "right" | "bottom" | undefined;
22795
+ railColor?: string | undefined;
22796
+ trackColor?: string | undefined;
22797
+ sliderHandleColor?: string | undefined;
22798
+ startButtonColor?: string | undefined;
22799
+ pauseButtonColor?: string | undefined;
22800
+ backwardButtonColor?: string | undefined;
22801
+ forwardButtonColor?: string | undefined;
22802
+ } | null | undefined;
21907
22803
  pivotGrid?: {
21908
22804
  borderColor?: string | null | undefined;
21909
22805
  bodyFontColor?: string | null | undefined;
@@ -22018,6 +22914,20 @@ export declare class Builder implements VSeedBuilder {
22018
22914
  labelFontSize?: number | null | undefined;
22019
22915
  labelFontWeight?: string | number | null | undefined;
22020
22916
  } | null | undefined;
22917
+ player?: {
22918
+ field: string;
22919
+ interval?: number | undefined;
22920
+ autoPlay?: boolean | undefined;
22921
+ loop?: boolean | undefined;
22922
+ position?: "left" | "top" | "right" | "bottom" | undefined;
22923
+ railColor?: string | undefined;
22924
+ trackColor?: string | undefined;
22925
+ sliderHandleColor?: string | undefined;
22926
+ startButtonColor?: string | undefined;
22927
+ pauseButtonColor?: string | undefined;
22928
+ backwardButtonColor?: string | undefined;
22929
+ forwardButtonColor?: string | undefined;
22930
+ } | null | undefined;
22021
22931
  pivotGrid?: {
22022
22932
  borderColor?: string | null | undefined;
22023
22933
  bodyFontColor?: string | null | undefined;
@@ -22132,6 +23042,20 @@ export declare class Builder implements VSeedBuilder {
22132
23042
  labelFontSize?: number | null | undefined;
22133
23043
  labelFontWeight?: string | number | null | undefined;
22134
23044
  } | null | undefined;
23045
+ player?: {
23046
+ field: string;
23047
+ interval?: number | undefined;
23048
+ autoPlay?: boolean | undefined;
23049
+ loop?: boolean | undefined;
23050
+ position?: "left" | "top" | "right" | "bottom" | undefined;
23051
+ railColor?: string | undefined;
23052
+ trackColor?: string | undefined;
23053
+ sliderHandleColor?: string | undefined;
23054
+ startButtonColor?: string | undefined;
23055
+ pauseButtonColor?: string | undefined;
23056
+ backwardButtonColor?: string | undefined;
23057
+ forwardButtonColor?: string | undefined;
23058
+ } | null | undefined;
22135
23059
  pivotGrid?: {
22136
23060
  borderColor?: string | null | undefined;
22137
23061
  bodyFontColor?: string | null | undefined;
@@ -22245,6 +23169,20 @@ export declare class Builder implements VSeedBuilder {
22245
23169
  labelFontSize?: number | null | undefined;
22246
23170
  labelFontWeight?: string | number | null | undefined;
22247
23171
  } | null | undefined;
23172
+ player?: {
23173
+ field: string;
23174
+ interval?: number | undefined;
23175
+ autoPlay?: boolean | undefined;
23176
+ loop?: boolean | undefined;
23177
+ position?: "left" | "top" | "right" | "bottom" | undefined;
23178
+ railColor?: string | undefined;
23179
+ trackColor?: string | undefined;
23180
+ sliderHandleColor?: string | undefined;
23181
+ startButtonColor?: string | undefined;
23182
+ pauseButtonColor?: string | undefined;
23183
+ backwardButtonColor?: string | undefined;
23184
+ forwardButtonColor?: string | undefined;
23185
+ } | null | undefined;
22248
23186
  pivotGrid?: {
22249
23187
  borderColor?: string | null | undefined;
22250
23188
  bodyFontColor?: string | null | undefined;
@@ -22345,6 +23283,20 @@ export declare class Builder implements VSeedBuilder {
22345
23283
  labelFontSize?: number | null | undefined;
22346
23284
  labelFontWeight?: string | number | null | undefined;
22347
23285
  } | null | undefined;
23286
+ player?: {
23287
+ field: string;
23288
+ interval?: number | undefined;
23289
+ autoPlay?: boolean | undefined;
23290
+ loop?: boolean | undefined;
23291
+ position?: "left" | "top" | "right" | "bottom" | undefined;
23292
+ railColor?: string | undefined;
23293
+ trackColor?: string | undefined;
23294
+ sliderHandleColor?: string | undefined;
23295
+ startButtonColor?: string | undefined;
23296
+ pauseButtonColor?: string | undefined;
23297
+ backwardButtonColor?: string | undefined;
23298
+ forwardButtonColor?: string | undefined;
23299
+ } | null | undefined;
22348
23300
  pivotGrid?: {
22349
23301
  borderColor?: string | null | undefined;
22350
23302
  bodyFontColor?: string | null | undefined;
@@ -24137,6 +25089,20 @@ export declare class Builder implements VSeedBuilder {
24137
25089
  lineWidth?: number | undefined;
24138
25090
  } | undefined;
24139
25091
  } | null | undefined;
25092
+ player?: {
25093
+ field: string;
25094
+ interval?: number | undefined;
25095
+ autoPlay?: boolean | undefined;
25096
+ loop?: boolean | undefined;
25097
+ position?: "left" | "top" | "right" | "bottom" | undefined;
25098
+ railColor?: string | undefined;
25099
+ trackColor?: string | undefined;
25100
+ sliderHandleColor?: string | undefined;
25101
+ startButtonColor?: string | undefined;
25102
+ pauseButtonColor?: string | undefined;
25103
+ backwardButtonColor?: string | undefined;
25104
+ forwardButtonColor?: string | undefined;
25105
+ } | null | undefined;
24140
25106
  } | null | undefined;
24141
25107
  column?: {
24142
25108
  backgroundColor?: string | null | undefined;
@@ -24219,6 +25185,20 @@ export declare class Builder implements VSeedBuilder {
24219
25185
  labelFontSize?: number | null | undefined;
24220
25186
  labelFontWeight?: string | number | null | undefined;
24221
25187
  } | null | undefined;
25188
+ player?: {
25189
+ field: string;
25190
+ interval?: number | undefined;
25191
+ autoPlay?: boolean | undefined;
25192
+ loop?: boolean | undefined;
25193
+ position?: "left" | "top" | "right" | "bottom" | undefined;
25194
+ railColor?: string | undefined;
25195
+ trackColor?: string | undefined;
25196
+ sliderHandleColor?: string | undefined;
25197
+ startButtonColor?: string | undefined;
25198
+ pauseButtonColor?: string | undefined;
25199
+ backwardButtonColor?: string | undefined;
25200
+ forwardButtonColor?: string | undefined;
25201
+ } | null | undefined;
24222
25202
  xAxis?: {
24223
25203
  visible?: boolean | null | undefined;
24224
25204
  labelAutoHide?: boolean | null | undefined;
@@ -24690,6 +25670,20 @@ export declare class Builder implements VSeedBuilder {
24690
25670
  labelFontSize?: number | null | undefined;
24691
25671
  labelFontWeight?: string | number | null | undefined;
24692
25672
  } | null | undefined;
25673
+ player?: {
25674
+ field: string;
25675
+ interval?: number | undefined;
25676
+ autoPlay?: boolean | undefined;
25677
+ loop?: boolean | undefined;
25678
+ position?: "left" | "top" | "right" | "bottom" | undefined;
25679
+ railColor?: string | undefined;
25680
+ trackColor?: string | undefined;
25681
+ sliderHandleColor?: string | undefined;
25682
+ startButtonColor?: string | undefined;
25683
+ pauseButtonColor?: string | undefined;
25684
+ backwardButtonColor?: string | undefined;
25685
+ forwardButtonColor?: string | undefined;
25686
+ } | null | undefined;
24693
25687
  xAxis?: {
24694
25688
  visible?: boolean | null | undefined;
24695
25689
  labelAutoHide?: boolean | null | undefined;
@@ -24987,6 +25981,20 @@ export declare class Builder implements VSeedBuilder {
24987
25981
  labelFontSize?: number | null | undefined;
24988
25982
  labelFontWeight?: string | number | null | undefined;
24989
25983
  } | null | undefined;
25984
+ player?: {
25985
+ field: string;
25986
+ interval?: number | undefined;
25987
+ autoPlay?: boolean | undefined;
25988
+ loop?: boolean | undefined;
25989
+ position?: "left" | "top" | "right" | "bottom" | undefined;
25990
+ railColor?: string | undefined;
25991
+ trackColor?: string | undefined;
25992
+ sliderHandleColor?: string | undefined;
25993
+ startButtonColor?: string | undefined;
25994
+ pauseButtonColor?: string | undefined;
25995
+ backwardButtonColor?: string | undefined;
25996
+ forwardButtonColor?: string | undefined;
25997
+ } | null | undefined;
24990
25998
  xAxis?: {
24991
25999
  visible?: boolean | null | undefined;
24992
26000
  labelAutoHide?: boolean | null | undefined;
@@ -25284,6 +26292,20 @@ export declare class Builder implements VSeedBuilder {
25284
26292
  labelFontSize?: number | null | undefined;
25285
26293
  labelFontWeight?: string | number | null | undefined;
25286
26294
  } | null | undefined;
26295
+ player?: {
26296
+ field: string;
26297
+ interval?: number | undefined;
26298
+ autoPlay?: boolean | undefined;
26299
+ loop?: boolean | undefined;
26300
+ position?: "left" | "top" | "right" | "bottom" | undefined;
26301
+ railColor?: string | undefined;
26302
+ trackColor?: string | undefined;
26303
+ sliderHandleColor?: string | undefined;
26304
+ startButtonColor?: string | undefined;
26305
+ pauseButtonColor?: string | undefined;
26306
+ backwardButtonColor?: string | undefined;
26307
+ forwardButtonColor?: string | undefined;
26308
+ } | null | undefined;
25287
26309
  xAxis?: {
25288
26310
  visible?: boolean | null | undefined;
25289
26311
  min?: number | null | undefined;
@@ -25579,6 +26601,20 @@ export declare class Builder implements VSeedBuilder {
25579
26601
  labelFontSize?: number | null | undefined;
25580
26602
  labelFontWeight?: string | number | null | undefined;
25581
26603
  } | null | undefined;
26604
+ player?: {
26605
+ field: string;
26606
+ interval?: number | undefined;
26607
+ autoPlay?: boolean | undefined;
26608
+ loop?: boolean | undefined;
26609
+ position?: "left" | "top" | "right" | "bottom" | undefined;
26610
+ railColor?: string | undefined;
26611
+ trackColor?: string | undefined;
26612
+ sliderHandleColor?: string | undefined;
26613
+ startButtonColor?: string | undefined;
26614
+ pauseButtonColor?: string | undefined;
26615
+ backwardButtonColor?: string | undefined;
26616
+ forwardButtonColor?: string | undefined;
26617
+ } | null | undefined;
25582
26618
  xAxis?: {
25583
26619
  visible?: boolean | null | undefined;
25584
26620
  min?: number | null | undefined;
@@ -25874,6 +26910,20 @@ export declare class Builder implements VSeedBuilder {
25874
26910
  labelFontSize?: number | null | undefined;
25875
26911
  labelFontWeight?: string | number | null | undefined;
25876
26912
  } | null | undefined;
26913
+ player?: {
26914
+ field: string;
26915
+ interval?: number | undefined;
26916
+ autoPlay?: boolean | undefined;
26917
+ loop?: boolean | undefined;
26918
+ position?: "left" | "top" | "right" | "bottom" | undefined;
26919
+ railColor?: string | undefined;
26920
+ trackColor?: string | undefined;
26921
+ sliderHandleColor?: string | undefined;
26922
+ startButtonColor?: string | undefined;
26923
+ pauseButtonColor?: string | undefined;
26924
+ backwardButtonColor?: string | undefined;
26925
+ forwardButtonColor?: string | undefined;
26926
+ } | null | undefined;
25877
26927
  xAxis?: {
25878
26928
  visible?: boolean | null | undefined;
25879
26929
  min?: number | null | undefined;
@@ -26169,6 +27219,20 @@ export declare class Builder implements VSeedBuilder {
26169
27219
  labelFontSize?: number | null | undefined;
26170
27220
  labelFontWeight?: string | number | null | undefined;
26171
27221
  } | null | undefined;
27222
+ player?: {
27223
+ field: string;
27224
+ interval?: number | undefined;
27225
+ autoPlay?: boolean | undefined;
27226
+ loop?: boolean | undefined;
27227
+ position?: "left" | "top" | "right" | "bottom" | undefined;
27228
+ railColor?: string | undefined;
27229
+ trackColor?: string | undefined;
27230
+ sliderHandleColor?: string | undefined;
27231
+ startButtonColor?: string | undefined;
27232
+ pauseButtonColor?: string | undefined;
27233
+ backwardButtonColor?: string | undefined;
27234
+ forwardButtonColor?: string | undefined;
27235
+ } | null | undefined;
26172
27236
  xAxis?: {
26173
27237
  visible?: boolean | null | undefined;
26174
27238
  labelAutoHide?: boolean | null | undefined;
@@ -26464,6 +27528,20 @@ export declare class Builder implements VSeedBuilder {
26464
27528
  labelFontSize?: number | null | undefined;
26465
27529
  labelFontWeight?: string | number | null | undefined;
26466
27530
  } | null | undefined;
27531
+ player?: {
27532
+ field: string;
27533
+ interval?: number | undefined;
27534
+ autoPlay?: boolean | undefined;
27535
+ loop?: boolean | undefined;
27536
+ position?: "left" | "top" | "right" | "bottom" | undefined;
27537
+ railColor?: string | undefined;
27538
+ trackColor?: string | undefined;
27539
+ sliderHandleColor?: string | undefined;
27540
+ startButtonColor?: string | undefined;
27541
+ pauseButtonColor?: string | undefined;
27542
+ backwardButtonColor?: string | undefined;
27543
+ forwardButtonColor?: string | undefined;
27544
+ } | null | undefined;
26467
27545
  xAxis?: {
26468
27546
  visible?: boolean | null | undefined;
26469
27547
  labelAutoHide?: boolean | null | undefined;
@@ -26759,6 +27837,20 @@ export declare class Builder implements VSeedBuilder {
26759
27837
  labelFontSize?: number | null | undefined;
26760
27838
  labelFontWeight?: string | number | null | undefined;
26761
27839
  } | null | undefined;
27840
+ player?: {
27841
+ field: string;
27842
+ interval?: number | undefined;
27843
+ autoPlay?: boolean | undefined;
27844
+ loop?: boolean | undefined;
27845
+ position?: "left" | "top" | "right" | "bottom" | undefined;
27846
+ railColor?: string | undefined;
27847
+ trackColor?: string | undefined;
27848
+ sliderHandleColor?: string | undefined;
27849
+ startButtonColor?: string | undefined;
27850
+ pauseButtonColor?: string | undefined;
27851
+ backwardButtonColor?: string | undefined;
27852
+ forwardButtonColor?: string | undefined;
27853
+ } | null | undefined;
26762
27854
  xAxis?: {
26763
27855
  visible?: boolean | null | undefined;
26764
27856
  min?: number | null | undefined;
@@ -27683,6 +28775,20 @@ export declare class Builder implements VSeedBuilder {
27683
28775
  labelFontSize?: number | null | undefined;
27684
28776
  labelFontWeight?: string | number | null | undefined;
27685
28777
  } | null | undefined;
28778
+ player?: {
28779
+ field: string;
28780
+ interval?: number | undefined;
28781
+ autoPlay?: boolean | undefined;
28782
+ loop?: boolean | undefined;
28783
+ position?: "left" | "top" | "right" | "bottom" | undefined;
28784
+ railColor?: string | undefined;
28785
+ trackColor?: string | undefined;
28786
+ sliderHandleColor?: string | undefined;
28787
+ startButtonColor?: string | undefined;
28788
+ pauseButtonColor?: string | undefined;
28789
+ backwardButtonColor?: string | undefined;
28790
+ forwardButtonColor?: string | undefined;
28791
+ } | null | undefined;
27686
28792
  pivotGrid?: {
27687
28793
  borderColor?: string | null | undefined;
27688
28794
  bodyFontColor?: string | null | undefined;
@@ -27783,6 +28889,20 @@ export declare class Builder implements VSeedBuilder {
27783
28889
  labelFontSize?: number | null | undefined;
27784
28890
  labelFontWeight?: string | number | null | undefined;
27785
28891
  } | null | undefined;
28892
+ player?: {
28893
+ field: string;
28894
+ interval?: number | undefined;
28895
+ autoPlay?: boolean | undefined;
28896
+ loop?: boolean | undefined;
28897
+ position?: "left" | "top" | "right" | "bottom" | undefined;
28898
+ railColor?: string | undefined;
28899
+ trackColor?: string | undefined;
28900
+ sliderHandleColor?: string | undefined;
28901
+ startButtonColor?: string | undefined;
28902
+ pauseButtonColor?: string | undefined;
28903
+ backwardButtonColor?: string | undefined;
28904
+ forwardButtonColor?: string | undefined;
28905
+ } | null | undefined;
27786
28906
  pivotGrid?: {
27787
28907
  borderColor?: string | null | undefined;
27788
28908
  bodyFontColor?: string | null | undefined;
@@ -27883,6 +29003,20 @@ export declare class Builder implements VSeedBuilder {
27883
29003
  labelFontSize?: number | null | undefined;
27884
29004
  labelFontWeight?: string | number | null | undefined;
27885
29005
  } | null | undefined;
29006
+ player?: {
29007
+ field: string;
29008
+ interval?: number | undefined;
29009
+ autoPlay?: boolean | undefined;
29010
+ loop?: boolean | undefined;
29011
+ position?: "left" | "top" | "right" | "bottom" | undefined;
29012
+ railColor?: string | undefined;
29013
+ trackColor?: string | undefined;
29014
+ sliderHandleColor?: string | undefined;
29015
+ startButtonColor?: string | undefined;
29016
+ pauseButtonColor?: string | undefined;
29017
+ backwardButtonColor?: string | undefined;
29018
+ forwardButtonColor?: string | undefined;
29019
+ } | null | undefined;
27886
29020
  pivotGrid?: {
27887
29021
  borderColor?: string | null | undefined;
27888
29022
  bodyFontColor?: string | null | undefined;
@@ -27997,6 +29131,20 @@ export declare class Builder implements VSeedBuilder {
27997
29131
  labelFontSize?: number | null | undefined;
27998
29132
  labelFontWeight?: string | number | null | undefined;
27999
29133
  } | null | undefined;
29134
+ player?: {
29135
+ field: string;
29136
+ interval?: number | undefined;
29137
+ autoPlay?: boolean | undefined;
29138
+ loop?: boolean | undefined;
29139
+ position?: "left" | "top" | "right" | "bottom" | undefined;
29140
+ railColor?: string | undefined;
29141
+ trackColor?: string | undefined;
29142
+ sliderHandleColor?: string | undefined;
29143
+ startButtonColor?: string | undefined;
29144
+ pauseButtonColor?: string | undefined;
29145
+ backwardButtonColor?: string | undefined;
29146
+ forwardButtonColor?: string | undefined;
29147
+ } | null | undefined;
28000
29148
  pivotGrid?: {
28001
29149
  borderColor?: string | null | undefined;
28002
29150
  bodyFontColor?: string | null | undefined;
@@ -28111,6 +29259,20 @@ export declare class Builder implements VSeedBuilder {
28111
29259
  labelFontSize?: number | null | undefined;
28112
29260
  labelFontWeight?: string | number | null | undefined;
28113
29261
  } | null | undefined;
29262
+ player?: {
29263
+ field: string;
29264
+ interval?: number | undefined;
29265
+ autoPlay?: boolean | undefined;
29266
+ loop?: boolean | undefined;
29267
+ position?: "left" | "top" | "right" | "bottom" | undefined;
29268
+ railColor?: string | undefined;
29269
+ trackColor?: string | undefined;
29270
+ sliderHandleColor?: string | undefined;
29271
+ startButtonColor?: string | undefined;
29272
+ pauseButtonColor?: string | undefined;
29273
+ backwardButtonColor?: string | undefined;
29274
+ forwardButtonColor?: string | undefined;
29275
+ } | null | undefined;
28114
29276
  pivotGrid?: {
28115
29277
  borderColor?: string | null | undefined;
28116
29278
  bodyFontColor?: string | null | undefined;
@@ -28224,6 +29386,20 @@ export declare class Builder implements VSeedBuilder {
28224
29386
  labelFontSize?: number | null | undefined;
28225
29387
  labelFontWeight?: string | number | null | undefined;
28226
29388
  } | null | undefined;
29389
+ player?: {
29390
+ field: string;
29391
+ interval?: number | undefined;
29392
+ autoPlay?: boolean | undefined;
29393
+ loop?: boolean | undefined;
29394
+ position?: "left" | "top" | "right" | "bottom" | undefined;
29395
+ railColor?: string | undefined;
29396
+ trackColor?: string | undefined;
29397
+ sliderHandleColor?: string | undefined;
29398
+ startButtonColor?: string | undefined;
29399
+ pauseButtonColor?: string | undefined;
29400
+ backwardButtonColor?: string | undefined;
29401
+ forwardButtonColor?: string | undefined;
29402
+ } | null | undefined;
28227
29403
  pivotGrid?: {
28228
29404
  borderColor?: string | null | undefined;
28229
29405
  bodyFontColor?: string | null | undefined;
@@ -28324,6 +29500,20 @@ export declare class Builder implements VSeedBuilder {
28324
29500
  labelFontSize?: number | null | undefined;
28325
29501
  labelFontWeight?: string | number | null | undefined;
28326
29502
  } | null | undefined;
29503
+ player?: {
29504
+ field: string;
29505
+ interval?: number | undefined;
29506
+ autoPlay?: boolean | undefined;
29507
+ loop?: boolean | undefined;
29508
+ position?: "left" | "top" | "right" | "bottom" | undefined;
29509
+ railColor?: string | undefined;
29510
+ trackColor?: string | undefined;
29511
+ sliderHandleColor?: string | undefined;
29512
+ startButtonColor?: string | undefined;
29513
+ pauseButtonColor?: string | undefined;
29514
+ backwardButtonColor?: string | undefined;
29515
+ forwardButtonColor?: string | undefined;
29516
+ } | null | undefined;
28327
29517
  pivotGrid?: {
28328
29518
  borderColor?: string | null | undefined;
28329
29519
  bodyFontColor?: string | null | undefined;
@@ -29551,6 +30741,20 @@ export declare class Builder implements VSeedBuilder {
29551
30741
  lineWidth?: number | undefined;
29552
30742
  } | undefined;
29553
30743
  } | null | undefined;
30744
+ player?: {
30745
+ field: string;
30746
+ interval?: number | undefined;
30747
+ autoPlay?: boolean | undefined;
30748
+ loop?: boolean | undefined;
30749
+ position?: "left" | "top" | "right" | "bottom" | undefined;
30750
+ railColor?: string | undefined;
30751
+ trackColor?: string | undefined;
30752
+ sliderHandleColor?: string | undefined;
30753
+ startButtonColor?: string | undefined;
30754
+ pauseButtonColor?: string | undefined;
30755
+ backwardButtonColor?: string | undefined;
30756
+ forwardButtonColor?: string | undefined;
30757
+ } | null | undefined;
29554
30758
  } | null | undefined;
29555
30759
  column?: {
29556
30760
  backgroundColor?: string | null | undefined;
@@ -29633,6 +30837,20 @@ export declare class Builder implements VSeedBuilder {
29633
30837
  labelFontSize?: number | null | undefined;
29634
30838
  labelFontWeight?: string | number | null | undefined;
29635
30839
  } | null | undefined;
30840
+ player?: {
30841
+ field: string;
30842
+ interval?: number | undefined;
30843
+ autoPlay?: boolean | undefined;
30844
+ loop?: boolean | undefined;
30845
+ position?: "left" | "top" | "right" | "bottom" | undefined;
30846
+ railColor?: string | undefined;
30847
+ trackColor?: string | undefined;
30848
+ sliderHandleColor?: string | undefined;
30849
+ startButtonColor?: string | undefined;
30850
+ pauseButtonColor?: string | undefined;
30851
+ backwardButtonColor?: string | undefined;
30852
+ forwardButtonColor?: string | undefined;
30853
+ } | null | undefined;
29636
30854
  xAxis?: {
29637
30855
  visible?: boolean | null | undefined;
29638
30856
  labelAutoHide?: boolean | null | undefined;
@@ -30104,6 +31322,20 @@ export declare class Builder implements VSeedBuilder {
30104
31322
  labelFontSize?: number | null | undefined;
30105
31323
  labelFontWeight?: string | number | null | undefined;
30106
31324
  } | null | undefined;
31325
+ player?: {
31326
+ field: string;
31327
+ interval?: number | undefined;
31328
+ autoPlay?: boolean | undefined;
31329
+ loop?: boolean | undefined;
31330
+ position?: "left" | "top" | "right" | "bottom" | undefined;
31331
+ railColor?: string | undefined;
31332
+ trackColor?: string | undefined;
31333
+ sliderHandleColor?: string | undefined;
31334
+ startButtonColor?: string | undefined;
31335
+ pauseButtonColor?: string | undefined;
31336
+ backwardButtonColor?: string | undefined;
31337
+ forwardButtonColor?: string | undefined;
31338
+ } | null | undefined;
30107
31339
  xAxis?: {
30108
31340
  visible?: boolean | null | undefined;
30109
31341
  labelAutoHide?: boolean | null | undefined;
@@ -30401,6 +31633,20 @@ export declare class Builder implements VSeedBuilder {
30401
31633
  labelFontSize?: number | null | undefined;
30402
31634
  labelFontWeight?: string | number | null | undefined;
30403
31635
  } | null | undefined;
31636
+ player?: {
31637
+ field: string;
31638
+ interval?: number | undefined;
31639
+ autoPlay?: boolean | undefined;
31640
+ loop?: boolean | undefined;
31641
+ position?: "left" | "top" | "right" | "bottom" | undefined;
31642
+ railColor?: string | undefined;
31643
+ trackColor?: string | undefined;
31644
+ sliderHandleColor?: string | undefined;
31645
+ startButtonColor?: string | undefined;
31646
+ pauseButtonColor?: string | undefined;
31647
+ backwardButtonColor?: string | undefined;
31648
+ forwardButtonColor?: string | undefined;
31649
+ } | null | undefined;
30404
31650
  xAxis?: {
30405
31651
  visible?: boolean | null | undefined;
30406
31652
  labelAutoHide?: boolean | null | undefined;
@@ -30698,6 +31944,20 @@ export declare class Builder implements VSeedBuilder {
30698
31944
  labelFontSize?: number | null | undefined;
30699
31945
  labelFontWeight?: string | number | null | undefined;
30700
31946
  } | null | undefined;
31947
+ player?: {
31948
+ field: string;
31949
+ interval?: number | undefined;
31950
+ autoPlay?: boolean | undefined;
31951
+ loop?: boolean | undefined;
31952
+ position?: "left" | "top" | "right" | "bottom" | undefined;
31953
+ railColor?: string | undefined;
31954
+ trackColor?: string | undefined;
31955
+ sliderHandleColor?: string | undefined;
31956
+ startButtonColor?: string | undefined;
31957
+ pauseButtonColor?: string | undefined;
31958
+ backwardButtonColor?: string | undefined;
31959
+ forwardButtonColor?: string | undefined;
31960
+ } | null | undefined;
30701
31961
  xAxis?: {
30702
31962
  visible?: boolean | null | undefined;
30703
31963
  min?: number | null | undefined;
@@ -30993,6 +32253,20 @@ export declare class Builder implements VSeedBuilder {
30993
32253
  labelFontSize?: number | null | undefined;
30994
32254
  labelFontWeight?: string | number | null | undefined;
30995
32255
  } | null | undefined;
32256
+ player?: {
32257
+ field: string;
32258
+ interval?: number | undefined;
32259
+ autoPlay?: boolean | undefined;
32260
+ loop?: boolean | undefined;
32261
+ position?: "left" | "top" | "right" | "bottom" | undefined;
32262
+ railColor?: string | undefined;
32263
+ trackColor?: string | undefined;
32264
+ sliderHandleColor?: string | undefined;
32265
+ startButtonColor?: string | undefined;
32266
+ pauseButtonColor?: string | undefined;
32267
+ backwardButtonColor?: string | undefined;
32268
+ forwardButtonColor?: string | undefined;
32269
+ } | null | undefined;
30996
32270
  xAxis?: {
30997
32271
  visible?: boolean | null | undefined;
30998
32272
  min?: number | null | undefined;
@@ -31288,6 +32562,20 @@ export declare class Builder implements VSeedBuilder {
31288
32562
  labelFontSize?: number | null | undefined;
31289
32563
  labelFontWeight?: string | number | null | undefined;
31290
32564
  } | null | undefined;
32565
+ player?: {
32566
+ field: string;
32567
+ interval?: number | undefined;
32568
+ autoPlay?: boolean | undefined;
32569
+ loop?: boolean | undefined;
32570
+ position?: "left" | "top" | "right" | "bottom" | undefined;
32571
+ railColor?: string | undefined;
32572
+ trackColor?: string | undefined;
32573
+ sliderHandleColor?: string | undefined;
32574
+ startButtonColor?: string | undefined;
32575
+ pauseButtonColor?: string | undefined;
32576
+ backwardButtonColor?: string | undefined;
32577
+ forwardButtonColor?: string | undefined;
32578
+ } | null | undefined;
31291
32579
  xAxis?: {
31292
32580
  visible?: boolean | null | undefined;
31293
32581
  min?: number | null | undefined;
@@ -31583,6 +32871,20 @@ export declare class Builder implements VSeedBuilder {
31583
32871
  labelFontSize?: number | null | undefined;
31584
32872
  labelFontWeight?: string | number | null | undefined;
31585
32873
  } | null | undefined;
32874
+ player?: {
32875
+ field: string;
32876
+ interval?: number | undefined;
32877
+ autoPlay?: boolean | undefined;
32878
+ loop?: boolean | undefined;
32879
+ position?: "left" | "top" | "right" | "bottom" | undefined;
32880
+ railColor?: string | undefined;
32881
+ trackColor?: string | undefined;
32882
+ sliderHandleColor?: string | undefined;
32883
+ startButtonColor?: string | undefined;
32884
+ pauseButtonColor?: string | undefined;
32885
+ backwardButtonColor?: string | undefined;
32886
+ forwardButtonColor?: string | undefined;
32887
+ } | null | undefined;
31586
32888
  xAxis?: {
31587
32889
  visible?: boolean | null | undefined;
31588
32890
  labelAutoHide?: boolean | null | undefined;
@@ -31878,6 +33180,20 @@ export declare class Builder implements VSeedBuilder {
31878
33180
  labelFontSize?: number | null | undefined;
31879
33181
  labelFontWeight?: string | number | null | undefined;
31880
33182
  } | null | undefined;
33183
+ player?: {
33184
+ field: string;
33185
+ interval?: number | undefined;
33186
+ autoPlay?: boolean | undefined;
33187
+ loop?: boolean | undefined;
33188
+ position?: "left" | "top" | "right" | "bottom" | undefined;
33189
+ railColor?: string | undefined;
33190
+ trackColor?: string | undefined;
33191
+ sliderHandleColor?: string | undefined;
33192
+ startButtonColor?: string | undefined;
33193
+ pauseButtonColor?: string | undefined;
33194
+ backwardButtonColor?: string | undefined;
33195
+ forwardButtonColor?: string | undefined;
33196
+ } | null | undefined;
31881
33197
  xAxis?: {
31882
33198
  visible?: boolean | null | undefined;
31883
33199
  labelAutoHide?: boolean | null | undefined;
@@ -32173,6 +33489,20 @@ export declare class Builder implements VSeedBuilder {
32173
33489
  labelFontSize?: number | null | undefined;
32174
33490
  labelFontWeight?: string | number | null | undefined;
32175
33491
  } | null | undefined;
33492
+ player?: {
33493
+ field: string;
33494
+ interval?: number | undefined;
33495
+ autoPlay?: boolean | undefined;
33496
+ loop?: boolean | undefined;
33497
+ position?: "left" | "top" | "right" | "bottom" | undefined;
33498
+ railColor?: string | undefined;
33499
+ trackColor?: string | undefined;
33500
+ sliderHandleColor?: string | undefined;
33501
+ startButtonColor?: string | undefined;
33502
+ pauseButtonColor?: string | undefined;
33503
+ backwardButtonColor?: string | undefined;
33504
+ forwardButtonColor?: string | undefined;
33505
+ } | null | undefined;
32176
33506
  xAxis?: {
32177
33507
  visible?: boolean | null | undefined;
32178
33508
  min?: number | null | undefined;
@@ -33097,6 +34427,20 @@ export declare class Builder implements VSeedBuilder {
33097
34427
  labelFontSize?: number | null | undefined;
33098
34428
  labelFontWeight?: string | number | null | undefined;
33099
34429
  } | null | undefined;
34430
+ player?: {
34431
+ field: string;
34432
+ interval?: number | undefined;
34433
+ autoPlay?: boolean | undefined;
34434
+ loop?: boolean | undefined;
34435
+ position?: "left" | "top" | "right" | "bottom" | undefined;
34436
+ railColor?: string | undefined;
34437
+ trackColor?: string | undefined;
34438
+ sliderHandleColor?: string | undefined;
34439
+ startButtonColor?: string | undefined;
34440
+ pauseButtonColor?: string | undefined;
34441
+ backwardButtonColor?: string | undefined;
34442
+ forwardButtonColor?: string | undefined;
34443
+ } | null | undefined;
33100
34444
  pivotGrid?: {
33101
34445
  borderColor?: string | null | undefined;
33102
34446
  bodyFontColor?: string | null | undefined;
@@ -33197,6 +34541,20 @@ export declare class Builder implements VSeedBuilder {
33197
34541
  labelFontSize?: number | null | undefined;
33198
34542
  labelFontWeight?: string | number | null | undefined;
33199
34543
  } | null | undefined;
34544
+ player?: {
34545
+ field: string;
34546
+ interval?: number | undefined;
34547
+ autoPlay?: boolean | undefined;
34548
+ loop?: boolean | undefined;
34549
+ position?: "left" | "top" | "right" | "bottom" | undefined;
34550
+ railColor?: string | undefined;
34551
+ trackColor?: string | undefined;
34552
+ sliderHandleColor?: string | undefined;
34553
+ startButtonColor?: string | undefined;
34554
+ pauseButtonColor?: string | undefined;
34555
+ backwardButtonColor?: string | undefined;
34556
+ forwardButtonColor?: string | undefined;
34557
+ } | null | undefined;
33200
34558
  pivotGrid?: {
33201
34559
  borderColor?: string | null | undefined;
33202
34560
  bodyFontColor?: string | null | undefined;
@@ -33297,6 +34655,20 @@ export declare class Builder implements VSeedBuilder {
33297
34655
  labelFontSize?: number | null | undefined;
33298
34656
  labelFontWeight?: string | number | null | undefined;
33299
34657
  } | null | undefined;
34658
+ player?: {
34659
+ field: string;
34660
+ interval?: number | undefined;
34661
+ autoPlay?: boolean | undefined;
34662
+ loop?: boolean | undefined;
34663
+ position?: "left" | "top" | "right" | "bottom" | undefined;
34664
+ railColor?: string | undefined;
34665
+ trackColor?: string | undefined;
34666
+ sliderHandleColor?: string | undefined;
34667
+ startButtonColor?: string | undefined;
34668
+ pauseButtonColor?: string | undefined;
34669
+ backwardButtonColor?: string | undefined;
34670
+ forwardButtonColor?: string | undefined;
34671
+ } | null | undefined;
33300
34672
  pivotGrid?: {
33301
34673
  borderColor?: string | null | undefined;
33302
34674
  bodyFontColor?: string | null | undefined;
@@ -33411,6 +34783,20 @@ export declare class Builder implements VSeedBuilder {
33411
34783
  labelFontSize?: number | null | undefined;
33412
34784
  labelFontWeight?: string | number | null | undefined;
33413
34785
  } | null | undefined;
34786
+ player?: {
34787
+ field: string;
34788
+ interval?: number | undefined;
34789
+ autoPlay?: boolean | undefined;
34790
+ loop?: boolean | undefined;
34791
+ position?: "left" | "top" | "right" | "bottom" | undefined;
34792
+ railColor?: string | undefined;
34793
+ trackColor?: string | undefined;
34794
+ sliderHandleColor?: string | undefined;
34795
+ startButtonColor?: string | undefined;
34796
+ pauseButtonColor?: string | undefined;
34797
+ backwardButtonColor?: string | undefined;
34798
+ forwardButtonColor?: string | undefined;
34799
+ } | null | undefined;
33414
34800
  pivotGrid?: {
33415
34801
  borderColor?: string | null | undefined;
33416
34802
  bodyFontColor?: string | null | undefined;
@@ -33525,6 +34911,20 @@ export declare class Builder implements VSeedBuilder {
33525
34911
  labelFontSize?: number | null | undefined;
33526
34912
  labelFontWeight?: string | number | null | undefined;
33527
34913
  } | null | undefined;
34914
+ player?: {
34915
+ field: string;
34916
+ interval?: number | undefined;
34917
+ autoPlay?: boolean | undefined;
34918
+ loop?: boolean | undefined;
34919
+ position?: "left" | "top" | "right" | "bottom" | undefined;
34920
+ railColor?: string | undefined;
34921
+ trackColor?: string | undefined;
34922
+ sliderHandleColor?: string | undefined;
34923
+ startButtonColor?: string | undefined;
34924
+ pauseButtonColor?: string | undefined;
34925
+ backwardButtonColor?: string | undefined;
34926
+ forwardButtonColor?: string | undefined;
34927
+ } | null | undefined;
33528
34928
  pivotGrid?: {
33529
34929
  borderColor?: string | null | undefined;
33530
34930
  bodyFontColor?: string | null | undefined;
@@ -33638,6 +35038,20 @@ export declare class Builder implements VSeedBuilder {
33638
35038
  labelFontSize?: number | null | undefined;
33639
35039
  labelFontWeight?: string | number | null | undefined;
33640
35040
  } | null | undefined;
35041
+ player?: {
35042
+ field: string;
35043
+ interval?: number | undefined;
35044
+ autoPlay?: boolean | undefined;
35045
+ loop?: boolean | undefined;
35046
+ position?: "left" | "top" | "right" | "bottom" | undefined;
35047
+ railColor?: string | undefined;
35048
+ trackColor?: string | undefined;
35049
+ sliderHandleColor?: string | undefined;
35050
+ startButtonColor?: string | undefined;
35051
+ pauseButtonColor?: string | undefined;
35052
+ backwardButtonColor?: string | undefined;
35053
+ forwardButtonColor?: string | undefined;
35054
+ } | null | undefined;
33641
35055
  pivotGrid?: {
33642
35056
  borderColor?: string | null | undefined;
33643
35057
  bodyFontColor?: string | null | undefined;
@@ -33738,6 +35152,20 @@ export declare class Builder implements VSeedBuilder {
33738
35152
  labelFontSize?: number | null | undefined;
33739
35153
  labelFontWeight?: string | number | null | undefined;
33740
35154
  } | null | undefined;
35155
+ player?: {
35156
+ field: string;
35157
+ interval?: number | undefined;
35158
+ autoPlay?: boolean | undefined;
35159
+ loop?: boolean | undefined;
35160
+ position?: "left" | "top" | "right" | "bottom" | undefined;
35161
+ railColor?: string | undefined;
35162
+ trackColor?: string | undefined;
35163
+ sliderHandleColor?: string | undefined;
35164
+ startButtonColor?: string | undefined;
35165
+ pauseButtonColor?: string | undefined;
35166
+ backwardButtonColor?: string | undefined;
35167
+ forwardButtonColor?: string | undefined;
35168
+ } | null | undefined;
33741
35169
  pivotGrid?: {
33742
35170
  borderColor?: string | null | undefined;
33743
35171
  bodyFontColor?: string | null | undefined;