@visactor/vseed 0.1.13 → 0.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.cjs +1 -1
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/builder/builder/builder.d.ts +2272 -112
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/{encodingAdapter.d.ts → adapter/encodingAdapter.d.ts} +1 -1
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/{encodingAdapter.js → adapter/encodingAdapter.js} +1 -1
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/adapter/encodingAdapter.js.map +1 -0
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/adapter/index.d.ts +1 -0
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/adapter/index.js +2 -0
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/bar.js +4 -6
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/bar.js.map +1 -1
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/color/addColorToEncoding.d.ts +8 -0
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/color/addColorToEncoding.js +13 -0
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/color/addColorToEncoding.js.map +1 -0
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/color/index.d.ts +1 -0
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/color/index.js +2 -0
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/column.js +4 -6
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/column.js.map +1 -1
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/dualAxis.js +4 -6
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/dualAxis.js.map +1 -1
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/funnel.js +4 -6
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/funnel.js.map +1 -1
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/heatmap.js +4 -6
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/heatmap.js.map +1 -1
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/index.d.ts +1 -1
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/index.js +1 -1
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/line.js +4 -6
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/line.js.map +1 -1
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/pie.js +4 -6
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/pie.js.map +1 -1
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/radar.js +4 -6
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/radar.js.map +1 -1
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/rose.js +4 -6
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/rose.js.map +1 -1
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/scatter.js +2 -4
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/scatter.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipes/axes/angle.js +1 -0
- package/dist/esm/pipeline/spec/chart/pipes/axes/angle.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipes/axes/radius.js +1 -0
- package/dist/esm/pipeline/spec/chart/pipes/axes/radius.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipes/label/label.js +26 -13
- package/dist/esm/pipeline/spec/chart/pipes/label/label.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipes/legend/colorLegend.js +3 -3
- package/dist/esm/pipeline/spec/chart/pipes/legend/colorLegend.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipes/legend/discreteLegend.js +4 -4
- package/dist/esm/pipeline/spec/chart/pipes/legend/discreteLegend.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipes/legend/pivotColorLegend.js +3 -3
- package/dist/esm/pipeline/spec/chart/pipes/legend/pivotColorLegend.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipes/legend/pivotDiscreteLegend.js +4 -4
- package/dist/esm/pipeline/spec/chart/pipes/legend/pivotDiscreteLegend.js.map +1 -1
- package/dist/esm/theme/dark.js +4 -2
- package/dist/esm/theme/dark.js.map +1 -1
- package/dist/esm/theme/light.js +4 -2
- package/dist/esm/theme/light.js.map +1 -1
- package/dist/esm/types/advancedVSeed.d.ts +1404 -36
- package/dist/esm/types/chartType/area/zArea.d.ts +39 -1
- package/dist/esm/types/chartType/areaPercent/zAreaPercent.d.ts +39 -1
- package/dist/esm/types/chartType/bar/zBar.d.ts +39 -1
- package/dist/esm/types/chartType/barParallel/zBarParallel.d.ts +39 -1
- package/dist/esm/types/chartType/barPercent/zBarPercent.d.ts +39 -1
- package/dist/esm/types/chartType/column/zColumn.d.ts +39 -1
- package/dist/esm/types/chartType/columnParallel/zColumnParallel.d.ts +39 -1
- package/dist/esm/types/chartType/columnPercent/zColumnPercent.d.ts +39 -1
- package/dist/esm/types/chartType/donut/zDonut.d.ts +39 -1
- package/dist/esm/types/chartType/dualAxis/zDualAxis.d.ts +39 -1
- package/dist/esm/types/chartType/funnel/zFunnel.d.ts +38 -0
- package/dist/esm/types/chartType/heatmap/zHeatmap.d.ts +38 -0
- package/dist/esm/types/chartType/line/zLine.d.ts +39 -1
- package/dist/esm/types/chartType/pie/zPie.d.ts +39 -1
- package/dist/esm/types/chartType/radar/zRadar.d.ts +39 -1
- package/dist/esm/types/chartType/rose/zRose.d.ts +39 -1
- package/dist/esm/types/chartType/roseParallel/zRoseParallel.d.ts +39 -1
- package/dist/esm/types/chartType/scatter/zScatter.d.ts +39 -1
- package/dist/esm/types/properties/config/axes/axis.d.ts +0 -47
- package/dist/esm/types/properties/config/axes/axis.js +0 -54
- package/dist/esm/types/properties/config/axes/bandAxis.d.ts +0 -79
- package/dist/esm/types/properties/config/axes/bandAxis.js +0 -48
- package/dist/esm/types/properties/config/axes/index.d.ts +6 -3
- package/dist/esm/types/properties/config/axes/index.js +3 -3
- package/dist/esm/types/properties/config/axes/linearAxis.d.ts +0 -81
- package/dist/esm/types/properties/config/axes/linearAxis.js +0 -45
- package/dist/esm/types/properties/config/axes/zAxis.d.ts +47 -0
- package/dist/esm/types/properties/config/axes/zAxis.js +54 -0
- package/dist/esm/types/properties/config/axes/zAxis.js.map +1 -0
- package/dist/esm/types/properties/config/axes/zBandAxis.d.ts +79 -0
- package/dist/esm/types/properties/config/axes/zBandAxis.js +48 -0
- package/dist/esm/types/properties/config/axes/zBandAxis.js.map +1 -0
- package/dist/esm/types/properties/config/axes/zLinearAxis.d.ts +81 -0
- package/dist/esm/types/properties/config/axes/zLinearAxis.js +45 -0
- package/dist/esm/types/properties/config/axes/zLinearAxis.js.map +1 -0
- package/dist/esm/types/properties/config/config.d.ts +1404 -37
- package/dist/esm/types/properties/config/config.js +1 -2
- package/dist/esm/types/properties/config/config.js.map +1 -1
- package/dist/esm/types/properties/config/label/label.d.ts +37 -0
- package/dist/esm/types/properties/config/label/zLabel.d.ts +38 -0
- package/dist/esm/types/properties/config/label/zLabel.js +11 -1
- package/dist/esm/types/properties/config/label/zLabel.js.map +1 -1
- package/dist/esm/types/properties/config/legend/legend.d.ts +6 -2
- package/dist/esm/types/properties/config/legend/legend.js +1 -1
- package/dist/esm/types/properties/config/legend/legend.js.map +1 -1
- package/dist/esm/types/properties/theme/customTheme.d.ts +1404 -36
- package/dist/esm/types/zVseed.d.ts +716 -32
- package/dist/umd/index.js +96 -90
- package/dist/umd/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/esm/pipeline/advanced/chart/pipes/encoding/encodingAdapter.js.map +0 -1
- package/dist/esm/types/properties/config/axes/axis.js.map +0 -1
- package/dist/esm/types/properties/config/axes/bandAxis.js.map +0 -1
- package/dist/esm/types/properties/config/axes/linearAxis.js.map +0 -1
@@ -168,6 +168,26 @@ export declare class Builder implements VSeedBuilder {
|
|
168
168
|
wrap?: boolean | null | undefined;
|
169
169
|
showValue?: boolean | null | undefined;
|
170
170
|
showValuePercent?: boolean | null | undefined;
|
171
|
+
autoFormat?: boolean | null | undefined;
|
172
|
+
numFormat?: {
|
173
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
174
|
+
ratio?: number | undefined;
|
175
|
+
symbol?: string | undefined;
|
176
|
+
thousandSeparator?: boolean | undefined;
|
177
|
+
prefix?: string | undefined;
|
178
|
+
suffix?: string | undefined;
|
179
|
+
fractionDigits?: number | undefined;
|
180
|
+
significantDigits?: number | undefined;
|
181
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
182
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
183
|
+
} | null | undefined;
|
184
|
+
labelFontSize?: number | null | undefined;
|
185
|
+
labelFontWeight?: string | number | null | undefined;
|
186
|
+
labelBackgroundColor?: string | null | undefined;
|
187
|
+
labelColor?: string | null | undefined;
|
188
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
189
|
+
labelPosition?: string | null | undefined;
|
190
|
+
labelOverlap?: boolean | null | undefined;
|
171
191
|
} | null | undefined;
|
172
192
|
color?: {
|
173
193
|
colorScheme?: string[] | null | undefined;
|
@@ -183,8 +203,8 @@ export declare class Builder implements VSeedBuilder {
|
|
183
203
|
maxSize?: number | null | undefined;
|
184
204
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
185
205
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
206
|
+
labelColor?: string | null | undefined;
|
186
207
|
labelFontSize?: number | null | undefined;
|
187
|
-
labelFontColor?: string | null | undefined;
|
188
208
|
labelFontWeight?: string | number | null | undefined;
|
189
209
|
} | null | undefined;
|
190
210
|
xAxis?: {
|
@@ -281,6 +301,26 @@ export declare class Builder implements VSeedBuilder {
|
|
281
301
|
wrap?: boolean | null | undefined;
|
282
302
|
showValue?: boolean | null | undefined;
|
283
303
|
showValuePercent?: boolean | null | undefined;
|
304
|
+
autoFormat?: boolean | null | undefined;
|
305
|
+
numFormat?: {
|
306
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
307
|
+
ratio?: number | undefined;
|
308
|
+
symbol?: string | undefined;
|
309
|
+
thousandSeparator?: boolean | undefined;
|
310
|
+
prefix?: string | undefined;
|
311
|
+
suffix?: string | undefined;
|
312
|
+
fractionDigits?: number | undefined;
|
313
|
+
significantDigits?: number | undefined;
|
314
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
315
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
316
|
+
} | null | undefined;
|
317
|
+
labelFontSize?: number | null | undefined;
|
318
|
+
labelFontWeight?: string | number | null | undefined;
|
319
|
+
labelBackgroundColor?: string | null | undefined;
|
320
|
+
labelColor?: string | null | undefined;
|
321
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
322
|
+
labelPosition?: string | null | undefined;
|
323
|
+
labelOverlap?: boolean | null | undefined;
|
284
324
|
} | null | undefined;
|
285
325
|
color?: {
|
286
326
|
colorScheme?: string[] | null | undefined;
|
@@ -296,8 +336,8 @@ export declare class Builder implements VSeedBuilder {
|
|
296
336
|
maxSize?: number | null | undefined;
|
297
337
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
298
338
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
339
|
+
labelColor?: string | null | undefined;
|
299
340
|
labelFontSize?: number | null | undefined;
|
300
|
-
labelFontColor?: string | null | undefined;
|
301
341
|
labelFontWeight?: string | number | null | undefined;
|
302
342
|
} | null | undefined;
|
303
343
|
xAxis?: {
|
@@ -395,6 +435,26 @@ export declare class Builder implements VSeedBuilder {
|
|
395
435
|
wrap?: boolean | null | undefined;
|
396
436
|
showValue?: boolean | null | undefined;
|
397
437
|
showValuePercent?: boolean | null | undefined;
|
438
|
+
autoFormat?: boolean | null | undefined;
|
439
|
+
numFormat?: {
|
440
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
441
|
+
ratio?: number | undefined;
|
442
|
+
symbol?: string | undefined;
|
443
|
+
thousandSeparator?: boolean | undefined;
|
444
|
+
prefix?: string | undefined;
|
445
|
+
suffix?: string | undefined;
|
446
|
+
fractionDigits?: number | undefined;
|
447
|
+
significantDigits?: number | undefined;
|
448
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
449
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
450
|
+
} | null | undefined;
|
451
|
+
labelFontSize?: number | null | undefined;
|
452
|
+
labelFontWeight?: string | number | null | undefined;
|
453
|
+
labelBackgroundColor?: string | null | undefined;
|
454
|
+
labelColor?: string | null | undefined;
|
455
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
456
|
+
labelPosition?: string | null | undefined;
|
457
|
+
labelOverlap?: boolean | null | undefined;
|
398
458
|
} | null | undefined;
|
399
459
|
color?: {
|
400
460
|
colorScheme?: string[] | null | undefined;
|
@@ -410,8 +470,8 @@ export declare class Builder implements VSeedBuilder {
|
|
410
470
|
maxSize?: number | null | undefined;
|
411
471
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
412
472
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
473
|
+
labelColor?: string | null | undefined;
|
413
474
|
labelFontSize?: number | null | undefined;
|
414
|
-
labelFontColor?: string | null | undefined;
|
415
475
|
labelFontWeight?: string | number | null | undefined;
|
416
476
|
} | null | undefined;
|
417
477
|
xAxis?: {
|
@@ -509,6 +569,26 @@ export declare class Builder implements VSeedBuilder {
|
|
509
569
|
wrap?: boolean | null | undefined;
|
510
570
|
showValue?: boolean | null | undefined;
|
511
571
|
showValuePercent?: boolean | null | undefined;
|
572
|
+
autoFormat?: boolean | null | undefined;
|
573
|
+
numFormat?: {
|
574
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
575
|
+
ratio?: number | undefined;
|
576
|
+
symbol?: string | undefined;
|
577
|
+
thousandSeparator?: boolean | undefined;
|
578
|
+
prefix?: string | undefined;
|
579
|
+
suffix?: string | undefined;
|
580
|
+
fractionDigits?: number | undefined;
|
581
|
+
significantDigits?: number | undefined;
|
582
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
583
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
584
|
+
} | null | undefined;
|
585
|
+
labelFontSize?: number | null | undefined;
|
586
|
+
labelFontWeight?: string | number | null | undefined;
|
587
|
+
labelBackgroundColor?: string | null | undefined;
|
588
|
+
labelColor?: string | null | undefined;
|
589
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
590
|
+
labelPosition?: string | null | undefined;
|
591
|
+
labelOverlap?: boolean | null | undefined;
|
512
592
|
} | null | undefined;
|
513
593
|
color?: {
|
514
594
|
colorScheme?: string[] | null | undefined;
|
@@ -524,8 +604,8 @@ export declare class Builder implements VSeedBuilder {
|
|
524
604
|
maxSize?: number | null | undefined;
|
525
605
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
526
606
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
607
|
+
labelColor?: string | null | undefined;
|
527
608
|
labelFontSize?: number | null | undefined;
|
528
|
-
labelFontColor?: string | null | undefined;
|
529
609
|
labelFontWeight?: string | number | null | undefined;
|
530
610
|
} | null | undefined;
|
531
611
|
xAxis?: {
|
@@ -623,6 +703,26 @@ export declare class Builder implements VSeedBuilder {
|
|
623
703
|
wrap?: boolean | null | undefined;
|
624
704
|
showValue?: boolean | null | undefined;
|
625
705
|
showValuePercent?: boolean | null | undefined;
|
706
|
+
autoFormat?: boolean | null | undefined;
|
707
|
+
numFormat?: {
|
708
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
709
|
+
ratio?: number | undefined;
|
710
|
+
symbol?: string | undefined;
|
711
|
+
thousandSeparator?: boolean | undefined;
|
712
|
+
prefix?: string | undefined;
|
713
|
+
suffix?: string | undefined;
|
714
|
+
fractionDigits?: number | undefined;
|
715
|
+
significantDigits?: number | undefined;
|
716
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
717
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
718
|
+
} | null | undefined;
|
719
|
+
labelFontSize?: number | null | undefined;
|
720
|
+
labelFontWeight?: string | number | null | undefined;
|
721
|
+
labelBackgroundColor?: string | null | undefined;
|
722
|
+
labelColor?: string | null | undefined;
|
723
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
724
|
+
labelPosition?: string | null | undefined;
|
725
|
+
labelOverlap?: boolean | null | undefined;
|
626
726
|
} | null | undefined;
|
627
727
|
color?: {
|
628
728
|
colorScheme?: string[] | null | undefined;
|
@@ -638,8 +738,8 @@ export declare class Builder implements VSeedBuilder {
|
|
638
738
|
maxSize?: number | null | undefined;
|
639
739
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
640
740
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
741
|
+
labelColor?: string | null | undefined;
|
641
742
|
labelFontSize?: number | null | undefined;
|
642
|
-
labelFontColor?: string | null | undefined;
|
643
743
|
labelFontWeight?: string | number | null | undefined;
|
644
744
|
} | null | undefined;
|
645
745
|
xAxis?: {
|
@@ -737,6 +837,26 @@ export declare class Builder implements VSeedBuilder {
|
|
737
837
|
wrap?: boolean | null | undefined;
|
738
838
|
showValue?: boolean | null | undefined;
|
739
839
|
showValuePercent?: boolean | null | undefined;
|
840
|
+
autoFormat?: boolean | null | undefined;
|
841
|
+
numFormat?: {
|
842
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
843
|
+
ratio?: number | undefined;
|
844
|
+
symbol?: string | undefined;
|
845
|
+
thousandSeparator?: boolean | undefined;
|
846
|
+
prefix?: string | undefined;
|
847
|
+
suffix?: string | undefined;
|
848
|
+
fractionDigits?: number | undefined;
|
849
|
+
significantDigits?: number | undefined;
|
850
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
851
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
852
|
+
} | null | undefined;
|
853
|
+
labelFontSize?: number | null | undefined;
|
854
|
+
labelFontWeight?: string | number | null | undefined;
|
855
|
+
labelBackgroundColor?: string | null | undefined;
|
856
|
+
labelColor?: string | null | undefined;
|
857
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
858
|
+
labelPosition?: string | null | undefined;
|
859
|
+
labelOverlap?: boolean | null | undefined;
|
740
860
|
} | null | undefined;
|
741
861
|
color?: {
|
742
862
|
colorScheme?: string[] | null | undefined;
|
@@ -752,8 +872,8 @@ export declare class Builder implements VSeedBuilder {
|
|
752
872
|
maxSize?: number | null | undefined;
|
753
873
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
754
874
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
875
|
+
labelColor?: string | null | undefined;
|
755
876
|
labelFontSize?: number | null | undefined;
|
756
|
-
labelFontColor?: string | null | undefined;
|
757
877
|
labelFontWeight?: string | number | null | undefined;
|
758
878
|
} | null | undefined;
|
759
879
|
xAxis?: {
|
@@ -851,6 +971,26 @@ export declare class Builder implements VSeedBuilder {
|
|
851
971
|
wrap?: boolean | null | undefined;
|
852
972
|
showValue?: boolean | null | undefined;
|
853
973
|
showValuePercent?: boolean | null | undefined;
|
974
|
+
autoFormat?: boolean | null | undefined;
|
975
|
+
numFormat?: {
|
976
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
977
|
+
ratio?: number | undefined;
|
978
|
+
symbol?: string | undefined;
|
979
|
+
thousandSeparator?: boolean | undefined;
|
980
|
+
prefix?: string | undefined;
|
981
|
+
suffix?: string | undefined;
|
982
|
+
fractionDigits?: number | undefined;
|
983
|
+
significantDigits?: number | undefined;
|
984
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
985
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
986
|
+
} | null | undefined;
|
987
|
+
labelFontSize?: number | null | undefined;
|
988
|
+
labelFontWeight?: string | number | null | undefined;
|
989
|
+
labelBackgroundColor?: string | null | undefined;
|
990
|
+
labelColor?: string | null | undefined;
|
991
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
992
|
+
labelPosition?: string | null | undefined;
|
993
|
+
labelOverlap?: boolean | null | undefined;
|
854
994
|
} | null | undefined;
|
855
995
|
color?: {
|
856
996
|
colorScheme?: string[] | null | undefined;
|
@@ -866,8 +1006,8 @@ export declare class Builder implements VSeedBuilder {
|
|
866
1006
|
maxSize?: number | null | undefined;
|
867
1007
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
868
1008
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
1009
|
+
labelColor?: string | null | undefined;
|
869
1010
|
labelFontSize?: number | null | undefined;
|
870
|
-
labelFontColor?: string | null | undefined;
|
871
1011
|
labelFontWeight?: string | number | null | undefined;
|
872
1012
|
} | null | undefined;
|
873
1013
|
xAxis?: {
|
@@ -965,6 +1105,26 @@ export declare class Builder implements VSeedBuilder {
|
|
965
1105
|
wrap?: boolean | null | undefined;
|
966
1106
|
showValue?: boolean | null | undefined;
|
967
1107
|
showValuePercent?: boolean | null | undefined;
|
1108
|
+
autoFormat?: boolean | null | undefined;
|
1109
|
+
numFormat?: {
|
1110
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
1111
|
+
ratio?: number | undefined;
|
1112
|
+
symbol?: string | undefined;
|
1113
|
+
thousandSeparator?: boolean | undefined;
|
1114
|
+
prefix?: string | undefined;
|
1115
|
+
suffix?: string | undefined;
|
1116
|
+
fractionDigits?: number | undefined;
|
1117
|
+
significantDigits?: number | undefined;
|
1118
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
1119
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
1120
|
+
} | null | undefined;
|
1121
|
+
labelFontSize?: number | null | undefined;
|
1122
|
+
labelFontWeight?: string | number | null | undefined;
|
1123
|
+
labelBackgroundColor?: string | null | undefined;
|
1124
|
+
labelColor?: string | null | undefined;
|
1125
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
1126
|
+
labelPosition?: string | null | undefined;
|
1127
|
+
labelOverlap?: boolean | null | undefined;
|
968
1128
|
} | null | undefined;
|
969
1129
|
color?: {
|
970
1130
|
colorScheme?: string[] | null | undefined;
|
@@ -980,8 +1140,8 @@ export declare class Builder implements VSeedBuilder {
|
|
980
1140
|
maxSize?: number | null | undefined;
|
981
1141
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
982
1142
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
1143
|
+
labelColor?: string | null | undefined;
|
983
1144
|
labelFontSize?: number | null | undefined;
|
984
|
-
labelFontColor?: string | null | undefined;
|
985
1145
|
labelFontWeight?: string | number | null | undefined;
|
986
1146
|
} | null | undefined;
|
987
1147
|
xAxis?: {
|
@@ -1078,6 +1238,26 @@ export declare class Builder implements VSeedBuilder {
|
|
1078
1238
|
wrap?: boolean | null | undefined;
|
1079
1239
|
showValue?: boolean | null | undefined;
|
1080
1240
|
showValuePercent?: boolean | null | undefined;
|
1241
|
+
autoFormat?: boolean | null | undefined;
|
1242
|
+
numFormat?: {
|
1243
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
1244
|
+
ratio?: number | undefined;
|
1245
|
+
symbol?: string | undefined;
|
1246
|
+
thousandSeparator?: boolean | undefined;
|
1247
|
+
prefix?: string | undefined;
|
1248
|
+
suffix?: string | undefined;
|
1249
|
+
fractionDigits?: number | undefined;
|
1250
|
+
significantDigits?: number | undefined;
|
1251
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
1252
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
1253
|
+
} | null | undefined;
|
1254
|
+
labelFontSize?: number | null | undefined;
|
1255
|
+
labelFontWeight?: string | number | null | undefined;
|
1256
|
+
labelBackgroundColor?: string | null | undefined;
|
1257
|
+
labelColor?: string | null | undefined;
|
1258
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
1259
|
+
labelPosition?: string | null | undefined;
|
1260
|
+
labelOverlap?: boolean | null | undefined;
|
1081
1261
|
} | null | undefined;
|
1082
1262
|
color?: {
|
1083
1263
|
colorScheme?: string[] | null | undefined;
|
@@ -1093,8 +1273,8 @@ export declare class Builder implements VSeedBuilder {
|
|
1093
1273
|
maxSize?: number | null | undefined;
|
1094
1274
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
1095
1275
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
1276
|
+
labelColor?: string | null | undefined;
|
1096
1277
|
labelFontSize?: number | null | undefined;
|
1097
|
-
labelFontColor?: string | null | undefined;
|
1098
1278
|
labelFontWeight?: string | number | null | undefined;
|
1099
1279
|
} | null | undefined;
|
1100
1280
|
xAxis?: {
|
@@ -1191,6 +1371,26 @@ export declare class Builder implements VSeedBuilder {
|
|
1191
1371
|
wrap?: boolean | null | undefined;
|
1192
1372
|
showValue?: boolean | null | undefined;
|
1193
1373
|
showValuePercent?: boolean | null | undefined;
|
1374
|
+
autoFormat?: boolean | null | undefined;
|
1375
|
+
numFormat?: {
|
1376
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
1377
|
+
ratio?: number | undefined;
|
1378
|
+
symbol?: string | undefined;
|
1379
|
+
thousandSeparator?: boolean | undefined;
|
1380
|
+
prefix?: string | undefined;
|
1381
|
+
suffix?: string | undefined;
|
1382
|
+
fractionDigits?: number | undefined;
|
1383
|
+
significantDigits?: number | undefined;
|
1384
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
1385
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
1386
|
+
} | null | undefined;
|
1387
|
+
labelFontSize?: number | null | undefined;
|
1388
|
+
labelFontWeight?: string | number | null | undefined;
|
1389
|
+
labelBackgroundColor?: string | null | undefined;
|
1390
|
+
labelColor?: string | null | undefined;
|
1391
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
1392
|
+
labelPosition?: string | null | undefined;
|
1393
|
+
labelOverlap?: boolean | null | undefined;
|
1194
1394
|
} | null | undefined;
|
1195
1395
|
color?: {
|
1196
1396
|
colorScheme?: string[] | null | undefined;
|
@@ -1206,8 +1406,8 @@ export declare class Builder implements VSeedBuilder {
|
|
1206
1406
|
maxSize?: number | null | undefined;
|
1207
1407
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
1208
1408
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
1409
|
+
labelColor?: string | null | undefined;
|
1209
1410
|
labelFontSize?: number | null | undefined;
|
1210
|
-
labelFontColor?: string | null | undefined;
|
1211
1411
|
labelFontWeight?: string | number | null | undefined;
|
1212
1412
|
} | null | undefined;
|
1213
1413
|
xAxis?: {
|
@@ -1305,6 +1505,26 @@ export declare class Builder implements VSeedBuilder {
|
|
1305
1505
|
wrap?: boolean | null | undefined;
|
1306
1506
|
showValue?: boolean | null | undefined;
|
1307
1507
|
showValuePercent?: boolean | null | undefined;
|
1508
|
+
autoFormat?: boolean | null | undefined;
|
1509
|
+
numFormat?: {
|
1510
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
1511
|
+
ratio?: number | undefined;
|
1512
|
+
symbol?: string | undefined;
|
1513
|
+
thousandSeparator?: boolean | undefined;
|
1514
|
+
prefix?: string | undefined;
|
1515
|
+
suffix?: string | undefined;
|
1516
|
+
fractionDigits?: number | undefined;
|
1517
|
+
significantDigits?: number | undefined;
|
1518
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
1519
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
1520
|
+
} | null | undefined;
|
1521
|
+
labelFontSize?: number | null | undefined;
|
1522
|
+
labelFontWeight?: string | number | null | undefined;
|
1523
|
+
labelBackgroundColor?: string | null | undefined;
|
1524
|
+
labelColor?: string | null | undefined;
|
1525
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
1526
|
+
labelPosition?: string | null | undefined;
|
1527
|
+
labelOverlap?: boolean | null | undefined;
|
1308
1528
|
} | null | undefined;
|
1309
1529
|
color?: {
|
1310
1530
|
colorScheme?: string[] | null | undefined;
|
@@ -1320,8 +1540,8 @@ export declare class Builder implements VSeedBuilder {
|
|
1320
1540
|
maxSize?: number | null | undefined;
|
1321
1541
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
1322
1542
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
1543
|
+
labelColor?: string | null | undefined;
|
1323
1544
|
labelFontSize?: number | null | undefined;
|
1324
|
-
labelFontColor?: string | null | undefined;
|
1325
1545
|
labelFontWeight?: string | number | null | undefined;
|
1326
1546
|
} | null | undefined;
|
1327
1547
|
dualChartType?: {
|
@@ -1544,6 +1764,26 @@ export declare class Builder implements VSeedBuilder {
|
|
1544
1764
|
wrap?: boolean | null | undefined;
|
1545
1765
|
showValue?: boolean | null | undefined;
|
1546
1766
|
showValuePercent?: boolean | null | undefined;
|
1767
|
+
autoFormat?: boolean | null | undefined;
|
1768
|
+
numFormat?: {
|
1769
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
1770
|
+
ratio?: number | undefined;
|
1771
|
+
symbol?: string | undefined;
|
1772
|
+
thousandSeparator?: boolean | undefined;
|
1773
|
+
prefix?: string | undefined;
|
1774
|
+
suffix?: string | undefined;
|
1775
|
+
fractionDigits?: number | undefined;
|
1776
|
+
significantDigits?: number | undefined;
|
1777
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
1778
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
1779
|
+
} | null | undefined;
|
1780
|
+
labelFontSize?: number | null | undefined;
|
1781
|
+
labelFontWeight?: string | number | null | undefined;
|
1782
|
+
labelBackgroundColor?: string | null | undefined;
|
1783
|
+
labelColor?: string | null | undefined;
|
1784
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
1785
|
+
labelPosition?: string | null | undefined;
|
1786
|
+
labelOverlap?: boolean | null | undefined;
|
1547
1787
|
} | null | undefined;
|
1548
1788
|
color?: {
|
1549
1789
|
colorScheme?: string[] | null | undefined;
|
@@ -1559,8 +1799,8 @@ export declare class Builder implements VSeedBuilder {
|
|
1559
1799
|
maxSize?: number | null | undefined;
|
1560
1800
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
1561
1801
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
1802
|
+
labelColor?: string | null | undefined;
|
1562
1803
|
labelFontSize?: number | null | undefined;
|
1563
|
-
labelFontColor?: string | null | undefined;
|
1564
1804
|
labelFontWeight?: string | number | null | undefined;
|
1565
1805
|
} | null | undefined;
|
1566
1806
|
} | null | undefined;
|
@@ -1571,6 +1811,26 @@ export declare class Builder implements VSeedBuilder {
|
|
1571
1811
|
wrap?: boolean | null | undefined;
|
1572
1812
|
showValue?: boolean | null | undefined;
|
1573
1813
|
showValuePercent?: boolean | null | undefined;
|
1814
|
+
autoFormat?: boolean | null | undefined;
|
1815
|
+
numFormat?: {
|
1816
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
1817
|
+
ratio?: number | undefined;
|
1818
|
+
symbol?: string | undefined;
|
1819
|
+
thousandSeparator?: boolean | undefined;
|
1820
|
+
prefix?: string | undefined;
|
1821
|
+
suffix?: string | undefined;
|
1822
|
+
fractionDigits?: number | undefined;
|
1823
|
+
significantDigits?: number | undefined;
|
1824
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
1825
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
1826
|
+
} | null | undefined;
|
1827
|
+
labelFontSize?: number | null | undefined;
|
1828
|
+
labelFontWeight?: string | number | null | undefined;
|
1829
|
+
labelBackgroundColor?: string | null | undefined;
|
1830
|
+
labelColor?: string | null | undefined;
|
1831
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
1832
|
+
labelPosition?: string | null | undefined;
|
1833
|
+
labelOverlap?: boolean | null | undefined;
|
1574
1834
|
} | null | undefined;
|
1575
1835
|
color?: {
|
1576
1836
|
colorScheme?: string[] | null | undefined;
|
@@ -1586,8 +1846,8 @@ export declare class Builder implements VSeedBuilder {
|
|
1586
1846
|
maxSize?: number | null | undefined;
|
1587
1847
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
1588
1848
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
1849
|
+
labelColor?: string | null | undefined;
|
1589
1850
|
labelFontSize?: number | null | undefined;
|
1590
|
-
labelFontColor?: string | null | undefined;
|
1591
1851
|
labelFontWeight?: string | number | null | undefined;
|
1592
1852
|
} | null | undefined;
|
1593
1853
|
} | null | undefined;
|
@@ -1598,6 +1858,26 @@ export declare class Builder implements VSeedBuilder {
|
|
1598
1858
|
wrap?: boolean | null | undefined;
|
1599
1859
|
showValue?: boolean | null | undefined;
|
1600
1860
|
showValuePercent?: boolean | null | undefined;
|
1861
|
+
autoFormat?: boolean | null | undefined;
|
1862
|
+
numFormat?: {
|
1863
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
1864
|
+
ratio?: number | undefined;
|
1865
|
+
symbol?: string | undefined;
|
1866
|
+
thousandSeparator?: boolean | undefined;
|
1867
|
+
prefix?: string | undefined;
|
1868
|
+
suffix?: string | undefined;
|
1869
|
+
fractionDigits?: number | undefined;
|
1870
|
+
significantDigits?: number | undefined;
|
1871
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
1872
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
1873
|
+
} | null | undefined;
|
1874
|
+
labelFontSize?: number | null | undefined;
|
1875
|
+
labelFontWeight?: string | number | null | undefined;
|
1876
|
+
labelBackgroundColor?: string | null | undefined;
|
1877
|
+
labelColor?: string | null | undefined;
|
1878
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
1879
|
+
labelPosition?: string | null | undefined;
|
1880
|
+
labelOverlap?: boolean | null | undefined;
|
1601
1881
|
} | null | undefined;
|
1602
1882
|
color?: {
|
1603
1883
|
colorScheme?: string[] | null | undefined;
|
@@ -1613,8 +1893,8 @@ export declare class Builder implements VSeedBuilder {
|
|
1613
1893
|
maxSize?: number | null | undefined;
|
1614
1894
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
1615
1895
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
1896
|
+
labelColor?: string | null | undefined;
|
1616
1897
|
labelFontSize?: number | null | undefined;
|
1617
|
-
labelFontColor?: string | null | undefined;
|
1618
1898
|
labelFontWeight?: string | number | null | undefined;
|
1619
1899
|
} | null | undefined;
|
1620
1900
|
} | null | undefined;
|
@@ -1625,6 +1905,26 @@ export declare class Builder implements VSeedBuilder {
|
|
1625
1905
|
wrap?: boolean | null | undefined;
|
1626
1906
|
showValue?: boolean | null | undefined;
|
1627
1907
|
showValuePercent?: boolean | null | undefined;
|
1908
|
+
autoFormat?: boolean | null | undefined;
|
1909
|
+
numFormat?: {
|
1910
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
1911
|
+
ratio?: number | undefined;
|
1912
|
+
symbol?: string | undefined;
|
1913
|
+
thousandSeparator?: boolean | undefined;
|
1914
|
+
prefix?: string | undefined;
|
1915
|
+
suffix?: string | undefined;
|
1916
|
+
fractionDigits?: number | undefined;
|
1917
|
+
significantDigits?: number | undefined;
|
1918
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
1919
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
1920
|
+
} | null | undefined;
|
1921
|
+
labelFontSize?: number | null | undefined;
|
1922
|
+
labelFontWeight?: string | number | null | undefined;
|
1923
|
+
labelBackgroundColor?: string | null | undefined;
|
1924
|
+
labelColor?: string | null | undefined;
|
1925
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
1926
|
+
labelPosition?: string | null | undefined;
|
1927
|
+
labelOverlap?: boolean | null | undefined;
|
1628
1928
|
} | null | undefined;
|
1629
1929
|
color?: {
|
1630
1930
|
colorScheme?: string[] | null | undefined;
|
@@ -1640,8 +1940,8 @@ export declare class Builder implements VSeedBuilder {
|
|
1640
1940
|
maxSize?: number | null | undefined;
|
1641
1941
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
1642
1942
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
1943
|
+
labelColor?: string | null | undefined;
|
1643
1944
|
labelFontSize?: number | null | undefined;
|
1644
|
-
labelFontColor?: string | null | undefined;
|
1645
1945
|
labelFontWeight?: string | number | null | undefined;
|
1646
1946
|
} | null | undefined;
|
1647
1947
|
} | null | undefined;
|
@@ -1652,6 +1952,26 @@ export declare class Builder implements VSeedBuilder {
|
|
1652
1952
|
wrap?: boolean | null | undefined;
|
1653
1953
|
showValue?: boolean | null | undefined;
|
1654
1954
|
showValuePercent?: boolean | null | undefined;
|
1955
|
+
autoFormat?: boolean | null | undefined;
|
1956
|
+
numFormat?: {
|
1957
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
1958
|
+
ratio?: number | undefined;
|
1959
|
+
symbol?: string | undefined;
|
1960
|
+
thousandSeparator?: boolean | undefined;
|
1961
|
+
prefix?: string | undefined;
|
1962
|
+
suffix?: string | undefined;
|
1963
|
+
fractionDigits?: number | undefined;
|
1964
|
+
significantDigits?: number | undefined;
|
1965
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
1966
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
1967
|
+
} | null | undefined;
|
1968
|
+
labelFontSize?: number | null | undefined;
|
1969
|
+
labelFontWeight?: string | number | null | undefined;
|
1970
|
+
labelBackgroundColor?: string | null | undefined;
|
1971
|
+
labelColor?: string | null | undefined;
|
1972
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
1973
|
+
labelPosition?: string | null | undefined;
|
1974
|
+
labelOverlap?: boolean | null | undefined;
|
1655
1975
|
} | null | undefined;
|
1656
1976
|
color?: {
|
1657
1977
|
colorScheme?: string[] | null | undefined;
|
@@ -1667,8 +1987,8 @@ export declare class Builder implements VSeedBuilder {
|
|
1667
1987
|
maxSize?: number | null | undefined;
|
1668
1988
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
1669
1989
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
1990
|
+
labelColor?: string | null | undefined;
|
1670
1991
|
labelFontSize?: number | null | undefined;
|
1671
|
-
labelFontColor?: string | null | undefined;
|
1672
1992
|
labelFontWeight?: string | number | null | undefined;
|
1673
1993
|
} | null | undefined;
|
1674
1994
|
} | null | undefined;
|
@@ -1679,6 +1999,26 @@ export declare class Builder implements VSeedBuilder {
|
|
1679
1999
|
wrap?: boolean | null | undefined;
|
1680
2000
|
showValue?: boolean | null | undefined;
|
1681
2001
|
showValuePercent?: boolean | null | undefined;
|
2002
|
+
autoFormat?: boolean | null | undefined;
|
2003
|
+
numFormat?: {
|
2004
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
2005
|
+
ratio?: number | undefined;
|
2006
|
+
symbol?: string | undefined;
|
2007
|
+
thousandSeparator?: boolean | undefined;
|
2008
|
+
prefix?: string | undefined;
|
2009
|
+
suffix?: string | undefined;
|
2010
|
+
fractionDigits?: number | undefined;
|
2011
|
+
significantDigits?: number | undefined;
|
2012
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
2013
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
2014
|
+
} | null | undefined;
|
2015
|
+
labelFontSize?: number | null | undefined;
|
2016
|
+
labelFontWeight?: string | number | null | undefined;
|
2017
|
+
labelBackgroundColor?: string | null | undefined;
|
2018
|
+
labelColor?: string | null | undefined;
|
2019
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
2020
|
+
labelPosition?: string | null | undefined;
|
2021
|
+
labelOverlap?: boolean | null | undefined;
|
1682
2022
|
} | null | undefined;
|
1683
2023
|
color?: {
|
1684
2024
|
colorScheme?: string[] | null | undefined;
|
@@ -1694,8 +2034,8 @@ export declare class Builder implements VSeedBuilder {
|
|
1694
2034
|
maxSize?: number | null | undefined;
|
1695
2035
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
1696
2036
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
2037
|
+
labelColor?: string | null | undefined;
|
1697
2038
|
labelFontSize?: number | null | undefined;
|
1698
|
-
labelFontColor?: string | null | undefined;
|
1699
2039
|
labelFontWeight?: string | number | null | undefined;
|
1700
2040
|
} | null | undefined;
|
1701
2041
|
} | null | undefined;
|
@@ -1706,6 +2046,26 @@ export declare class Builder implements VSeedBuilder {
|
|
1706
2046
|
wrap?: boolean | null | undefined;
|
1707
2047
|
showValue?: boolean | null | undefined;
|
1708
2048
|
showValuePercent?: boolean | null | undefined;
|
2049
|
+
autoFormat?: boolean | null | undefined;
|
2050
|
+
numFormat?: {
|
2051
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
2052
|
+
ratio?: number | undefined;
|
2053
|
+
symbol?: string | undefined;
|
2054
|
+
thousandSeparator?: boolean | undefined;
|
2055
|
+
prefix?: string | undefined;
|
2056
|
+
suffix?: string | undefined;
|
2057
|
+
fractionDigits?: number | undefined;
|
2058
|
+
significantDigits?: number | undefined;
|
2059
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
2060
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
2061
|
+
} | null | undefined;
|
2062
|
+
labelFontSize?: number | null | undefined;
|
2063
|
+
labelFontWeight?: string | number | null | undefined;
|
2064
|
+
labelBackgroundColor?: string | null | undefined;
|
2065
|
+
labelColor?: string | null | undefined;
|
2066
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
2067
|
+
labelPosition?: string | null | undefined;
|
2068
|
+
labelOverlap?: boolean | null | undefined;
|
1709
2069
|
} | null | undefined;
|
1710
2070
|
color?: {
|
1711
2071
|
colorScheme?: string[] | null | undefined;
|
@@ -1721,8 +2081,8 @@ export declare class Builder implements VSeedBuilder {
|
|
1721
2081
|
maxSize?: number | null | undefined;
|
1722
2082
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
1723
2083
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
2084
|
+
labelColor?: string | null | undefined;
|
1724
2085
|
labelFontSize?: number | null | undefined;
|
1725
|
-
labelFontColor?: string | null | undefined;
|
1726
2086
|
labelFontWeight?: string | number | null | undefined;
|
1727
2087
|
} | null | undefined;
|
1728
2088
|
} | null | undefined;
|
@@ -2000,6 +2360,26 @@ export declare class Builder implements VSeedBuilder {
|
|
2000
2360
|
wrap?: boolean | null | undefined;
|
2001
2361
|
showValue?: boolean | null | undefined;
|
2002
2362
|
showValuePercent?: boolean | null | undefined;
|
2363
|
+
autoFormat?: boolean | null | undefined;
|
2364
|
+
numFormat?: {
|
2365
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
2366
|
+
ratio?: number | undefined;
|
2367
|
+
symbol?: string | undefined;
|
2368
|
+
thousandSeparator?: boolean | undefined;
|
2369
|
+
prefix?: string | undefined;
|
2370
|
+
suffix?: string | undefined;
|
2371
|
+
fractionDigits?: number | undefined;
|
2372
|
+
significantDigits?: number | undefined;
|
2373
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
2374
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
2375
|
+
} | null | undefined;
|
2376
|
+
labelFontSize?: number | null | undefined;
|
2377
|
+
labelFontWeight?: string | number | null | undefined;
|
2378
|
+
labelBackgroundColor?: string | null | undefined;
|
2379
|
+
labelColor?: string | null | undefined;
|
2380
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
2381
|
+
labelPosition?: string | null | undefined;
|
2382
|
+
labelOverlap?: boolean | null | undefined;
|
2003
2383
|
} | null | undefined;
|
2004
2384
|
color?: {
|
2005
2385
|
colorScheme?: string[] | null | undefined;
|
@@ -2015,8 +2395,8 @@ export declare class Builder implements VSeedBuilder {
|
|
2015
2395
|
maxSize?: number | null | undefined;
|
2016
2396
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
2017
2397
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
2398
|
+
labelColor?: string | null | undefined;
|
2018
2399
|
labelFontSize?: number | null | undefined;
|
2019
|
-
labelFontColor?: string | null | undefined;
|
2020
2400
|
labelFontWeight?: string | number | null | undefined;
|
2021
2401
|
} | null | undefined;
|
2022
2402
|
xAxis?: {
|
@@ -2113,6 +2493,26 @@ export declare class Builder implements VSeedBuilder {
|
|
2113
2493
|
wrap?: boolean | null | undefined;
|
2114
2494
|
showValue?: boolean | null | undefined;
|
2115
2495
|
showValuePercent?: boolean | null | undefined;
|
2496
|
+
autoFormat?: boolean | null | undefined;
|
2497
|
+
numFormat?: {
|
2498
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
2499
|
+
ratio?: number | undefined;
|
2500
|
+
symbol?: string | undefined;
|
2501
|
+
thousandSeparator?: boolean | undefined;
|
2502
|
+
prefix?: string | undefined;
|
2503
|
+
suffix?: string | undefined;
|
2504
|
+
fractionDigits?: number | undefined;
|
2505
|
+
significantDigits?: number | undefined;
|
2506
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
2507
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
2508
|
+
} | null | undefined;
|
2509
|
+
labelFontSize?: number | null | undefined;
|
2510
|
+
labelFontWeight?: string | number | null | undefined;
|
2511
|
+
labelBackgroundColor?: string | null | undefined;
|
2512
|
+
labelColor?: string | null | undefined;
|
2513
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
2514
|
+
labelPosition?: string | null | undefined;
|
2515
|
+
labelOverlap?: boolean | null | undefined;
|
2116
2516
|
} | null | undefined;
|
2117
2517
|
color?: {
|
2118
2518
|
colorScheme?: string[] | null | undefined;
|
@@ -2128,8 +2528,8 @@ export declare class Builder implements VSeedBuilder {
|
|
2128
2528
|
maxSize?: number | null | undefined;
|
2129
2529
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
2130
2530
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
2531
|
+
labelColor?: string | null | undefined;
|
2131
2532
|
labelFontSize?: number | null | undefined;
|
2132
|
-
labelFontColor?: string | null | undefined;
|
2133
2533
|
labelFontWeight?: string | number | null | undefined;
|
2134
2534
|
} | null | undefined;
|
2135
2535
|
xAxis?: {
|
@@ -2227,6 +2627,26 @@ export declare class Builder implements VSeedBuilder {
|
|
2227
2627
|
wrap?: boolean | null | undefined;
|
2228
2628
|
showValue?: boolean | null | undefined;
|
2229
2629
|
showValuePercent?: boolean | null | undefined;
|
2630
|
+
autoFormat?: boolean | null | undefined;
|
2631
|
+
numFormat?: {
|
2632
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
2633
|
+
ratio?: number | undefined;
|
2634
|
+
symbol?: string | undefined;
|
2635
|
+
thousandSeparator?: boolean | undefined;
|
2636
|
+
prefix?: string | undefined;
|
2637
|
+
suffix?: string | undefined;
|
2638
|
+
fractionDigits?: number | undefined;
|
2639
|
+
significantDigits?: number | undefined;
|
2640
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
2641
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
2642
|
+
} | null | undefined;
|
2643
|
+
labelFontSize?: number | null | undefined;
|
2644
|
+
labelFontWeight?: string | number | null | undefined;
|
2645
|
+
labelBackgroundColor?: string | null | undefined;
|
2646
|
+
labelColor?: string | null | undefined;
|
2647
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
2648
|
+
labelPosition?: string | null | undefined;
|
2649
|
+
labelOverlap?: boolean | null | undefined;
|
2230
2650
|
} | null | undefined;
|
2231
2651
|
color?: {
|
2232
2652
|
colorScheme?: string[] | null | undefined;
|
@@ -2242,8 +2662,8 @@ export declare class Builder implements VSeedBuilder {
|
|
2242
2662
|
maxSize?: number | null | undefined;
|
2243
2663
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
2244
2664
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
2665
|
+
labelColor?: string | null | undefined;
|
2245
2666
|
labelFontSize?: number | null | undefined;
|
2246
|
-
labelFontColor?: string | null | undefined;
|
2247
2667
|
labelFontWeight?: string | number | null | undefined;
|
2248
2668
|
} | null | undefined;
|
2249
2669
|
xAxis?: {
|
@@ -2341,6 +2761,26 @@ export declare class Builder implements VSeedBuilder {
|
|
2341
2761
|
wrap?: boolean | null | undefined;
|
2342
2762
|
showValue?: boolean | null | undefined;
|
2343
2763
|
showValuePercent?: boolean | null | undefined;
|
2764
|
+
autoFormat?: boolean | null | undefined;
|
2765
|
+
numFormat?: {
|
2766
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
2767
|
+
ratio?: number | undefined;
|
2768
|
+
symbol?: string | undefined;
|
2769
|
+
thousandSeparator?: boolean | undefined;
|
2770
|
+
prefix?: string | undefined;
|
2771
|
+
suffix?: string | undefined;
|
2772
|
+
fractionDigits?: number | undefined;
|
2773
|
+
significantDigits?: number | undefined;
|
2774
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
2775
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
2776
|
+
} | null | undefined;
|
2777
|
+
labelFontSize?: number | null | undefined;
|
2778
|
+
labelFontWeight?: string | number | null | undefined;
|
2779
|
+
labelBackgroundColor?: string | null | undefined;
|
2780
|
+
labelColor?: string | null | undefined;
|
2781
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
2782
|
+
labelPosition?: string | null | undefined;
|
2783
|
+
labelOverlap?: boolean | null | undefined;
|
2344
2784
|
} | null | undefined;
|
2345
2785
|
color?: {
|
2346
2786
|
colorScheme?: string[] | null | undefined;
|
@@ -2356,8 +2796,8 @@ export declare class Builder implements VSeedBuilder {
|
|
2356
2796
|
maxSize?: number | null | undefined;
|
2357
2797
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
2358
2798
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
2799
|
+
labelColor?: string | null | undefined;
|
2359
2800
|
labelFontSize?: number | null | undefined;
|
2360
|
-
labelFontColor?: string | null | undefined;
|
2361
2801
|
labelFontWeight?: string | number | null | undefined;
|
2362
2802
|
} | null | undefined;
|
2363
2803
|
xAxis?: {
|
@@ -2455,6 +2895,26 @@ export declare class Builder implements VSeedBuilder {
|
|
2455
2895
|
wrap?: boolean | null | undefined;
|
2456
2896
|
showValue?: boolean | null | undefined;
|
2457
2897
|
showValuePercent?: boolean | null | undefined;
|
2898
|
+
autoFormat?: boolean | null | undefined;
|
2899
|
+
numFormat?: {
|
2900
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
2901
|
+
ratio?: number | undefined;
|
2902
|
+
symbol?: string | undefined;
|
2903
|
+
thousandSeparator?: boolean | undefined;
|
2904
|
+
prefix?: string | undefined;
|
2905
|
+
suffix?: string | undefined;
|
2906
|
+
fractionDigits?: number | undefined;
|
2907
|
+
significantDigits?: number | undefined;
|
2908
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
2909
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
2910
|
+
} | null | undefined;
|
2911
|
+
labelFontSize?: number | null | undefined;
|
2912
|
+
labelFontWeight?: string | number | null | undefined;
|
2913
|
+
labelBackgroundColor?: string | null | undefined;
|
2914
|
+
labelColor?: string | null | undefined;
|
2915
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
2916
|
+
labelPosition?: string | null | undefined;
|
2917
|
+
labelOverlap?: boolean | null | undefined;
|
2458
2918
|
} | null | undefined;
|
2459
2919
|
color?: {
|
2460
2920
|
colorScheme?: string[] | null | undefined;
|
@@ -2470,8 +2930,8 @@ export declare class Builder implements VSeedBuilder {
|
|
2470
2930
|
maxSize?: number | null | undefined;
|
2471
2931
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
2472
2932
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
2933
|
+
labelColor?: string | null | undefined;
|
2473
2934
|
labelFontSize?: number | null | undefined;
|
2474
|
-
labelFontColor?: string | null | undefined;
|
2475
2935
|
labelFontWeight?: string | number | null | undefined;
|
2476
2936
|
} | null | undefined;
|
2477
2937
|
xAxis?: {
|
@@ -2569,6 +3029,26 @@ export declare class Builder implements VSeedBuilder {
|
|
2569
3029
|
wrap?: boolean | null | undefined;
|
2570
3030
|
showValue?: boolean | null | undefined;
|
2571
3031
|
showValuePercent?: boolean | null | undefined;
|
3032
|
+
autoFormat?: boolean | null | undefined;
|
3033
|
+
numFormat?: {
|
3034
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
3035
|
+
ratio?: number | undefined;
|
3036
|
+
symbol?: string | undefined;
|
3037
|
+
thousandSeparator?: boolean | undefined;
|
3038
|
+
prefix?: string | undefined;
|
3039
|
+
suffix?: string | undefined;
|
3040
|
+
fractionDigits?: number | undefined;
|
3041
|
+
significantDigits?: number | undefined;
|
3042
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
3043
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
3044
|
+
} | null | undefined;
|
3045
|
+
labelFontSize?: number | null | undefined;
|
3046
|
+
labelFontWeight?: string | number | null | undefined;
|
3047
|
+
labelBackgroundColor?: string | null | undefined;
|
3048
|
+
labelColor?: string | null | undefined;
|
3049
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
3050
|
+
labelPosition?: string | null | undefined;
|
3051
|
+
labelOverlap?: boolean | null | undefined;
|
2572
3052
|
} | null | undefined;
|
2573
3053
|
color?: {
|
2574
3054
|
colorScheme?: string[] | null | undefined;
|
@@ -2584,8 +3064,8 @@ export declare class Builder implements VSeedBuilder {
|
|
2584
3064
|
maxSize?: number | null | undefined;
|
2585
3065
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
2586
3066
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
3067
|
+
labelColor?: string | null | undefined;
|
2587
3068
|
labelFontSize?: number | null | undefined;
|
2588
|
-
labelFontColor?: string | null | undefined;
|
2589
3069
|
labelFontWeight?: string | number | null | undefined;
|
2590
3070
|
} | null | undefined;
|
2591
3071
|
xAxis?: {
|
@@ -2683,6 +3163,26 @@ export declare class Builder implements VSeedBuilder {
|
|
2683
3163
|
wrap?: boolean | null | undefined;
|
2684
3164
|
showValue?: boolean | null | undefined;
|
2685
3165
|
showValuePercent?: boolean | null | undefined;
|
3166
|
+
autoFormat?: boolean | null | undefined;
|
3167
|
+
numFormat?: {
|
3168
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
3169
|
+
ratio?: number | undefined;
|
3170
|
+
symbol?: string | undefined;
|
3171
|
+
thousandSeparator?: boolean | undefined;
|
3172
|
+
prefix?: string | undefined;
|
3173
|
+
suffix?: string | undefined;
|
3174
|
+
fractionDigits?: number | undefined;
|
3175
|
+
significantDigits?: number | undefined;
|
3176
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
3177
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
3178
|
+
} | null | undefined;
|
3179
|
+
labelFontSize?: number | null | undefined;
|
3180
|
+
labelFontWeight?: string | number | null | undefined;
|
3181
|
+
labelBackgroundColor?: string | null | undefined;
|
3182
|
+
labelColor?: string | null | undefined;
|
3183
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
3184
|
+
labelPosition?: string | null | undefined;
|
3185
|
+
labelOverlap?: boolean | null | undefined;
|
2686
3186
|
} | null | undefined;
|
2687
3187
|
color?: {
|
2688
3188
|
colorScheme?: string[] | null | undefined;
|
@@ -2698,8 +3198,8 @@ export declare class Builder implements VSeedBuilder {
|
|
2698
3198
|
maxSize?: number | null | undefined;
|
2699
3199
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
2700
3200
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
3201
|
+
labelColor?: string | null | undefined;
|
2701
3202
|
labelFontSize?: number | null | undefined;
|
2702
|
-
labelFontColor?: string | null | undefined;
|
2703
3203
|
labelFontWeight?: string | number | null | undefined;
|
2704
3204
|
} | null | undefined;
|
2705
3205
|
xAxis?: {
|
@@ -2797,6 +3297,26 @@ export declare class Builder implements VSeedBuilder {
|
|
2797
3297
|
wrap?: boolean | null | undefined;
|
2798
3298
|
showValue?: boolean | null | undefined;
|
2799
3299
|
showValuePercent?: boolean | null | undefined;
|
3300
|
+
autoFormat?: boolean | null | undefined;
|
3301
|
+
numFormat?: {
|
3302
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
3303
|
+
ratio?: number | undefined;
|
3304
|
+
symbol?: string | undefined;
|
3305
|
+
thousandSeparator?: boolean | undefined;
|
3306
|
+
prefix?: string | undefined;
|
3307
|
+
suffix?: string | undefined;
|
3308
|
+
fractionDigits?: number | undefined;
|
3309
|
+
significantDigits?: number | undefined;
|
3310
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
3311
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
3312
|
+
} | null | undefined;
|
3313
|
+
labelFontSize?: number | null | undefined;
|
3314
|
+
labelFontWeight?: string | number | null | undefined;
|
3315
|
+
labelBackgroundColor?: string | null | undefined;
|
3316
|
+
labelColor?: string | null | undefined;
|
3317
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
3318
|
+
labelPosition?: string | null | undefined;
|
3319
|
+
labelOverlap?: boolean | null | undefined;
|
2800
3320
|
} | null | undefined;
|
2801
3321
|
color?: {
|
2802
3322
|
colorScheme?: string[] | null | undefined;
|
@@ -2812,8 +3332,8 @@ export declare class Builder implements VSeedBuilder {
|
|
2812
3332
|
maxSize?: number | null | undefined;
|
2813
3333
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
2814
3334
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
3335
|
+
labelColor?: string | null | undefined;
|
2815
3336
|
labelFontSize?: number | null | undefined;
|
2816
|
-
labelFontColor?: string | null | undefined;
|
2817
3337
|
labelFontWeight?: string | number | null | undefined;
|
2818
3338
|
} | null | undefined;
|
2819
3339
|
xAxis?: {
|
@@ -2910,6 +3430,26 @@ export declare class Builder implements VSeedBuilder {
|
|
2910
3430
|
wrap?: boolean | null | undefined;
|
2911
3431
|
showValue?: boolean | null | undefined;
|
2912
3432
|
showValuePercent?: boolean | null | undefined;
|
3433
|
+
autoFormat?: boolean | null | undefined;
|
3434
|
+
numFormat?: {
|
3435
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
3436
|
+
ratio?: number | undefined;
|
3437
|
+
symbol?: string | undefined;
|
3438
|
+
thousandSeparator?: boolean | undefined;
|
3439
|
+
prefix?: string | undefined;
|
3440
|
+
suffix?: string | undefined;
|
3441
|
+
fractionDigits?: number | undefined;
|
3442
|
+
significantDigits?: number | undefined;
|
3443
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
3444
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
3445
|
+
} | null | undefined;
|
3446
|
+
labelFontSize?: number | null | undefined;
|
3447
|
+
labelFontWeight?: string | number | null | undefined;
|
3448
|
+
labelBackgroundColor?: string | null | undefined;
|
3449
|
+
labelColor?: string | null | undefined;
|
3450
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
3451
|
+
labelPosition?: string | null | undefined;
|
3452
|
+
labelOverlap?: boolean | null | undefined;
|
2913
3453
|
} | null | undefined;
|
2914
3454
|
color?: {
|
2915
3455
|
colorScheme?: string[] | null | undefined;
|
@@ -2925,8 +3465,8 @@ export declare class Builder implements VSeedBuilder {
|
|
2925
3465
|
maxSize?: number | null | undefined;
|
2926
3466
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
2927
3467
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
3468
|
+
labelColor?: string | null | undefined;
|
2928
3469
|
labelFontSize?: number | null | undefined;
|
2929
|
-
labelFontColor?: string | null | undefined;
|
2930
3470
|
labelFontWeight?: string | number | null | undefined;
|
2931
3471
|
} | null | undefined;
|
2932
3472
|
xAxis?: {
|
@@ -3023,6 +3563,26 @@ export declare class Builder implements VSeedBuilder {
|
|
3023
3563
|
wrap?: boolean | null | undefined;
|
3024
3564
|
showValue?: boolean | null | undefined;
|
3025
3565
|
showValuePercent?: boolean | null | undefined;
|
3566
|
+
autoFormat?: boolean | null | undefined;
|
3567
|
+
numFormat?: {
|
3568
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
3569
|
+
ratio?: number | undefined;
|
3570
|
+
symbol?: string | undefined;
|
3571
|
+
thousandSeparator?: boolean | undefined;
|
3572
|
+
prefix?: string | undefined;
|
3573
|
+
suffix?: string | undefined;
|
3574
|
+
fractionDigits?: number | undefined;
|
3575
|
+
significantDigits?: number | undefined;
|
3576
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
3577
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
3578
|
+
} | null | undefined;
|
3579
|
+
labelFontSize?: number | null | undefined;
|
3580
|
+
labelFontWeight?: string | number | null | undefined;
|
3581
|
+
labelBackgroundColor?: string | null | undefined;
|
3582
|
+
labelColor?: string | null | undefined;
|
3583
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
3584
|
+
labelPosition?: string | null | undefined;
|
3585
|
+
labelOverlap?: boolean | null | undefined;
|
3026
3586
|
} | null | undefined;
|
3027
3587
|
color?: {
|
3028
3588
|
colorScheme?: string[] | null | undefined;
|
@@ -3038,8 +3598,8 @@ export declare class Builder implements VSeedBuilder {
|
|
3038
3598
|
maxSize?: number | null | undefined;
|
3039
3599
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
3040
3600
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
3601
|
+
labelColor?: string | null | undefined;
|
3041
3602
|
labelFontSize?: number | null | undefined;
|
3042
|
-
labelFontColor?: string | null | undefined;
|
3043
3603
|
labelFontWeight?: string | number | null | undefined;
|
3044
3604
|
} | null | undefined;
|
3045
3605
|
xAxis?: {
|
@@ -3137,6 +3697,26 @@ export declare class Builder implements VSeedBuilder {
|
|
3137
3697
|
wrap?: boolean | null | undefined;
|
3138
3698
|
showValue?: boolean | null | undefined;
|
3139
3699
|
showValuePercent?: boolean | null | undefined;
|
3700
|
+
autoFormat?: boolean | null | undefined;
|
3701
|
+
numFormat?: {
|
3702
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
3703
|
+
ratio?: number | undefined;
|
3704
|
+
symbol?: string | undefined;
|
3705
|
+
thousandSeparator?: boolean | undefined;
|
3706
|
+
prefix?: string | undefined;
|
3707
|
+
suffix?: string | undefined;
|
3708
|
+
fractionDigits?: number | undefined;
|
3709
|
+
significantDigits?: number | undefined;
|
3710
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
3711
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
3712
|
+
} | null | undefined;
|
3713
|
+
labelFontSize?: number | null | undefined;
|
3714
|
+
labelFontWeight?: string | number | null | undefined;
|
3715
|
+
labelBackgroundColor?: string | null | undefined;
|
3716
|
+
labelColor?: string | null | undefined;
|
3717
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
3718
|
+
labelPosition?: string | null | undefined;
|
3719
|
+
labelOverlap?: boolean | null | undefined;
|
3140
3720
|
} | null | undefined;
|
3141
3721
|
color?: {
|
3142
3722
|
colorScheme?: string[] | null | undefined;
|
@@ -3152,8 +3732,8 @@ export declare class Builder implements VSeedBuilder {
|
|
3152
3732
|
maxSize?: number | null | undefined;
|
3153
3733
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
3154
3734
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
3735
|
+
labelColor?: string | null | undefined;
|
3155
3736
|
labelFontSize?: number | null | undefined;
|
3156
|
-
labelFontColor?: string | null | undefined;
|
3157
3737
|
labelFontWeight?: string | number | null | undefined;
|
3158
3738
|
} | null | undefined;
|
3159
3739
|
dualChartType?: {
|
@@ -3376,6 +3956,26 @@ export declare class Builder implements VSeedBuilder {
|
|
3376
3956
|
wrap?: boolean | null | undefined;
|
3377
3957
|
showValue?: boolean | null | undefined;
|
3378
3958
|
showValuePercent?: boolean | null | undefined;
|
3959
|
+
autoFormat?: boolean | null | undefined;
|
3960
|
+
numFormat?: {
|
3961
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
3962
|
+
ratio?: number | undefined;
|
3963
|
+
symbol?: string | undefined;
|
3964
|
+
thousandSeparator?: boolean | undefined;
|
3965
|
+
prefix?: string | undefined;
|
3966
|
+
suffix?: string | undefined;
|
3967
|
+
fractionDigits?: number | undefined;
|
3968
|
+
significantDigits?: number | undefined;
|
3969
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
3970
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
3971
|
+
} | null | undefined;
|
3972
|
+
labelFontSize?: number | null | undefined;
|
3973
|
+
labelFontWeight?: string | number | null | undefined;
|
3974
|
+
labelBackgroundColor?: string | null | undefined;
|
3975
|
+
labelColor?: string | null | undefined;
|
3976
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
3977
|
+
labelPosition?: string | null | undefined;
|
3978
|
+
labelOverlap?: boolean | null | undefined;
|
3379
3979
|
} | null | undefined;
|
3380
3980
|
color?: {
|
3381
3981
|
colorScheme?: string[] | null | undefined;
|
@@ -3391,8 +3991,8 @@ export declare class Builder implements VSeedBuilder {
|
|
3391
3991
|
maxSize?: number | null | undefined;
|
3392
3992
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
3393
3993
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
3994
|
+
labelColor?: string | null | undefined;
|
3394
3995
|
labelFontSize?: number | null | undefined;
|
3395
|
-
labelFontColor?: string | null | undefined;
|
3396
3996
|
labelFontWeight?: string | number | null | undefined;
|
3397
3997
|
} | null | undefined;
|
3398
3998
|
} | null | undefined;
|
@@ -3403,6 +4003,26 @@ export declare class Builder implements VSeedBuilder {
|
|
3403
4003
|
wrap?: boolean | null | undefined;
|
3404
4004
|
showValue?: boolean | null | undefined;
|
3405
4005
|
showValuePercent?: boolean | null | undefined;
|
4006
|
+
autoFormat?: boolean | null | undefined;
|
4007
|
+
numFormat?: {
|
4008
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
4009
|
+
ratio?: number | undefined;
|
4010
|
+
symbol?: string | undefined;
|
4011
|
+
thousandSeparator?: boolean | undefined;
|
4012
|
+
prefix?: string | undefined;
|
4013
|
+
suffix?: string | undefined;
|
4014
|
+
fractionDigits?: number | undefined;
|
4015
|
+
significantDigits?: number | undefined;
|
4016
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
4017
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
4018
|
+
} | null | undefined;
|
4019
|
+
labelFontSize?: number | null | undefined;
|
4020
|
+
labelFontWeight?: string | number | null | undefined;
|
4021
|
+
labelBackgroundColor?: string | null | undefined;
|
4022
|
+
labelColor?: string | null | undefined;
|
4023
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
4024
|
+
labelPosition?: string | null | undefined;
|
4025
|
+
labelOverlap?: boolean | null | undefined;
|
3406
4026
|
} | null | undefined;
|
3407
4027
|
color?: {
|
3408
4028
|
colorScheme?: string[] | null | undefined;
|
@@ -3418,8 +4038,8 @@ export declare class Builder implements VSeedBuilder {
|
|
3418
4038
|
maxSize?: number | null | undefined;
|
3419
4039
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
3420
4040
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
4041
|
+
labelColor?: string | null | undefined;
|
3421
4042
|
labelFontSize?: number | null | undefined;
|
3422
|
-
labelFontColor?: string | null | undefined;
|
3423
4043
|
labelFontWeight?: string | number | null | undefined;
|
3424
4044
|
} | null | undefined;
|
3425
4045
|
} | null | undefined;
|
@@ -3430,6 +4050,26 @@ export declare class Builder implements VSeedBuilder {
|
|
3430
4050
|
wrap?: boolean | null | undefined;
|
3431
4051
|
showValue?: boolean | null | undefined;
|
3432
4052
|
showValuePercent?: boolean | null | undefined;
|
4053
|
+
autoFormat?: boolean | null | undefined;
|
4054
|
+
numFormat?: {
|
4055
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
4056
|
+
ratio?: number | undefined;
|
4057
|
+
symbol?: string | undefined;
|
4058
|
+
thousandSeparator?: boolean | undefined;
|
4059
|
+
prefix?: string | undefined;
|
4060
|
+
suffix?: string | undefined;
|
4061
|
+
fractionDigits?: number | undefined;
|
4062
|
+
significantDigits?: number | undefined;
|
4063
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
4064
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
4065
|
+
} | null | undefined;
|
4066
|
+
labelFontSize?: number | null | undefined;
|
4067
|
+
labelFontWeight?: string | number | null | undefined;
|
4068
|
+
labelBackgroundColor?: string | null | undefined;
|
4069
|
+
labelColor?: string | null | undefined;
|
4070
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
4071
|
+
labelPosition?: string | null | undefined;
|
4072
|
+
labelOverlap?: boolean | null | undefined;
|
3433
4073
|
} | null | undefined;
|
3434
4074
|
color?: {
|
3435
4075
|
colorScheme?: string[] | null | undefined;
|
@@ -3445,8 +4085,8 @@ export declare class Builder implements VSeedBuilder {
|
|
3445
4085
|
maxSize?: number | null | undefined;
|
3446
4086
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
3447
4087
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
4088
|
+
labelColor?: string | null | undefined;
|
3448
4089
|
labelFontSize?: number | null | undefined;
|
3449
|
-
labelFontColor?: string | null | undefined;
|
3450
4090
|
labelFontWeight?: string | number | null | undefined;
|
3451
4091
|
} | null | undefined;
|
3452
4092
|
} | null | undefined;
|
@@ -3457,6 +4097,26 @@ export declare class Builder implements VSeedBuilder {
|
|
3457
4097
|
wrap?: boolean | null | undefined;
|
3458
4098
|
showValue?: boolean | null | undefined;
|
3459
4099
|
showValuePercent?: boolean | null | undefined;
|
4100
|
+
autoFormat?: boolean | null | undefined;
|
4101
|
+
numFormat?: {
|
4102
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
4103
|
+
ratio?: number | undefined;
|
4104
|
+
symbol?: string | undefined;
|
4105
|
+
thousandSeparator?: boolean | undefined;
|
4106
|
+
prefix?: string | undefined;
|
4107
|
+
suffix?: string | undefined;
|
4108
|
+
fractionDigits?: number | undefined;
|
4109
|
+
significantDigits?: number | undefined;
|
4110
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
4111
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
4112
|
+
} | null | undefined;
|
4113
|
+
labelFontSize?: number | null | undefined;
|
4114
|
+
labelFontWeight?: string | number | null | undefined;
|
4115
|
+
labelBackgroundColor?: string | null | undefined;
|
4116
|
+
labelColor?: string | null | undefined;
|
4117
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
4118
|
+
labelPosition?: string | null | undefined;
|
4119
|
+
labelOverlap?: boolean | null | undefined;
|
3460
4120
|
} | null | undefined;
|
3461
4121
|
color?: {
|
3462
4122
|
colorScheme?: string[] | null | undefined;
|
@@ -3472,8 +4132,8 @@ export declare class Builder implements VSeedBuilder {
|
|
3472
4132
|
maxSize?: number | null | undefined;
|
3473
4133
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
3474
4134
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
4135
|
+
labelColor?: string | null | undefined;
|
3475
4136
|
labelFontSize?: number | null | undefined;
|
3476
|
-
labelFontColor?: string | null | undefined;
|
3477
4137
|
labelFontWeight?: string | number | null | undefined;
|
3478
4138
|
} | null | undefined;
|
3479
4139
|
} | null | undefined;
|
@@ -3484,6 +4144,26 @@ export declare class Builder implements VSeedBuilder {
|
|
3484
4144
|
wrap?: boolean | null | undefined;
|
3485
4145
|
showValue?: boolean | null | undefined;
|
3486
4146
|
showValuePercent?: boolean | null | undefined;
|
4147
|
+
autoFormat?: boolean | null | undefined;
|
4148
|
+
numFormat?: {
|
4149
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
4150
|
+
ratio?: number | undefined;
|
4151
|
+
symbol?: string | undefined;
|
4152
|
+
thousandSeparator?: boolean | undefined;
|
4153
|
+
prefix?: string | undefined;
|
4154
|
+
suffix?: string | undefined;
|
4155
|
+
fractionDigits?: number | undefined;
|
4156
|
+
significantDigits?: number | undefined;
|
4157
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
4158
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
4159
|
+
} | null | undefined;
|
4160
|
+
labelFontSize?: number | null | undefined;
|
4161
|
+
labelFontWeight?: string | number | null | undefined;
|
4162
|
+
labelBackgroundColor?: string | null | undefined;
|
4163
|
+
labelColor?: string | null | undefined;
|
4164
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
4165
|
+
labelPosition?: string | null | undefined;
|
4166
|
+
labelOverlap?: boolean | null | undefined;
|
3487
4167
|
} | null | undefined;
|
3488
4168
|
color?: {
|
3489
4169
|
colorScheme?: string[] | null | undefined;
|
@@ -3499,8 +4179,8 @@ export declare class Builder implements VSeedBuilder {
|
|
3499
4179
|
maxSize?: number | null | undefined;
|
3500
4180
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
3501
4181
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
4182
|
+
labelColor?: string | null | undefined;
|
3502
4183
|
labelFontSize?: number | null | undefined;
|
3503
|
-
labelFontColor?: string | null | undefined;
|
3504
4184
|
labelFontWeight?: string | number | null | undefined;
|
3505
4185
|
} | null | undefined;
|
3506
4186
|
} | null | undefined;
|
@@ -3511,6 +4191,26 @@ export declare class Builder implements VSeedBuilder {
|
|
3511
4191
|
wrap?: boolean | null | undefined;
|
3512
4192
|
showValue?: boolean | null | undefined;
|
3513
4193
|
showValuePercent?: boolean | null | undefined;
|
4194
|
+
autoFormat?: boolean | null | undefined;
|
4195
|
+
numFormat?: {
|
4196
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
4197
|
+
ratio?: number | undefined;
|
4198
|
+
symbol?: string | undefined;
|
4199
|
+
thousandSeparator?: boolean | undefined;
|
4200
|
+
prefix?: string | undefined;
|
4201
|
+
suffix?: string | undefined;
|
4202
|
+
fractionDigits?: number | undefined;
|
4203
|
+
significantDigits?: number | undefined;
|
4204
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
4205
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
4206
|
+
} | null | undefined;
|
4207
|
+
labelFontSize?: number | null | undefined;
|
4208
|
+
labelFontWeight?: string | number | null | undefined;
|
4209
|
+
labelBackgroundColor?: string | null | undefined;
|
4210
|
+
labelColor?: string | null | undefined;
|
4211
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
4212
|
+
labelPosition?: string | null | undefined;
|
4213
|
+
labelOverlap?: boolean | null | undefined;
|
3514
4214
|
} | null | undefined;
|
3515
4215
|
color?: {
|
3516
4216
|
colorScheme?: string[] | null | undefined;
|
@@ -3526,8 +4226,8 @@ export declare class Builder implements VSeedBuilder {
|
|
3526
4226
|
maxSize?: number | null | undefined;
|
3527
4227
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
3528
4228
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
4229
|
+
labelColor?: string | null | undefined;
|
3529
4230
|
labelFontSize?: number | null | undefined;
|
3530
|
-
labelFontColor?: string | null | undefined;
|
3531
4231
|
labelFontWeight?: string | number | null | undefined;
|
3532
4232
|
} | null | undefined;
|
3533
4233
|
} | null | undefined;
|
@@ -3538,6 +4238,26 @@ export declare class Builder implements VSeedBuilder {
|
|
3538
4238
|
wrap?: boolean | null | undefined;
|
3539
4239
|
showValue?: boolean | null | undefined;
|
3540
4240
|
showValuePercent?: boolean | null | undefined;
|
4241
|
+
autoFormat?: boolean | null | undefined;
|
4242
|
+
numFormat?: {
|
4243
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
4244
|
+
ratio?: number | undefined;
|
4245
|
+
symbol?: string | undefined;
|
4246
|
+
thousandSeparator?: boolean | undefined;
|
4247
|
+
prefix?: string | undefined;
|
4248
|
+
suffix?: string | undefined;
|
4249
|
+
fractionDigits?: number | undefined;
|
4250
|
+
significantDigits?: number | undefined;
|
4251
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
4252
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
4253
|
+
} | null | undefined;
|
4254
|
+
labelFontSize?: number | null | undefined;
|
4255
|
+
labelFontWeight?: string | number | null | undefined;
|
4256
|
+
labelBackgroundColor?: string | null | undefined;
|
4257
|
+
labelColor?: string | null | undefined;
|
4258
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
4259
|
+
labelPosition?: string | null | undefined;
|
4260
|
+
labelOverlap?: boolean | null | undefined;
|
3541
4261
|
} | null | undefined;
|
3542
4262
|
color?: {
|
3543
4263
|
colorScheme?: string[] | null | undefined;
|
@@ -3553,8 +4273,8 @@ export declare class Builder implements VSeedBuilder {
|
|
3553
4273
|
maxSize?: number | null | undefined;
|
3554
4274
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
3555
4275
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
4276
|
+
labelColor?: string | null | undefined;
|
3556
4277
|
labelFontSize?: number | null | undefined;
|
3557
|
-
labelFontColor?: string | null | undefined;
|
3558
4278
|
labelFontWeight?: string | number | null | undefined;
|
3559
4279
|
} | null | undefined;
|
3560
4280
|
} | null | undefined;
|
@@ -4010,6 +4730,26 @@ export declare class Builder implements VSeedBuilder {
|
|
4010
4730
|
wrap?: boolean | null | undefined;
|
4011
4731
|
showValue?: boolean | null | undefined;
|
4012
4732
|
showValuePercent?: boolean | null | undefined;
|
4733
|
+
autoFormat?: boolean | null | undefined;
|
4734
|
+
numFormat?: {
|
4735
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
4736
|
+
ratio?: number | undefined;
|
4737
|
+
symbol?: string | undefined;
|
4738
|
+
thousandSeparator?: boolean | undefined;
|
4739
|
+
prefix?: string | undefined;
|
4740
|
+
suffix?: string | undefined;
|
4741
|
+
fractionDigits?: number | undefined;
|
4742
|
+
significantDigits?: number | undefined;
|
4743
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
4744
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
4745
|
+
} | null | undefined;
|
4746
|
+
labelFontSize?: number | null | undefined;
|
4747
|
+
labelFontWeight?: string | number | null | undefined;
|
4748
|
+
labelBackgroundColor?: string | null | undefined;
|
4749
|
+
labelColor?: string | null | undefined;
|
4750
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
4751
|
+
labelPosition?: string | null | undefined;
|
4752
|
+
labelOverlap?: boolean | null | undefined;
|
4013
4753
|
} | null | undefined;
|
4014
4754
|
color?: {
|
4015
4755
|
colorScheme?: string[] | null | undefined;
|
@@ -4025,8 +4765,8 @@ export declare class Builder implements VSeedBuilder {
|
|
4025
4765
|
maxSize?: number | null | undefined;
|
4026
4766
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
4027
4767
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
4768
|
+
labelColor?: string | null | undefined;
|
4028
4769
|
labelFontSize?: number | null | undefined;
|
4029
|
-
labelFontColor?: string | null | undefined;
|
4030
4770
|
labelFontWeight?: string | number | null | undefined;
|
4031
4771
|
} | null | undefined;
|
4032
4772
|
xAxis?: {
|
@@ -4123,6 +4863,26 @@ export declare class Builder implements VSeedBuilder {
|
|
4123
4863
|
wrap?: boolean | null | undefined;
|
4124
4864
|
showValue?: boolean | null | undefined;
|
4125
4865
|
showValuePercent?: boolean | null | undefined;
|
4866
|
+
autoFormat?: boolean | null | undefined;
|
4867
|
+
numFormat?: {
|
4868
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
4869
|
+
ratio?: number | undefined;
|
4870
|
+
symbol?: string | undefined;
|
4871
|
+
thousandSeparator?: boolean | undefined;
|
4872
|
+
prefix?: string | undefined;
|
4873
|
+
suffix?: string | undefined;
|
4874
|
+
fractionDigits?: number | undefined;
|
4875
|
+
significantDigits?: number | undefined;
|
4876
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
4877
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
4878
|
+
} | null | undefined;
|
4879
|
+
labelFontSize?: number | null | undefined;
|
4880
|
+
labelFontWeight?: string | number | null | undefined;
|
4881
|
+
labelBackgroundColor?: string | null | undefined;
|
4882
|
+
labelColor?: string | null | undefined;
|
4883
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
4884
|
+
labelPosition?: string | null | undefined;
|
4885
|
+
labelOverlap?: boolean | null | undefined;
|
4126
4886
|
} | null | undefined;
|
4127
4887
|
color?: {
|
4128
4888
|
colorScheme?: string[] | null | undefined;
|
@@ -4138,8 +4898,8 @@ export declare class Builder implements VSeedBuilder {
|
|
4138
4898
|
maxSize?: number | null | undefined;
|
4139
4899
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
4140
4900
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
4901
|
+
labelColor?: string | null | undefined;
|
4141
4902
|
labelFontSize?: number | null | undefined;
|
4142
|
-
labelFontColor?: string | null | undefined;
|
4143
4903
|
labelFontWeight?: string | number | null | undefined;
|
4144
4904
|
} | null | undefined;
|
4145
4905
|
xAxis?: {
|
@@ -4237,6 +4997,26 @@ export declare class Builder implements VSeedBuilder {
|
|
4237
4997
|
wrap?: boolean | null | undefined;
|
4238
4998
|
showValue?: boolean | null | undefined;
|
4239
4999
|
showValuePercent?: boolean | null | undefined;
|
5000
|
+
autoFormat?: boolean | null | undefined;
|
5001
|
+
numFormat?: {
|
5002
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
5003
|
+
ratio?: number | undefined;
|
5004
|
+
symbol?: string | undefined;
|
5005
|
+
thousandSeparator?: boolean | undefined;
|
5006
|
+
prefix?: string | undefined;
|
5007
|
+
suffix?: string | undefined;
|
5008
|
+
fractionDigits?: number | undefined;
|
5009
|
+
significantDigits?: number | undefined;
|
5010
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
5011
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
5012
|
+
} | null | undefined;
|
5013
|
+
labelFontSize?: number | null | undefined;
|
5014
|
+
labelFontWeight?: string | number | null | undefined;
|
5015
|
+
labelBackgroundColor?: string | null | undefined;
|
5016
|
+
labelColor?: string | null | undefined;
|
5017
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
5018
|
+
labelPosition?: string | null | undefined;
|
5019
|
+
labelOverlap?: boolean | null | undefined;
|
4240
5020
|
} | null | undefined;
|
4241
5021
|
color?: {
|
4242
5022
|
colorScheme?: string[] | null | undefined;
|
@@ -4252,8 +5032,8 @@ export declare class Builder implements VSeedBuilder {
|
|
4252
5032
|
maxSize?: number | null | undefined;
|
4253
5033
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
4254
5034
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
5035
|
+
labelColor?: string | null | undefined;
|
4255
5036
|
labelFontSize?: number | null | undefined;
|
4256
|
-
labelFontColor?: string | null | undefined;
|
4257
5037
|
labelFontWeight?: string | number | null | undefined;
|
4258
5038
|
} | null | undefined;
|
4259
5039
|
xAxis?: {
|
@@ -4351,6 +5131,26 @@ export declare class Builder implements VSeedBuilder {
|
|
4351
5131
|
wrap?: boolean | null | undefined;
|
4352
5132
|
showValue?: boolean | null | undefined;
|
4353
5133
|
showValuePercent?: boolean | null | undefined;
|
5134
|
+
autoFormat?: boolean | null | undefined;
|
5135
|
+
numFormat?: {
|
5136
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
5137
|
+
ratio?: number | undefined;
|
5138
|
+
symbol?: string | undefined;
|
5139
|
+
thousandSeparator?: boolean | undefined;
|
5140
|
+
prefix?: string | undefined;
|
5141
|
+
suffix?: string | undefined;
|
5142
|
+
fractionDigits?: number | undefined;
|
5143
|
+
significantDigits?: number | undefined;
|
5144
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
5145
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
5146
|
+
} | null | undefined;
|
5147
|
+
labelFontSize?: number | null | undefined;
|
5148
|
+
labelFontWeight?: string | number | null | undefined;
|
5149
|
+
labelBackgroundColor?: string | null | undefined;
|
5150
|
+
labelColor?: string | null | undefined;
|
5151
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
5152
|
+
labelPosition?: string | null | undefined;
|
5153
|
+
labelOverlap?: boolean | null | undefined;
|
4354
5154
|
} | null | undefined;
|
4355
5155
|
color?: {
|
4356
5156
|
colorScheme?: string[] | null | undefined;
|
@@ -4366,8 +5166,8 @@ export declare class Builder implements VSeedBuilder {
|
|
4366
5166
|
maxSize?: number | null | undefined;
|
4367
5167
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
4368
5168
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
5169
|
+
labelColor?: string | null | undefined;
|
4369
5170
|
labelFontSize?: number | null | undefined;
|
4370
|
-
labelFontColor?: string | null | undefined;
|
4371
5171
|
labelFontWeight?: string | number | null | undefined;
|
4372
5172
|
} | null | undefined;
|
4373
5173
|
xAxis?: {
|
@@ -4465,6 +5265,26 @@ export declare class Builder implements VSeedBuilder {
|
|
4465
5265
|
wrap?: boolean | null | undefined;
|
4466
5266
|
showValue?: boolean | null | undefined;
|
4467
5267
|
showValuePercent?: boolean | null | undefined;
|
5268
|
+
autoFormat?: boolean | null | undefined;
|
5269
|
+
numFormat?: {
|
5270
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
5271
|
+
ratio?: number | undefined;
|
5272
|
+
symbol?: string | undefined;
|
5273
|
+
thousandSeparator?: boolean | undefined;
|
5274
|
+
prefix?: string | undefined;
|
5275
|
+
suffix?: string | undefined;
|
5276
|
+
fractionDigits?: number | undefined;
|
5277
|
+
significantDigits?: number | undefined;
|
5278
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
5279
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
5280
|
+
} | null | undefined;
|
5281
|
+
labelFontSize?: number | null | undefined;
|
5282
|
+
labelFontWeight?: string | number | null | undefined;
|
5283
|
+
labelBackgroundColor?: string | null | undefined;
|
5284
|
+
labelColor?: string | null | undefined;
|
5285
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
5286
|
+
labelPosition?: string | null | undefined;
|
5287
|
+
labelOverlap?: boolean | null | undefined;
|
4468
5288
|
} | null | undefined;
|
4469
5289
|
color?: {
|
4470
5290
|
colorScheme?: string[] | null | undefined;
|
@@ -4480,8 +5300,8 @@ export declare class Builder implements VSeedBuilder {
|
|
4480
5300
|
maxSize?: number | null | undefined;
|
4481
5301
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
4482
5302
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
5303
|
+
labelColor?: string | null | undefined;
|
4483
5304
|
labelFontSize?: number | null | undefined;
|
4484
|
-
labelFontColor?: string | null | undefined;
|
4485
5305
|
labelFontWeight?: string | number | null | undefined;
|
4486
5306
|
} | null | undefined;
|
4487
5307
|
xAxis?: {
|
@@ -4579,6 +5399,26 @@ export declare class Builder implements VSeedBuilder {
|
|
4579
5399
|
wrap?: boolean | null | undefined;
|
4580
5400
|
showValue?: boolean | null | undefined;
|
4581
5401
|
showValuePercent?: boolean | null | undefined;
|
5402
|
+
autoFormat?: boolean | null | undefined;
|
5403
|
+
numFormat?: {
|
5404
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
5405
|
+
ratio?: number | undefined;
|
5406
|
+
symbol?: string | undefined;
|
5407
|
+
thousandSeparator?: boolean | undefined;
|
5408
|
+
prefix?: string | undefined;
|
5409
|
+
suffix?: string | undefined;
|
5410
|
+
fractionDigits?: number | undefined;
|
5411
|
+
significantDigits?: number | undefined;
|
5412
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
5413
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
5414
|
+
} | null | undefined;
|
5415
|
+
labelFontSize?: number | null | undefined;
|
5416
|
+
labelFontWeight?: string | number | null | undefined;
|
5417
|
+
labelBackgroundColor?: string | null | undefined;
|
5418
|
+
labelColor?: string | null | undefined;
|
5419
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
5420
|
+
labelPosition?: string | null | undefined;
|
5421
|
+
labelOverlap?: boolean | null | undefined;
|
4582
5422
|
} | null | undefined;
|
4583
5423
|
color?: {
|
4584
5424
|
colorScheme?: string[] | null | undefined;
|
@@ -4594,8 +5434,8 @@ export declare class Builder implements VSeedBuilder {
|
|
4594
5434
|
maxSize?: number | null | undefined;
|
4595
5435
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
4596
5436
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
5437
|
+
labelColor?: string | null | undefined;
|
4597
5438
|
labelFontSize?: number | null | undefined;
|
4598
|
-
labelFontColor?: string | null | undefined;
|
4599
5439
|
labelFontWeight?: string | number | null | undefined;
|
4600
5440
|
} | null | undefined;
|
4601
5441
|
xAxis?: {
|
@@ -4693,10 +5533,30 @@ export declare class Builder implements VSeedBuilder {
|
|
4693
5533
|
wrap?: boolean | null | undefined;
|
4694
5534
|
showValue?: boolean | null | undefined;
|
4695
5535
|
showValuePercent?: boolean | null | undefined;
|
4696
|
-
|
4697
|
-
|
4698
|
-
|
4699
|
-
|
5536
|
+
autoFormat?: boolean | null | undefined;
|
5537
|
+
numFormat?: {
|
5538
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
5539
|
+
ratio?: number | undefined;
|
5540
|
+
symbol?: string | undefined;
|
5541
|
+
thousandSeparator?: boolean | undefined;
|
5542
|
+
prefix?: string | undefined;
|
5543
|
+
suffix?: string | undefined;
|
5544
|
+
fractionDigits?: number | undefined;
|
5545
|
+
significantDigits?: number | undefined;
|
5546
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
5547
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
5548
|
+
} | null | undefined;
|
5549
|
+
labelFontSize?: number | null | undefined;
|
5550
|
+
labelFontWeight?: string | number | null | undefined;
|
5551
|
+
labelBackgroundColor?: string | null | undefined;
|
5552
|
+
labelColor?: string | null | undefined;
|
5553
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
5554
|
+
labelPosition?: string | null | undefined;
|
5555
|
+
labelOverlap?: boolean | null | undefined;
|
5556
|
+
} | null | undefined;
|
5557
|
+
color?: {
|
5558
|
+
colorScheme?: string[] | null | undefined;
|
5559
|
+
linearColorScheme?: string[] | null | undefined;
|
4700
5560
|
colorMapping?: Record<string, string> | null | undefined;
|
4701
5561
|
} | null | undefined;
|
4702
5562
|
tooltip?: {
|
@@ -4708,8 +5568,8 @@ export declare class Builder implements VSeedBuilder {
|
|
4708
5568
|
maxSize?: number | null | undefined;
|
4709
5569
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
4710
5570
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
5571
|
+
labelColor?: string | null | undefined;
|
4711
5572
|
labelFontSize?: number | null | undefined;
|
4712
|
-
labelFontColor?: string | null | undefined;
|
4713
5573
|
labelFontWeight?: string | number | null | undefined;
|
4714
5574
|
} | null | undefined;
|
4715
5575
|
xAxis?: {
|
@@ -4807,6 +5667,26 @@ export declare class Builder implements VSeedBuilder {
|
|
4807
5667
|
wrap?: boolean | null | undefined;
|
4808
5668
|
showValue?: boolean | null | undefined;
|
4809
5669
|
showValuePercent?: boolean | null | undefined;
|
5670
|
+
autoFormat?: boolean | null | undefined;
|
5671
|
+
numFormat?: {
|
5672
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
5673
|
+
ratio?: number | undefined;
|
5674
|
+
symbol?: string | undefined;
|
5675
|
+
thousandSeparator?: boolean | undefined;
|
5676
|
+
prefix?: string | undefined;
|
5677
|
+
suffix?: string | undefined;
|
5678
|
+
fractionDigits?: number | undefined;
|
5679
|
+
significantDigits?: number | undefined;
|
5680
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
5681
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
5682
|
+
} | null | undefined;
|
5683
|
+
labelFontSize?: number | null | undefined;
|
5684
|
+
labelFontWeight?: string | number | null | undefined;
|
5685
|
+
labelBackgroundColor?: string | null | undefined;
|
5686
|
+
labelColor?: string | null | undefined;
|
5687
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
5688
|
+
labelPosition?: string | null | undefined;
|
5689
|
+
labelOverlap?: boolean | null | undefined;
|
4810
5690
|
} | null | undefined;
|
4811
5691
|
color?: {
|
4812
5692
|
colorScheme?: string[] | null | undefined;
|
@@ -4822,8 +5702,8 @@ export declare class Builder implements VSeedBuilder {
|
|
4822
5702
|
maxSize?: number | null | undefined;
|
4823
5703
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
4824
5704
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
5705
|
+
labelColor?: string | null | undefined;
|
4825
5706
|
labelFontSize?: number | null | undefined;
|
4826
|
-
labelFontColor?: string | null | undefined;
|
4827
5707
|
labelFontWeight?: string | number | null | undefined;
|
4828
5708
|
} | null | undefined;
|
4829
5709
|
xAxis?: {
|
@@ -4920,6 +5800,26 @@ export declare class Builder implements VSeedBuilder {
|
|
4920
5800
|
wrap?: boolean | null | undefined;
|
4921
5801
|
showValue?: boolean | null | undefined;
|
4922
5802
|
showValuePercent?: boolean | null | undefined;
|
5803
|
+
autoFormat?: boolean | null | undefined;
|
5804
|
+
numFormat?: {
|
5805
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
5806
|
+
ratio?: number | undefined;
|
5807
|
+
symbol?: string | undefined;
|
5808
|
+
thousandSeparator?: boolean | undefined;
|
5809
|
+
prefix?: string | undefined;
|
5810
|
+
suffix?: string | undefined;
|
5811
|
+
fractionDigits?: number | undefined;
|
5812
|
+
significantDigits?: number | undefined;
|
5813
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
5814
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
5815
|
+
} | null | undefined;
|
5816
|
+
labelFontSize?: number | null | undefined;
|
5817
|
+
labelFontWeight?: string | number | null | undefined;
|
5818
|
+
labelBackgroundColor?: string | null | undefined;
|
5819
|
+
labelColor?: string | null | undefined;
|
5820
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
5821
|
+
labelPosition?: string | null | undefined;
|
5822
|
+
labelOverlap?: boolean | null | undefined;
|
4923
5823
|
} | null | undefined;
|
4924
5824
|
color?: {
|
4925
5825
|
colorScheme?: string[] | null | undefined;
|
@@ -4935,8 +5835,8 @@ export declare class Builder implements VSeedBuilder {
|
|
4935
5835
|
maxSize?: number | null | undefined;
|
4936
5836
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
4937
5837
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
5838
|
+
labelColor?: string | null | undefined;
|
4938
5839
|
labelFontSize?: number | null | undefined;
|
4939
|
-
labelFontColor?: string | null | undefined;
|
4940
5840
|
labelFontWeight?: string | number | null | undefined;
|
4941
5841
|
} | null | undefined;
|
4942
5842
|
xAxis?: {
|
@@ -5033,6 +5933,26 @@ export declare class Builder implements VSeedBuilder {
|
|
5033
5933
|
wrap?: boolean | null | undefined;
|
5034
5934
|
showValue?: boolean | null | undefined;
|
5035
5935
|
showValuePercent?: boolean | null | undefined;
|
5936
|
+
autoFormat?: boolean | null | undefined;
|
5937
|
+
numFormat?: {
|
5938
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
5939
|
+
ratio?: number | undefined;
|
5940
|
+
symbol?: string | undefined;
|
5941
|
+
thousandSeparator?: boolean | undefined;
|
5942
|
+
prefix?: string | undefined;
|
5943
|
+
suffix?: string | undefined;
|
5944
|
+
fractionDigits?: number | undefined;
|
5945
|
+
significantDigits?: number | undefined;
|
5946
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
5947
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
5948
|
+
} | null | undefined;
|
5949
|
+
labelFontSize?: number | null | undefined;
|
5950
|
+
labelFontWeight?: string | number | null | undefined;
|
5951
|
+
labelBackgroundColor?: string | null | undefined;
|
5952
|
+
labelColor?: string | null | undefined;
|
5953
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
5954
|
+
labelPosition?: string | null | undefined;
|
5955
|
+
labelOverlap?: boolean | null | undefined;
|
5036
5956
|
} | null | undefined;
|
5037
5957
|
color?: {
|
5038
5958
|
colorScheme?: string[] | null | undefined;
|
@@ -5048,8 +5968,8 @@ export declare class Builder implements VSeedBuilder {
|
|
5048
5968
|
maxSize?: number | null | undefined;
|
5049
5969
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
5050
5970
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
5971
|
+
labelColor?: string | null | undefined;
|
5051
5972
|
labelFontSize?: number | null | undefined;
|
5052
|
-
labelFontColor?: string | null | undefined;
|
5053
5973
|
labelFontWeight?: string | number | null | undefined;
|
5054
5974
|
} | null | undefined;
|
5055
5975
|
xAxis?: {
|
@@ -5147,6 +6067,26 @@ export declare class Builder implements VSeedBuilder {
|
|
5147
6067
|
wrap?: boolean | null | undefined;
|
5148
6068
|
showValue?: boolean | null | undefined;
|
5149
6069
|
showValuePercent?: boolean | null | undefined;
|
6070
|
+
autoFormat?: boolean | null | undefined;
|
6071
|
+
numFormat?: {
|
6072
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
6073
|
+
ratio?: number | undefined;
|
6074
|
+
symbol?: string | undefined;
|
6075
|
+
thousandSeparator?: boolean | undefined;
|
6076
|
+
prefix?: string | undefined;
|
6077
|
+
suffix?: string | undefined;
|
6078
|
+
fractionDigits?: number | undefined;
|
6079
|
+
significantDigits?: number | undefined;
|
6080
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
6081
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
6082
|
+
} | null | undefined;
|
6083
|
+
labelFontSize?: number | null | undefined;
|
6084
|
+
labelFontWeight?: string | number | null | undefined;
|
6085
|
+
labelBackgroundColor?: string | null | undefined;
|
6086
|
+
labelColor?: string | null | undefined;
|
6087
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
6088
|
+
labelPosition?: string | null | undefined;
|
6089
|
+
labelOverlap?: boolean | null | undefined;
|
5150
6090
|
} | null | undefined;
|
5151
6091
|
color?: {
|
5152
6092
|
colorScheme?: string[] | null | undefined;
|
@@ -5162,8 +6102,8 @@ export declare class Builder implements VSeedBuilder {
|
|
5162
6102
|
maxSize?: number | null | undefined;
|
5163
6103
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
5164
6104
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
6105
|
+
labelColor?: string | null | undefined;
|
5165
6106
|
labelFontSize?: number | null | undefined;
|
5166
|
-
labelFontColor?: string | null | undefined;
|
5167
6107
|
labelFontWeight?: string | number | null | undefined;
|
5168
6108
|
} | null | undefined;
|
5169
6109
|
dualChartType?: {
|
@@ -5386,6 +6326,26 @@ export declare class Builder implements VSeedBuilder {
|
|
5386
6326
|
wrap?: boolean | null | undefined;
|
5387
6327
|
showValue?: boolean | null | undefined;
|
5388
6328
|
showValuePercent?: boolean | null | undefined;
|
6329
|
+
autoFormat?: boolean | null | undefined;
|
6330
|
+
numFormat?: {
|
6331
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
6332
|
+
ratio?: number | undefined;
|
6333
|
+
symbol?: string | undefined;
|
6334
|
+
thousandSeparator?: boolean | undefined;
|
6335
|
+
prefix?: string | undefined;
|
6336
|
+
suffix?: string | undefined;
|
6337
|
+
fractionDigits?: number | undefined;
|
6338
|
+
significantDigits?: number | undefined;
|
6339
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
6340
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
6341
|
+
} | null | undefined;
|
6342
|
+
labelFontSize?: number | null | undefined;
|
6343
|
+
labelFontWeight?: string | number | null | undefined;
|
6344
|
+
labelBackgroundColor?: string | null | undefined;
|
6345
|
+
labelColor?: string | null | undefined;
|
6346
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
6347
|
+
labelPosition?: string | null | undefined;
|
6348
|
+
labelOverlap?: boolean | null | undefined;
|
5389
6349
|
} | null | undefined;
|
5390
6350
|
color?: {
|
5391
6351
|
colorScheme?: string[] | null | undefined;
|
@@ -5401,8 +6361,8 @@ export declare class Builder implements VSeedBuilder {
|
|
5401
6361
|
maxSize?: number | null | undefined;
|
5402
6362
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
5403
6363
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
6364
|
+
labelColor?: string | null | undefined;
|
5404
6365
|
labelFontSize?: number | null | undefined;
|
5405
|
-
labelFontColor?: string | null | undefined;
|
5406
6366
|
labelFontWeight?: string | number | null | undefined;
|
5407
6367
|
} | null | undefined;
|
5408
6368
|
} | null | undefined;
|
@@ -5413,6 +6373,26 @@ export declare class Builder implements VSeedBuilder {
|
|
5413
6373
|
wrap?: boolean | null | undefined;
|
5414
6374
|
showValue?: boolean | null | undefined;
|
5415
6375
|
showValuePercent?: boolean | null | undefined;
|
6376
|
+
autoFormat?: boolean | null | undefined;
|
6377
|
+
numFormat?: {
|
6378
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
6379
|
+
ratio?: number | undefined;
|
6380
|
+
symbol?: string | undefined;
|
6381
|
+
thousandSeparator?: boolean | undefined;
|
6382
|
+
prefix?: string | undefined;
|
6383
|
+
suffix?: string | undefined;
|
6384
|
+
fractionDigits?: number | undefined;
|
6385
|
+
significantDigits?: number | undefined;
|
6386
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
6387
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
6388
|
+
} | null | undefined;
|
6389
|
+
labelFontSize?: number | null | undefined;
|
6390
|
+
labelFontWeight?: string | number | null | undefined;
|
6391
|
+
labelBackgroundColor?: string | null | undefined;
|
6392
|
+
labelColor?: string | null | undefined;
|
6393
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
6394
|
+
labelPosition?: string | null | undefined;
|
6395
|
+
labelOverlap?: boolean | null | undefined;
|
5416
6396
|
} | null | undefined;
|
5417
6397
|
color?: {
|
5418
6398
|
colorScheme?: string[] | null | undefined;
|
@@ -5428,8 +6408,8 @@ export declare class Builder implements VSeedBuilder {
|
|
5428
6408
|
maxSize?: number | null | undefined;
|
5429
6409
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
5430
6410
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
6411
|
+
labelColor?: string | null | undefined;
|
5431
6412
|
labelFontSize?: number | null | undefined;
|
5432
|
-
labelFontColor?: string | null | undefined;
|
5433
6413
|
labelFontWeight?: string | number | null | undefined;
|
5434
6414
|
} | null | undefined;
|
5435
6415
|
} | null | undefined;
|
@@ -5440,6 +6420,26 @@ export declare class Builder implements VSeedBuilder {
|
|
5440
6420
|
wrap?: boolean | null | undefined;
|
5441
6421
|
showValue?: boolean | null | undefined;
|
5442
6422
|
showValuePercent?: boolean | null | undefined;
|
6423
|
+
autoFormat?: boolean | null | undefined;
|
6424
|
+
numFormat?: {
|
6425
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
6426
|
+
ratio?: number | undefined;
|
6427
|
+
symbol?: string | undefined;
|
6428
|
+
thousandSeparator?: boolean | undefined;
|
6429
|
+
prefix?: string | undefined;
|
6430
|
+
suffix?: string | undefined;
|
6431
|
+
fractionDigits?: number | undefined;
|
6432
|
+
significantDigits?: number | undefined;
|
6433
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
6434
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
6435
|
+
} | null | undefined;
|
6436
|
+
labelFontSize?: number | null | undefined;
|
6437
|
+
labelFontWeight?: string | number | null | undefined;
|
6438
|
+
labelBackgroundColor?: string | null | undefined;
|
6439
|
+
labelColor?: string | null | undefined;
|
6440
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
6441
|
+
labelPosition?: string | null | undefined;
|
6442
|
+
labelOverlap?: boolean | null | undefined;
|
5443
6443
|
} | null | undefined;
|
5444
6444
|
color?: {
|
5445
6445
|
colorScheme?: string[] | null | undefined;
|
@@ -5455,8 +6455,8 @@ export declare class Builder implements VSeedBuilder {
|
|
5455
6455
|
maxSize?: number | null | undefined;
|
5456
6456
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
5457
6457
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
6458
|
+
labelColor?: string | null | undefined;
|
5458
6459
|
labelFontSize?: number | null | undefined;
|
5459
|
-
labelFontColor?: string | null | undefined;
|
5460
6460
|
labelFontWeight?: string | number | null | undefined;
|
5461
6461
|
} | null | undefined;
|
5462
6462
|
} | null | undefined;
|
@@ -5467,6 +6467,26 @@ export declare class Builder implements VSeedBuilder {
|
|
5467
6467
|
wrap?: boolean | null | undefined;
|
5468
6468
|
showValue?: boolean | null | undefined;
|
5469
6469
|
showValuePercent?: boolean | null | undefined;
|
6470
|
+
autoFormat?: boolean | null | undefined;
|
6471
|
+
numFormat?: {
|
6472
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
6473
|
+
ratio?: number | undefined;
|
6474
|
+
symbol?: string | undefined;
|
6475
|
+
thousandSeparator?: boolean | undefined;
|
6476
|
+
prefix?: string | undefined;
|
6477
|
+
suffix?: string | undefined;
|
6478
|
+
fractionDigits?: number | undefined;
|
6479
|
+
significantDigits?: number | undefined;
|
6480
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
6481
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
6482
|
+
} | null | undefined;
|
6483
|
+
labelFontSize?: number | null | undefined;
|
6484
|
+
labelFontWeight?: string | number | null | undefined;
|
6485
|
+
labelBackgroundColor?: string | null | undefined;
|
6486
|
+
labelColor?: string | null | undefined;
|
6487
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
6488
|
+
labelPosition?: string | null | undefined;
|
6489
|
+
labelOverlap?: boolean | null | undefined;
|
5470
6490
|
} | null | undefined;
|
5471
6491
|
color?: {
|
5472
6492
|
colorScheme?: string[] | null | undefined;
|
@@ -5482,8 +6502,8 @@ export declare class Builder implements VSeedBuilder {
|
|
5482
6502
|
maxSize?: number | null | undefined;
|
5483
6503
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
5484
6504
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
6505
|
+
labelColor?: string | null | undefined;
|
5485
6506
|
labelFontSize?: number | null | undefined;
|
5486
|
-
labelFontColor?: string | null | undefined;
|
5487
6507
|
labelFontWeight?: string | number | null | undefined;
|
5488
6508
|
} | null | undefined;
|
5489
6509
|
} | null | undefined;
|
@@ -5494,6 +6514,26 @@ export declare class Builder implements VSeedBuilder {
|
|
5494
6514
|
wrap?: boolean | null | undefined;
|
5495
6515
|
showValue?: boolean | null | undefined;
|
5496
6516
|
showValuePercent?: boolean | null | undefined;
|
6517
|
+
autoFormat?: boolean | null | undefined;
|
6518
|
+
numFormat?: {
|
6519
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
6520
|
+
ratio?: number | undefined;
|
6521
|
+
symbol?: string | undefined;
|
6522
|
+
thousandSeparator?: boolean | undefined;
|
6523
|
+
prefix?: string | undefined;
|
6524
|
+
suffix?: string | undefined;
|
6525
|
+
fractionDigits?: number | undefined;
|
6526
|
+
significantDigits?: number | undefined;
|
6527
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
6528
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
6529
|
+
} | null | undefined;
|
6530
|
+
labelFontSize?: number | null | undefined;
|
6531
|
+
labelFontWeight?: string | number | null | undefined;
|
6532
|
+
labelBackgroundColor?: string | null | undefined;
|
6533
|
+
labelColor?: string | null | undefined;
|
6534
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
6535
|
+
labelPosition?: string | null | undefined;
|
6536
|
+
labelOverlap?: boolean | null | undefined;
|
5497
6537
|
} | null | undefined;
|
5498
6538
|
color?: {
|
5499
6539
|
colorScheme?: string[] | null | undefined;
|
@@ -5509,8 +6549,8 @@ export declare class Builder implements VSeedBuilder {
|
|
5509
6549
|
maxSize?: number | null | undefined;
|
5510
6550
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
5511
6551
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
6552
|
+
labelColor?: string | null | undefined;
|
5512
6553
|
labelFontSize?: number | null | undefined;
|
5513
|
-
labelFontColor?: string | null | undefined;
|
5514
6554
|
labelFontWeight?: string | number | null | undefined;
|
5515
6555
|
} | null | undefined;
|
5516
6556
|
} | null | undefined;
|
@@ -5521,6 +6561,26 @@ export declare class Builder implements VSeedBuilder {
|
|
5521
6561
|
wrap?: boolean | null | undefined;
|
5522
6562
|
showValue?: boolean | null | undefined;
|
5523
6563
|
showValuePercent?: boolean | null | undefined;
|
6564
|
+
autoFormat?: boolean | null | undefined;
|
6565
|
+
numFormat?: {
|
6566
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
6567
|
+
ratio?: number | undefined;
|
6568
|
+
symbol?: string | undefined;
|
6569
|
+
thousandSeparator?: boolean | undefined;
|
6570
|
+
prefix?: string | undefined;
|
6571
|
+
suffix?: string | undefined;
|
6572
|
+
fractionDigits?: number | undefined;
|
6573
|
+
significantDigits?: number | undefined;
|
6574
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
6575
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
6576
|
+
} | null | undefined;
|
6577
|
+
labelFontSize?: number | null | undefined;
|
6578
|
+
labelFontWeight?: string | number | null | undefined;
|
6579
|
+
labelBackgroundColor?: string | null | undefined;
|
6580
|
+
labelColor?: string | null | undefined;
|
6581
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
6582
|
+
labelPosition?: string | null | undefined;
|
6583
|
+
labelOverlap?: boolean | null | undefined;
|
5524
6584
|
} | null | undefined;
|
5525
6585
|
color?: {
|
5526
6586
|
colorScheme?: string[] | null | undefined;
|
@@ -5536,8 +6596,8 @@ export declare class Builder implements VSeedBuilder {
|
|
5536
6596
|
maxSize?: number | null | undefined;
|
5537
6597
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
5538
6598
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
6599
|
+
labelColor?: string | null | undefined;
|
5539
6600
|
labelFontSize?: number | null | undefined;
|
5540
|
-
labelFontColor?: string | null | undefined;
|
5541
6601
|
labelFontWeight?: string | number | null | undefined;
|
5542
6602
|
} | null | undefined;
|
5543
6603
|
} | null | undefined;
|
@@ -5548,6 +6608,26 @@ export declare class Builder implements VSeedBuilder {
|
|
5548
6608
|
wrap?: boolean | null | undefined;
|
5549
6609
|
showValue?: boolean | null | undefined;
|
5550
6610
|
showValuePercent?: boolean | null | undefined;
|
6611
|
+
autoFormat?: boolean | null | undefined;
|
6612
|
+
numFormat?: {
|
6613
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
6614
|
+
ratio?: number | undefined;
|
6615
|
+
symbol?: string | undefined;
|
6616
|
+
thousandSeparator?: boolean | undefined;
|
6617
|
+
prefix?: string | undefined;
|
6618
|
+
suffix?: string | undefined;
|
6619
|
+
fractionDigits?: number | undefined;
|
6620
|
+
significantDigits?: number | undefined;
|
6621
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
6622
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
6623
|
+
} | null | undefined;
|
6624
|
+
labelFontSize?: number | null | undefined;
|
6625
|
+
labelFontWeight?: string | number | null | undefined;
|
6626
|
+
labelBackgroundColor?: string | null | undefined;
|
6627
|
+
labelColor?: string | null | undefined;
|
6628
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
6629
|
+
labelPosition?: string | null | undefined;
|
6630
|
+
labelOverlap?: boolean | null | undefined;
|
5551
6631
|
} | null | undefined;
|
5552
6632
|
color?: {
|
5553
6633
|
colorScheme?: string[] | null | undefined;
|
@@ -5563,8 +6643,8 @@ export declare class Builder implements VSeedBuilder {
|
|
5563
6643
|
maxSize?: number | null | undefined;
|
5564
6644
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
5565
6645
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
6646
|
+
labelColor?: string | null | undefined;
|
5566
6647
|
labelFontSize?: number | null | undefined;
|
5567
|
-
labelFontColor?: string | null | undefined;
|
5568
6648
|
labelFontWeight?: string | number | null | undefined;
|
5569
6649
|
} | null | undefined;
|
5570
6650
|
} | null | undefined;
|
@@ -5842,6 +6922,26 @@ export declare class Builder implements VSeedBuilder {
|
|
5842
6922
|
wrap?: boolean | null | undefined;
|
5843
6923
|
showValue?: boolean | null | undefined;
|
5844
6924
|
showValuePercent?: boolean | null | undefined;
|
6925
|
+
autoFormat?: boolean | null | undefined;
|
6926
|
+
numFormat?: {
|
6927
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
6928
|
+
ratio?: number | undefined;
|
6929
|
+
symbol?: string | undefined;
|
6930
|
+
thousandSeparator?: boolean | undefined;
|
6931
|
+
prefix?: string | undefined;
|
6932
|
+
suffix?: string | undefined;
|
6933
|
+
fractionDigits?: number | undefined;
|
6934
|
+
significantDigits?: number | undefined;
|
6935
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
6936
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
6937
|
+
} | null | undefined;
|
6938
|
+
labelFontSize?: number | null | undefined;
|
6939
|
+
labelFontWeight?: string | number | null | undefined;
|
6940
|
+
labelBackgroundColor?: string | null | undefined;
|
6941
|
+
labelColor?: string | null | undefined;
|
6942
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
6943
|
+
labelPosition?: string | null | undefined;
|
6944
|
+
labelOverlap?: boolean | null | undefined;
|
5845
6945
|
} | null | undefined;
|
5846
6946
|
color?: {
|
5847
6947
|
colorScheme?: string[] | null | undefined;
|
@@ -5857,8 +6957,8 @@ export declare class Builder implements VSeedBuilder {
|
|
5857
6957
|
maxSize?: number | null | undefined;
|
5858
6958
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
5859
6959
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
6960
|
+
labelColor?: string | null | undefined;
|
5860
6961
|
labelFontSize?: number | null | undefined;
|
5861
|
-
labelFontColor?: string | null | undefined;
|
5862
6962
|
labelFontWeight?: string | number | null | undefined;
|
5863
6963
|
} | null | undefined;
|
5864
6964
|
xAxis?: {
|
@@ -5955,6 +7055,26 @@ export declare class Builder implements VSeedBuilder {
|
|
5955
7055
|
wrap?: boolean | null | undefined;
|
5956
7056
|
showValue?: boolean | null | undefined;
|
5957
7057
|
showValuePercent?: boolean | null | undefined;
|
7058
|
+
autoFormat?: boolean | null | undefined;
|
7059
|
+
numFormat?: {
|
7060
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
7061
|
+
ratio?: number | undefined;
|
7062
|
+
symbol?: string | undefined;
|
7063
|
+
thousandSeparator?: boolean | undefined;
|
7064
|
+
prefix?: string | undefined;
|
7065
|
+
suffix?: string | undefined;
|
7066
|
+
fractionDigits?: number | undefined;
|
7067
|
+
significantDigits?: number | undefined;
|
7068
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
7069
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
7070
|
+
} | null | undefined;
|
7071
|
+
labelFontSize?: number | null | undefined;
|
7072
|
+
labelFontWeight?: string | number | null | undefined;
|
7073
|
+
labelBackgroundColor?: string | null | undefined;
|
7074
|
+
labelColor?: string | null | undefined;
|
7075
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
7076
|
+
labelPosition?: string | null | undefined;
|
7077
|
+
labelOverlap?: boolean | null | undefined;
|
5958
7078
|
} | null | undefined;
|
5959
7079
|
color?: {
|
5960
7080
|
colorScheme?: string[] | null | undefined;
|
@@ -5970,8 +7090,8 @@ export declare class Builder implements VSeedBuilder {
|
|
5970
7090
|
maxSize?: number | null | undefined;
|
5971
7091
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
5972
7092
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
7093
|
+
labelColor?: string | null | undefined;
|
5973
7094
|
labelFontSize?: number | null | undefined;
|
5974
|
-
labelFontColor?: string | null | undefined;
|
5975
7095
|
labelFontWeight?: string | number | null | undefined;
|
5976
7096
|
} | null | undefined;
|
5977
7097
|
xAxis?: {
|
@@ -6069,6 +7189,26 @@ export declare class Builder implements VSeedBuilder {
|
|
6069
7189
|
wrap?: boolean | null | undefined;
|
6070
7190
|
showValue?: boolean | null | undefined;
|
6071
7191
|
showValuePercent?: boolean | null | undefined;
|
7192
|
+
autoFormat?: boolean | null | undefined;
|
7193
|
+
numFormat?: {
|
7194
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
7195
|
+
ratio?: number | undefined;
|
7196
|
+
symbol?: string | undefined;
|
7197
|
+
thousandSeparator?: boolean | undefined;
|
7198
|
+
prefix?: string | undefined;
|
7199
|
+
suffix?: string | undefined;
|
7200
|
+
fractionDigits?: number | undefined;
|
7201
|
+
significantDigits?: number | undefined;
|
7202
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
7203
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
7204
|
+
} | null | undefined;
|
7205
|
+
labelFontSize?: number | null | undefined;
|
7206
|
+
labelFontWeight?: string | number | null | undefined;
|
7207
|
+
labelBackgroundColor?: string | null | undefined;
|
7208
|
+
labelColor?: string | null | undefined;
|
7209
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
7210
|
+
labelPosition?: string | null | undefined;
|
7211
|
+
labelOverlap?: boolean | null | undefined;
|
6072
7212
|
} | null | undefined;
|
6073
7213
|
color?: {
|
6074
7214
|
colorScheme?: string[] | null | undefined;
|
@@ -6084,8 +7224,8 @@ export declare class Builder implements VSeedBuilder {
|
|
6084
7224
|
maxSize?: number | null | undefined;
|
6085
7225
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
6086
7226
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
7227
|
+
labelColor?: string | null | undefined;
|
6087
7228
|
labelFontSize?: number | null | undefined;
|
6088
|
-
labelFontColor?: string | null | undefined;
|
6089
7229
|
labelFontWeight?: string | number | null | undefined;
|
6090
7230
|
} | null | undefined;
|
6091
7231
|
xAxis?: {
|
@@ -6183,6 +7323,26 @@ export declare class Builder implements VSeedBuilder {
|
|
6183
7323
|
wrap?: boolean | null | undefined;
|
6184
7324
|
showValue?: boolean | null | undefined;
|
6185
7325
|
showValuePercent?: boolean | null | undefined;
|
7326
|
+
autoFormat?: boolean | null | undefined;
|
7327
|
+
numFormat?: {
|
7328
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
7329
|
+
ratio?: number | undefined;
|
7330
|
+
symbol?: string | undefined;
|
7331
|
+
thousandSeparator?: boolean | undefined;
|
7332
|
+
prefix?: string | undefined;
|
7333
|
+
suffix?: string | undefined;
|
7334
|
+
fractionDigits?: number | undefined;
|
7335
|
+
significantDigits?: number | undefined;
|
7336
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
7337
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
7338
|
+
} | null | undefined;
|
7339
|
+
labelFontSize?: number | null | undefined;
|
7340
|
+
labelFontWeight?: string | number | null | undefined;
|
7341
|
+
labelBackgroundColor?: string | null | undefined;
|
7342
|
+
labelColor?: string | null | undefined;
|
7343
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
7344
|
+
labelPosition?: string | null | undefined;
|
7345
|
+
labelOverlap?: boolean | null | undefined;
|
6186
7346
|
} | null | undefined;
|
6187
7347
|
color?: {
|
6188
7348
|
colorScheme?: string[] | null | undefined;
|
@@ -6198,8 +7358,8 @@ export declare class Builder implements VSeedBuilder {
|
|
6198
7358
|
maxSize?: number | null | undefined;
|
6199
7359
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
6200
7360
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
7361
|
+
labelColor?: string | null | undefined;
|
6201
7362
|
labelFontSize?: number | null | undefined;
|
6202
|
-
labelFontColor?: string | null | undefined;
|
6203
7363
|
labelFontWeight?: string | number | null | undefined;
|
6204
7364
|
} | null | undefined;
|
6205
7365
|
xAxis?: {
|
@@ -6297,6 +7457,26 @@ export declare class Builder implements VSeedBuilder {
|
|
6297
7457
|
wrap?: boolean | null | undefined;
|
6298
7458
|
showValue?: boolean | null | undefined;
|
6299
7459
|
showValuePercent?: boolean | null | undefined;
|
7460
|
+
autoFormat?: boolean | null | undefined;
|
7461
|
+
numFormat?: {
|
7462
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
7463
|
+
ratio?: number | undefined;
|
7464
|
+
symbol?: string | undefined;
|
7465
|
+
thousandSeparator?: boolean | undefined;
|
7466
|
+
prefix?: string | undefined;
|
7467
|
+
suffix?: string | undefined;
|
7468
|
+
fractionDigits?: number | undefined;
|
7469
|
+
significantDigits?: number | undefined;
|
7470
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
7471
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
7472
|
+
} | null | undefined;
|
7473
|
+
labelFontSize?: number | null | undefined;
|
7474
|
+
labelFontWeight?: string | number | null | undefined;
|
7475
|
+
labelBackgroundColor?: string | null | undefined;
|
7476
|
+
labelColor?: string | null | undefined;
|
7477
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
7478
|
+
labelPosition?: string | null | undefined;
|
7479
|
+
labelOverlap?: boolean | null | undefined;
|
6300
7480
|
} | null | undefined;
|
6301
7481
|
color?: {
|
6302
7482
|
colorScheme?: string[] | null | undefined;
|
@@ -6312,8 +7492,8 @@ export declare class Builder implements VSeedBuilder {
|
|
6312
7492
|
maxSize?: number | null | undefined;
|
6313
7493
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
6314
7494
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
7495
|
+
labelColor?: string | null | undefined;
|
6315
7496
|
labelFontSize?: number | null | undefined;
|
6316
|
-
labelFontColor?: string | null | undefined;
|
6317
7497
|
labelFontWeight?: string | number | null | undefined;
|
6318
7498
|
} | null | undefined;
|
6319
7499
|
xAxis?: {
|
@@ -6411,6 +7591,26 @@ export declare class Builder implements VSeedBuilder {
|
|
6411
7591
|
wrap?: boolean | null | undefined;
|
6412
7592
|
showValue?: boolean | null | undefined;
|
6413
7593
|
showValuePercent?: boolean | null | undefined;
|
7594
|
+
autoFormat?: boolean | null | undefined;
|
7595
|
+
numFormat?: {
|
7596
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
7597
|
+
ratio?: number | undefined;
|
7598
|
+
symbol?: string | undefined;
|
7599
|
+
thousandSeparator?: boolean | undefined;
|
7600
|
+
prefix?: string | undefined;
|
7601
|
+
suffix?: string | undefined;
|
7602
|
+
fractionDigits?: number | undefined;
|
7603
|
+
significantDigits?: number | undefined;
|
7604
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
7605
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
7606
|
+
} | null | undefined;
|
7607
|
+
labelFontSize?: number | null | undefined;
|
7608
|
+
labelFontWeight?: string | number | null | undefined;
|
7609
|
+
labelBackgroundColor?: string | null | undefined;
|
7610
|
+
labelColor?: string | null | undefined;
|
7611
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
7612
|
+
labelPosition?: string | null | undefined;
|
7613
|
+
labelOverlap?: boolean | null | undefined;
|
6414
7614
|
} | null | undefined;
|
6415
7615
|
color?: {
|
6416
7616
|
colorScheme?: string[] | null | undefined;
|
@@ -6426,8 +7626,8 @@ export declare class Builder implements VSeedBuilder {
|
|
6426
7626
|
maxSize?: number | null | undefined;
|
6427
7627
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
6428
7628
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
7629
|
+
labelColor?: string | null | undefined;
|
6429
7630
|
labelFontSize?: number | null | undefined;
|
6430
|
-
labelFontColor?: string | null | undefined;
|
6431
7631
|
labelFontWeight?: string | number | null | undefined;
|
6432
7632
|
} | null | undefined;
|
6433
7633
|
xAxis?: {
|
@@ -6525,6 +7725,26 @@ export declare class Builder implements VSeedBuilder {
|
|
6525
7725
|
wrap?: boolean | null | undefined;
|
6526
7726
|
showValue?: boolean | null | undefined;
|
6527
7727
|
showValuePercent?: boolean | null | undefined;
|
7728
|
+
autoFormat?: boolean | null | undefined;
|
7729
|
+
numFormat?: {
|
7730
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
7731
|
+
ratio?: number | undefined;
|
7732
|
+
symbol?: string | undefined;
|
7733
|
+
thousandSeparator?: boolean | undefined;
|
7734
|
+
prefix?: string | undefined;
|
7735
|
+
suffix?: string | undefined;
|
7736
|
+
fractionDigits?: number | undefined;
|
7737
|
+
significantDigits?: number | undefined;
|
7738
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
7739
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
7740
|
+
} | null | undefined;
|
7741
|
+
labelFontSize?: number | null | undefined;
|
7742
|
+
labelFontWeight?: string | number | null | undefined;
|
7743
|
+
labelBackgroundColor?: string | null | undefined;
|
7744
|
+
labelColor?: string | null | undefined;
|
7745
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
7746
|
+
labelPosition?: string | null | undefined;
|
7747
|
+
labelOverlap?: boolean | null | undefined;
|
6528
7748
|
} | null | undefined;
|
6529
7749
|
color?: {
|
6530
7750
|
colorScheme?: string[] | null | undefined;
|
@@ -6540,8 +7760,8 @@ export declare class Builder implements VSeedBuilder {
|
|
6540
7760
|
maxSize?: number | null | undefined;
|
6541
7761
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
6542
7762
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
7763
|
+
labelColor?: string | null | undefined;
|
6543
7764
|
labelFontSize?: number | null | undefined;
|
6544
|
-
labelFontColor?: string | null | undefined;
|
6545
7765
|
labelFontWeight?: string | number | null | undefined;
|
6546
7766
|
} | null | undefined;
|
6547
7767
|
xAxis?: {
|
@@ -6639,6 +7859,26 @@ export declare class Builder implements VSeedBuilder {
|
|
6639
7859
|
wrap?: boolean | null | undefined;
|
6640
7860
|
showValue?: boolean | null | undefined;
|
6641
7861
|
showValuePercent?: boolean | null | undefined;
|
7862
|
+
autoFormat?: boolean | null | undefined;
|
7863
|
+
numFormat?: {
|
7864
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
7865
|
+
ratio?: number | undefined;
|
7866
|
+
symbol?: string | undefined;
|
7867
|
+
thousandSeparator?: boolean | undefined;
|
7868
|
+
prefix?: string | undefined;
|
7869
|
+
suffix?: string | undefined;
|
7870
|
+
fractionDigits?: number | undefined;
|
7871
|
+
significantDigits?: number | undefined;
|
7872
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
7873
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
7874
|
+
} | null | undefined;
|
7875
|
+
labelFontSize?: number | null | undefined;
|
7876
|
+
labelFontWeight?: string | number | null | undefined;
|
7877
|
+
labelBackgroundColor?: string | null | undefined;
|
7878
|
+
labelColor?: string | null | undefined;
|
7879
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
7880
|
+
labelPosition?: string | null | undefined;
|
7881
|
+
labelOverlap?: boolean | null | undefined;
|
6642
7882
|
} | null | undefined;
|
6643
7883
|
color?: {
|
6644
7884
|
colorScheme?: string[] | null | undefined;
|
@@ -6654,8 +7894,8 @@ export declare class Builder implements VSeedBuilder {
|
|
6654
7894
|
maxSize?: number | null | undefined;
|
6655
7895
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
6656
7896
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
7897
|
+
labelColor?: string | null | undefined;
|
6657
7898
|
labelFontSize?: number | null | undefined;
|
6658
|
-
labelFontColor?: string | null | undefined;
|
6659
7899
|
labelFontWeight?: string | number | null | undefined;
|
6660
7900
|
} | null | undefined;
|
6661
7901
|
xAxis?: {
|
@@ -6752,6 +7992,26 @@ export declare class Builder implements VSeedBuilder {
|
|
6752
7992
|
wrap?: boolean | null | undefined;
|
6753
7993
|
showValue?: boolean | null | undefined;
|
6754
7994
|
showValuePercent?: boolean | null | undefined;
|
7995
|
+
autoFormat?: boolean | null | undefined;
|
7996
|
+
numFormat?: {
|
7997
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
7998
|
+
ratio?: number | undefined;
|
7999
|
+
symbol?: string | undefined;
|
8000
|
+
thousandSeparator?: boolean | undefined;
|
8001
|
+
prefix?: string | undefined;
|
8002
|
+
suffix?: string | undefined;
|
8003
|
+
fractionDigits?: number | undefined;
|
8004
|
+
significantDigits?: number | undefined;
|
8005
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
8006
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
8007
|
+
} | null | undefined;
|
8008
|
+
labelFontSize?: number | null | undefined;
|
8009
|
+
labelFontWeight?: string | number | null | undefined;
|
8010
|
+
labelBackgroundColor?: string | null | undefined;
|
8011
|
+
labelColor?: string | null | undefined;
|
8012
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
8013
|
+
labelPosition?: string | null | undefined;
|
8014
|
+
labelOverlap?: boolean | null | undefined;
|
6755
8015
|
} | null | undefined;
|
6756
8016
|
color?: {
|
6757
8017
|
colorScheme?: string[] | null | undefined;
|
@@ -6767,8 +8027,8 @@ export declare class Builder implements VSeedBuilder {
|
|
6767
8027
|
maxSize?: number | null | undefined;
|
6768
8028
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
6769
8029
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
8030
|
+
labelColor?: string | null | undefined;
|
6770
8031
|
labelFontSize?: number | null | undefined;
|
6771
|
-
labelFontColor?: string | null | undefined;
|
6772
8032
|
labelFontWeight?: string | number | null | undefined;
|
6773
8033
|
} | null | undefined;
|
6774
8034
|
xAxis?: {
|
@@ -6865,6 +8125,26 @@ export declare class Builder implements VSeedBuilder {
|
|
6865
8125
|
wrap?: boolean | null | undefined;
|
6866
8126
|
showValue?: boolean | null | undefined;
|
6867
8127
|
showValuePercent?: boolean | null | undefined;
|
8128
|
+
autoFormat?: boolean | null | undefined;
|
8129
|
+
numFormat?: {
|
8130
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
8131
|
+
ratio?: number | undefined;
|
8132
|
+
symbol?: string | undefined;
|
8133
|
+
thousandSeparator?: boolean | undefined;
|
8134
|
+
prefix?: string | undefined;
|
8135
|
+
suffix?: string | undefined;
|
8136
|
+
fractionDigits?: number | undefined;
|
8137
|
+
significantDigits?: number | undefined;
|
8138
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
8139
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
8140
|
+
} | null | undefined;
|
8141
|
+
labelFontSize?: number | null | undefined;
|
8142
|
+
labelFontWeight?: string | number | null | undefined;
|
8143
|
+
labelBackgroundColor?: string | null | undefined;
|
8144
|
+
labelColor?: string | null | undefined;
|
8145
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
8146
|
+
labelPosition?: string | null | undefined;
|
8147
|
+
labelOverlap?: boolean | null | undefined;
|
6868
8148
|
} | null | undefined;
|
6869
8149
|
color?: {
|
6870
8150
|
colorScheme?: string[] | null | undefined;
|
@@ -6880,8 +8160,8 @@ export declare class Builder implements VSeedBuilder {
|
|
6880
8160
|
maxSize?: number | null | undefined;
|
6881
8161
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
6882
8162
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
8163
|
+
labelColor?: string | null | undefined;
|
6883
8164
|
labelFontSize?: number | null | undefined;
|
6884
|
-
labelFontColor?: string | null | undefined;
|
6885
8165
|
labelFontWeight?: string | number | null | undefined;
|
6886
8166
|
} | null | undefined;
|
6887
8167
|
xAxis?: {
|
@@ -6979,6 +8259,26 @@ export declare class Builder implements VSeedBuilder {
|
|
6979
8259
|
wrap?: boolean | null | undefined;
|
6980
8260
|
showValue?: boolean | null | undefined;
|
6981
8261
|
showValuePercent?: boolean | null | undefined;
|
8262
|
+
autoFormat?: boolean | null | undefined;
|
8263
|
+
numFormat?: {
|
8264
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
8265
|
+
ratio?: number | undefined;
|
8266
|
+
symbol?: string | undefined;
|
8267
|
+
thousandSeparator?: boolean | undefined;
|
8268
|
+
prefix?: string | undefined;
|
8269
|
+
suffix?: string | undefined;
|
8270
|
+
fractionDigits?: number | undefined;
|
8271
|
+
significantDigits?: number | undefined;
|
8272
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
8273
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
8274
|
+
} | null | undefined;
|
8275
|
+
labelFontSize?: number | null | undefined;
|
8276
|
+
labelFontWeight?: string | number | null | undefined;
|
8277
|
+
labelBackgroundColor?: string | null | undefined;
|
8278
|
+
labelColor?: string | null | undefined;
|
8279
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
8280
|
+
labelPosition?: string | null | undefined;
|
8281
|
+
labelOverlap?: boolean | null | undefined;
|
6982
8282
|
} | null | undefined;
|
6983
8283
|
color?: {
|
6984
8284
|
colorScheme?: string[] | null | undefined;
|
@@ -6994,8 +8294,8 @@ export declare class Builder implements VSeedBuilder {
|
|
6994
8294
|
maxSize?: number | null | undefined;
|
6995
8295
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
6996
8296
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
8297
|
+
labelColor?: string | null | undefined;
|
6997
8298
|
labelFontSize?: number | null | undefined;
|
6998
|
-
labelFontColor?: string | null | undefined;
|
6999
8299
|
labelFontWeight?: string | number | null | undefined;
|
7000
8300
|
} | null | undefined;
|
7001
8301
|
dualChartType?: {
|
@@ -7218,6 +8518,26 @@ export declare class Builder implements VSeedBuilder {
|
|
7218
8518
|
wrap?: boolean | null | undefined;
|
7219
8519
|
showValue?: boolean | null | undefined;
|
7220
8520
|
showValuePercent?: boolean | null | undefined;
|
8521
|
+
autoFormat?: boolean | null | undefined;
|
8522
|
+
numFormat?: {
|
8523
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
8524
|
+
ratio?: number | undefined;
|
8525
|
+
symbol?: string | undefined;
|
8526
|
+
thousandSeparator?: boolean | undefined;
|
8527
|
+
prefix?: string | undefined;
|
8528
|
+
suffix?: string | undefined;
|
8529
|
+
fractionDigits?: number | undefined;
|
8530
|
+
significantDigits?: number | undefined;
|
8531
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
8532
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
8533
|
+
} | null | undefined;
|
8534
|
+
labelFontSize?: number | null | undefined;
|
8535
|
+
labelFontWeight?: string | number | null | undefined;
|
8536
|
+
labelBackgroundColor?: string | null | undefined;
|
8537
|
+
labelColor?: string | null | undefined;
|
8538
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
8539
|
+
labelPosition?: string | null | undefined;
|
8540
|
+
labelOverlap?: boolean | null | undefined;
|
7221
8541
|
} | null | undefined;
|
7222
8542
|
color?: {
|
7223
8543
|
colorScheme?: string[] | null | undefined;
|
@@ -7233,8 +8553,8 @@ export declare class Builder implements VSeedBuilder {
|
|
7233
8553
|
maxSize?: number | null | undefined;
|
7234
8554
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
7235
8555
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
8556
|
+
labelColor?: string | null | undefined;
|
7236
8557
|
labelFontSize?: number | null | undefined;
|
7237
|
-
labelFontColor?: string | null | undefined;
|
7238
8558
|
labelFontWeight?: string | number | null | undefined;
|
7239
8559
|
} | null | undefined;
|
7240
8560
|
} | null | undefined;
|
@@ -7245,6 +8565,26 @@ export declare class Builder implements VSeedBuilder {
|
|
7245
8565
|
wrap?: boolean | null | undefined;
|
7246
8566
|
showValue?: boolean | null | undefined;
|
7247
8567
|
showValuePercent?: boolean | null | undefined;
|
8568
|
+
autoFormat?: boolean | null | undefined;
|
8569
|
+
numFormat?: {
|
8570
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
8571
|
+
ratio?: number | undefined;
|
8572
|
+
symbol?: string | undefined;
|
8573
|
+
thousandSeparator?: boolean | undefined;
|
8574
|
+
prefix?: string | undefined;
|
8575
|
+
suffix?: string | undefined;
|
8576
|
+
fractionDigits?: number | undefined;
|
8577
|
+
significantDigits?: number | undefined;
|
8578
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
8579
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
8580
|
+
} | null | undefined;
|
8581
|
+
labelFontSize?: number | null | undefined;
|
8582
|
+
labelFontWeight?: string | number | null | undefined;
|
8583
|
+
labelBackgroundColor?: string | null | undefined;
|
8584
|
+
labelColor?: string | null | undefined;
|
8585
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
8586
|
+
labelPosition?: string | null | undefined;
|
8587
|
+
labelOverlap?: boolean | null | undefined;
|
7248
8588
|
} | null | undefined;
|
7249
8589
|
color?: {
|
7250
8590
|
colorScheme?: string[] | null | undefined;
|
@@ -7260,8 +8600,8 @@ export declare class Builder implements VSeedBuilder {
|
|
7260
8600
|
maxSize?: number | null | undefined;
|
7261
8601
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
7262
8602
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
8603
|
+
labelColor?: string | null | undefined;
|
7263
8604
|
labelFontSize?: number | null | undefined;
|
7264
|
-
labelFontColor?: string | null | undefined;
|
7265
8605
|
labelFontWeight?: string | number | null | undefined;
|
7266
8606
|
} | null | undefined;
|
7267
8607
|
} | null | undefined;
|
@@ -7272,6 +8612,26 @@ export declare class Builder implements VSeedBuilder {
|
|
7272
8612
|
wrap?: boolean | null | undefined;
|
7273
8613
|
showValue?: boolean | null | undefined;
|
7274
8614
|
showValuePercent?: boolean | null | undefined;
|
8615
|
+
autoFormat?: boolean | null | undefined;
|
8616
|
+
numFormat?: {
|
8617
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
8618
|
+
ratio?: number | undefined;
|
8619
|
+
symbol?: string | undefined;
|
8620
|
+
thousandSeparator?: boolean | undefined;
|
8621
|
+
prefix?: string | undefined;
|
8622
|
+
suffix?: string | undefined;
|
8623
|
+
fractionDigits?: number | undefined;
|
8624
|
+
significantDigits?: number | undefined;
|
8625
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
8626
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
8627
|
+
} | null | undefined;
|
8628
|
+
labelFontSize?: number | null | undefined;
|
8629
|
+
labelFontWeight?: string | number | null | undefined;
|
8630
|
+
labelBackgroundColor?: string | null | undefined;
|
8631
|
+
labelColor?: string | null | undefined;
|
8632
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
8633
|
+
labelPosition?: string | null | undefined;
|
8634
|
+
labelOverlap?: boolean | null | undefined;
|
7275
8635
|
} | null | undefined;
|
7276
8636
|
color?: {
|
7277
8637
|
colorScheme?: string[] | null | undefined;
|
@@ -7287,8 +8647,8 @@ export declare class Builder implements VSeedBuilder {
|
|
7287
8647
|
maxSize?: number | null | undefined;
|
7288
8648
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
7289
8649
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
8650
|
+
labelColor?: string | null | undefined;
|
7290
8651
|
labelFontSize?: number | null | undefined;
|
7291
|
-
labelFontColor?: string | null | undefined;
|
7292
8652
|
labelFontWeight?: string | number | null | undefined;
|
7293
8653
|
} | null | undefined;
|
7294
8654
|
} | null | undefined;
|
@@ -7299,6 +8659,26 @@ export declare class Builder implements VSeedBuilder {
|
|
7299
8659
|
wrap?: boolean | null | undefined;
|
7300
8660
|
showValue?: boolean | null | undefined;
|
7301
8661
|
showValuePercent?: boolean | null | undefined;
|
8662
|
+
autoFormat?: boolean | null | undefined;
|
8663
|
+
numFormat?: {
|
8664
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
8665
|
+
ratio?: number | undefined;
|
8666
|
+
symbol?: string | undefined;
|
8667
|
+
thousandSeparator?: boolean | undefined;
|
8668
|
+
prefix?: string | undefined;
|
8669
|
+
suffix?: string | undefined;
|
8670
|
+
fractionDigits?: number | undefined;
|
8671
|
+
significantDigits?: number | undefined;
|
8672
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
8673
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
8674
|
+
} | null | undefined;
|
8675
|
+
labelFontSize?: number | null | undefined;
|
8676
|
+
labelFontWeight?: string | number | null | undefined;
|
8677
|
+
labelBackgroundColor?: string | null | undefined;
|
8678
|
+
labelColor?: string | null | undefined;
|
8679
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
8680
|
+
labelPosition?: string | null | undefined;
|
8681
|
+
labelOverlap?: boolean | null | undefined;
|
7302
8682
|
} | null | undefined;
|
7303
8683
|
color?: {
|
7304
8684
|
colorScheme?: string[] | null | undefined;
|
@@ -7314,8 +8694,8 @@ export declare class Builder implements VSeedBuilder {
|
|
7314
8694
|
maxSize?: number | null | undefined;
|
7315
8695
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
7316
8696
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
8697
|
+
labelColor?: string | null | undefined;
|
7317
8698
|
labelFontSize?: number | null | undefined;
|
7318
|
-
labelFontColor?: string | null | undefined;
|
7319
8699
|
labelFontWeight?: string | number | null | undefined;
|
7320
8700
|
} | null | undefined;
|
7321
8701
|
} | null | undefined;
|
@@ -7326,6 +8706,26 @@ export declare class Builder implements VSeedBuilder {
|
|
7326
8706
|
wrap?: boolean | null | undefined;
|
7327
8707
|
showValue?: boolean | null | undefined;
|
7328
8708
|
showValuePercent?: boolean | null | undefined;
|
8709
|
+
autoFormat?: boolean | null | undefined;
|
8710
|
+
numFormat?: {
|
8711
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
8712
|
+
ratio?: number | undefined;
|
8713
|
+
symbol?: string | undefined;
|
8714
|
+
thousandSeparator?: boolean | undefined;
|
8715
|
+
prefix?: string | undefined;
|
8716
|
+
suffix?: string | undefined;
|
8717
|
+
fractionDigits?: number | undefined;
|
8718
|
+
significantDigits?: number | undefined;
|
8719
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
8720
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
8721
|
+
} | null | undefined;
|
8722
|
+
labelFontSize?: number | null | undefined;
|
8723
|
+
labelFontWeight?: string | number | null | undefined;
|
8724
|
+
labelBackgroundColor?: string | null | undefined;
|
8725
|
+
labelColor?: string | null | undefined;
|
8726
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
8727
|
+
labelPosition?: string | null | undefined;
|
8728
|
+
labelOverlap?: boolean | null | undefined;
|
7329
8729
|
} | null | undefined;
|
7330
8730
|
color?: {
|
7331
8731
|
colorScheme?: string[] | null | undefined;
|
@@ -7341,8 +8741,8 @@ export declare class Builder implements VSeedBuilder {
|
|
7341
8741
|
maxSize?: number | null | undefined;
|
7342
8742
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
7343
8743
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
8744
|
+
labelColor?: string | null | undefined;
|
7344
8745
|
labelFontSize?: number | null | undefined;
|
7345
|
-
labelFontColor?: string | null | undefined;
|
7346
8746
|
labelFontWeight?: string | number | null | undefined;
|
7347
8747
|
} | null | undefined;
|
7348
8748
|
} | null | undefined;
|
@@ -7353,6 +8753,26 @@ export declare class Builder implements VSeedBuilder {
|
|
7353
8753
|
wrap?: boolean | null | undefined;
|
7354
8754
|
showValue?: boolean | null | undefined;
|
7355
8755
|
showValuePercent?: boolean | null | undefined;
|
8756
|
+
autoFormat?: boolean | null | undefined;
|
8757
|
+
numFormat?: {
|
8758
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
8759
|
+
ratio?: number | undefined;
|
8760
|
+
symbol?: string | undefined;
|
8761
|
+
thousandSeparator?: boolean | undefined;
|
8762
|
+
prefix?: string | undefined;
|
8763
|
+
suffix?: string | undefined;
|
8764
|
+
fractionDigits?: number | undefined;
|
8765
|
+
significantDigits?: number | undefined;
|
8766
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
8767
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
8768
|
+
} | null | undefined;
|
8769
|
+
labelFontSize?: number | null | undefined;
|
8770
|
+
labelFontWeight?: string | number | null | undefined;
|
8771
|
+
labelBackgroundColor?: string | null | undefined;
|
8772
|
+
labelColor?: string | null | undefined;
|
8773
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
8774
|
+
labelPosition?: string | null | undefined;
|
8775
|
+
labelOverlap?: boolean | null | undefined;
|
7356
8776
|
} | null | undefined;
|
7357
8777
|
color?: {
|
7358
8778
|
colorScheme?: string[] | null | undefined;
|
@@ -7368,8 +8788,8 @@ export declare class Builder implements VSeedBuilder {
|
|
7368
8788
|
maxSize?: number | null | undefined;
|
7369
8789
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
7370
8790
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
8791
|
+
labelColor?: string | null | undefined;
|
7371
8792
|
labelFontSize?: number | null | undefined;
|
7372
|
-
labelFontColor?: string | null | undefined;
|
7373
8793
|
labelFontWeight?: string | number | null | undefined;
|
7374
8794
|
} | null | undefined;
|
7375
8795
|
} | null | undefined;
|
@@ -7380,6 +8800,26 @@ export declare class Builder implements VSeedBuilder {
|
|
7380
8800
|
wrap?: boolean | null | undefined;
|
7381
8801
|
showValue?: boolean | null | undefined;
|
7382
8802
|
showValuePercent?: boolean | null | undefined;
|
8803
|
+
autoFormat?: boolean | null | undefined;
|
8804
|
+
numFormat?: {
|
8805
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
8806
|
+
ratio?: number | undefined;
|
8807
|
+
symbol?: string | undefined;
|
8808
|
+
thousandSeparator?: boolean | undefined;
|
8809
|
+
prefix?: string | undefined;
|
8810
|
+
suffix?: string | undefined;
|
8811
|
+
fractionDigits?: number | undefined;
|
8812
|
+
significantDigits?: number | undefined;
|
8813
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
8814
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
8815
|
+
} | null | undefined;
|
8816
|
+
labelFontSize?: number | null | undefined;
|
8817
|
+
labelFontWeight?: string | number | null | undefined;
|
8818
|
+
labelBackgroundColor?: string | null | undefined;
|
8819
|
+
labelColor?: string | null | undefined;
|
8820
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
8821
|
+
labelPosition?: string | null | undefined;
|
8822
|
+
labelOverlap?: boolean | null | undefined;
|
7383
8823
|
} | null | undefined;
|
7384
8824
|
color?: {
|
7385
8825
|
colorScheme?: string[] | null | undefined;
|
@@ -7395,8 +8835,8 @@ export declare class Builder implements VSeedBuilder {
|
|
7395
8835
|
maxSize?: number | null | undefined;
|
7396
8836
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
7397
8837
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
8838
|
+
labelColor?: string | null | undefined;
|
7398
8839
|
labelFontSize?: number | null | undefined;
|
7399
|
-
labelFontColor?: string | null | undefined;
|
7400
8840
|
labelFontWeight?: string | number | null | undefined;
|
7401
8841
|
} | null | undefined;
|
7402
8842
|
} | null | undefined;
|
@@ -7803,6 +9243,26 @@ export declare class Builder implements VSeedBuilder {
|
|
7803
9243
|
wrap?: boolean | null | undefined;
|
7804
9244
|
showValue?: boolean | null | undefined;
|
7805
9245
|
showValuePercent?: boolean | null | undefined;
|
9246
|
+
autoFormat?: boolean | null | undefined;
|
9247
|
+
numFormat?: {
|
9248
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
9249
|
+
ratio?: number | undefined;
|
9250
|
+
symbol?: string | undefined;
|
9251
|
+
thousandSeparator?: boolean | undefined;
|
9252
|
+
prefix?: string | undefined;
|
9253
|
+
suffix?: string | undefined;
|
9254
|
+
fractionDigits?: number | undefined;
|
9255
|
+
significantDigits?: number | undefined;
|
9256
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
9257
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
9258
|
+
} | null | undefined;
|
9259
|
+
labelFontSize?: number | null | undefined;
|
9260
|
+
labelFontWeight?: string | number | null | undefined;
|
9261
|
+
labelBackgroundColor?: string | null | undefined;
|
9262
|
+
labelColor?: string | null | undefined;
|
9263
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
9264
|
+
labelPosition?: string | null | undefined;
|
9265
|
+
labelOverlap?: boolean | null | undefined;
|
7806
9266
|
} | null | undefined;
|
7807
9267
|
color?: {
|
7808
9268
|
colorScheme?: string[] | null | undefined;
|
@@ -7818,8 +9278,8 @@ export declare class Builder implements VSeedBuilder {
|
|
7818
9278
|
maxSize?: number | null | undefined;
|
7819
9279
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
7820
9280
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
9281
|
+
labelColor?: string | null | undefined;
|
7821
9282
|
labelFontSize?: number | null | undefined;
|
7822
|
-
labelFontColor?: string | null | undefined;
|
7823
9283
|
labelFontWeight?: string | number | null | undefined;
|
7824
9284
|
} | null | undefined;
|
7825
9285
|
xAxis?: {
|
@@ -7916,6 +9376,26 @@ export declare class Builder implements VSeedBuilder {
|
|
7916
9376
|
wrap?: boolean | null | undefined;
|
7917
9377
|
showValue?: boolean | null | undefined;
|
7918
9378
|
showValuePercent?: boolean | null | undefined;
|
9379
|
+
autoFormat?: boolean | null | undefined;
|
9380
|
+
numFormat?: {
|
9381
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
9382
|
+
ratio?: number | undefined;
|
9383
|
+
symbol?: string | undefined;
|
9384
|
+
thousandSeparator?: boolean | undefined;
|
9385
|
+
prefix?: string | undefined;
|
9386
|
+
suffix?: string | undefined;
|
9387
|
+
fractionDigits?: number | undefined;
|
9388
|
+
significantDigits?: number | undefined;
|
9389
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
9390
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
9391
|
+
} | null | undefined;
|
9392
|
+
labelFontSize?: number | null | undefined;
|
9393
|
+
labelFontWeight?: string | number | null | undefined;
|
9394
|
+
labelBackgroundColor?: string | null | undefined;
|
9395
|
+
labelColor?: string | null | undefined;
|
9396
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
9397
|
+
labelPosition?: string | null | undefined;
|
9398
|
+
labelOverlap?: boolean | null | undefined;
|
7919
9399
|
} | null | undefined;
|
7920
9400
|
color?: {
|
7921
9401
|
colorScheme?: string[] | null | undefined;
|
@@ -7931,8 +9411,8 @@ export declare class Builder implements VSeedBuilder {
|
|
7931
9411
|
maxSize?: number | null | undefined;
|
7932
9412
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
7933
9413
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
9414
|
+
labelColor?: string | null | undefined;
|
7934
9415
|
labelFontSize?: number | null | undefined;
|
7935
|
-
labelFontColor?: string | null | undefined;
|
7936
9416
|
labelFontWeight?: string | number | null | undefined;
|
7937
9417
|
} | null | undefined;
|
7938
9418
|
xAxis?: {
|
@@ -8030,6 +9510,26 @@ export declare class Builder implements VSeedBuilder {
|
|
8030
9510
|
wrap?: boolean | null | undefined;
|
8031
9511
|
showValue?: boolean | null | undefined;
|
8032
9512
|
showValuePercent?: boolean | null | undefined;
|
9513
|
+
autoFormat?: boolean | null | undefined;
|
9514
|
+
numFormat?: {
|
9515
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
9516
|
+
ratio?: number | undefined;
|
9517
|
+
symbol?: string | undefined;
|
9518
|
+
thousandSeparator?: boolean | undefined;
|
9519
|
+
prefix?: string | undefined;
|
9520
|
+
suffix?: string | undefined;
|
9521
|
+
fractionDigits?: number | undefined;
|
9522
|
+
significantDigits?: number | undefined;
|
9523
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
9524
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
9525
|
+
} | null | undefined;
|
9526
|
+
labelFontSize?: number | null | undefined;
|
9527
|
+
labelFontWeight?: string | number | null | undefined;
|
9528
|
+
labelBackgroundColor?: string | null | undefined;
|
9529
|
+
labelColor?: string | null | undefined;
|
9530
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
9531
|
+
labelPosition?: string | null | undefined;
|
9532
|
+
labelOverlap?: boolean | null | undefined;
|
8033
9533
|
} | null | undefined;
|
8034
9534
|
color?: {
|
8035
9535
|
colorScheme?: string[] | null | undefined;
|
@@ -8045,8 +9545,8 @@ export declare class Builder implements VSeedBuilder {
|
|
8045
9545
|
maxSize?: number | null | undefined;
|
8046
9546
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
8047
9547
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
9548
|
+
labelColor?: string | null | undefined;
|
8048
9549
|
labelFontSize?: number | null | undefined;
|
8049
|
-
labelFontColor?: string | null | undefined;
|
8050
9550
|
labelFontWeight?: string | number | null | undefined;
|
8051
9551
|
} | null | undefined;
|
8052
9552
|
xAxis?: {
|
@@ -8144,6 +9644,26 @@ export declare class Builder implements VSeedBuilder {
|
|
8144
9644
|
wrap?: boolean | null | undefined;
|
8145
9645
|
showValue?: boolean | null | undefined;
|
8146
9646
|
showValuePercent?: boolean | null | undefined;
|
9647
|
+
autoFormat?: boolean | null | undefined;
|
9648
|
+
numFormat?: {
|
9649
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
9650
|
+
ratio?: number | undefined;
|
9651
|
+
symbol?: string | undefined;
|
9652
|
+
thousandSeparator?: boolean | undefined;
|
9653
|
+
prefix?: string | undefined;
|
9654
|
+
suffix?: string | undefined;
|
9655
|
+
fractionDigits?: number | undefined;
|
9656
|
+
significantDigits?: number | undefined;
|
9657
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
9658
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
9659
|
+
} | null | undefined;
|
9660
|
+
labelFontSize?: number | null | undefined;
|
9661
|
+
labelFontWeight?: string | number | null | undefined;
|
9662
|
+
labelBackgroundColor?: string | null | undefined;
|
9663
|
+
labelColor?: string | null | undefined;
|
9664
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
9665
|
+
labelPosition?: string | null | undefined;
|
9666
|
+
labelOverlap?: boolean | null | undefined;
|
8147
9667
|
} | null | undefined;
|
8148
9668
|
color?: {
|
8149
9669
|
colorScheme?: string[] | null | undefined;
|
@@ -8159,8 +9679,8 @@ export declare class Builder implements VSeedBuilder {
|
|
8159
9679
|
maxSize?: number | null | undefined;
|
8160
9680
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
8161
9681
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
9682
|
+
labelColor?: string | null | undefined;
|
8162
9683
|
labelFontSize?: number | null | undefined;
|
8163
|
-
labelFontColor?: string | null | undefined;
|
8164
9684
|
labelFontWeight?: string | number | null | undefined;
|
8165
9685
|
} | null | undefined;
|
8166
9686
|
xAxis?: {
|
@@ -8258,6 +9778,26 @@ export declare class Builder implements VSeedBuilder {
|
|
8258
9778
|
wrap?: boolean | null | undefined;
|
8259
9779
|
showValue?: boolean | null | undefined;
|
8260
9780
|
showValuePercent?: boolean | null | undefined;
|
9781
|
+
autoFormat?: boolean | null | undefined;
|
9782
|
+
numFormat?: {
|
9783
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
9784
|
+
ratio?: number | undefined;
|
9785
|
+
symbol?: string | undefined;
|
9786
|
+
thousandSeparator?: boolean | undefined;
|
9787
|
+
prefix?: string | undefined;
|
9788
|
+
suffix?: string | undefined;
|
9789
|
+
fractionDigits?: number | undefined;
|
9790
|
+
significantDigits?: number | undefined;
|
9791
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
9792
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
9793
|
+
} | null | undefined;
|
9794
|
+
labelFontSize?: number | null | undefined;
|
9795
|
+
labelFontWeight?: string | number | null | undefined;
|
9796
|
+
labelBackgroundColor?: string | null | undefined;
|
9797
|
+
labelColor?: string | null | undefined;
|
9798
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
9799
|
+
labelPosition?: string | null | undefined;
|
9800
|
+
labelOverlap?: boolean | null | undefined;
|
8261
9801
|
} | null | undefined;
|
8262
9802
|
color?: {
|
8263
9803
|
colorScheme?: string[] | null | undefined;
|
@@ -8273,8 +9813,8 @@ export declare class Builder implements VSeedBuilder {
|
|
8273
9813
|
maxSize?: number | null | undefined;
|
8274
9814
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
8275
9815
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
9816
|
+
labelColor?: string | null | undefined;
|
8276
9817
|
labelFontSize?: number | null | undefined;
|
8277
|
-
labelFontColor?: string | null | undefined;
|
8278
9818
|
labelFontWeight?: string | number | null | undefined;
|
8279
9819
|
} | null | undefined;
|
8280
9820
|
xAxis?: {
|
@@ -8372,6 +9912,26 @@ export declare class Builder implements VSeedBuilder {
|
|
8372
9912
|
wrap?: boolean | null | undefined;
|
8373
9913
|
showValue?: boolean | null | undefined;
|
8374
9914
|
showValuePercent?: boolean | null | undefined;
|
9915
|
+
autoFormat?: boolean | null | undefined;
|
9916
|
+
numFormat?: {
|
9917
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
9918
|
+
ratio?: number | undefined;
|
9919
|
+
symbol?: string | undefined;
|
9920
|
+
thousandSeparator?: boolean | undefined;
|
9921
|
+
prefix?: string | undefined;
|
9922
|
+
suffix?: string | undefined;
|
9923
|
+
fractionDigits?: number | undefined;
|
9924
|
+
significantDigits?: number | undefined;
|
9925
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
9926
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
9927
|
+
} | null | undefined;
|
9928
|
+
labelFontSize?: number | null | undefined;
|
9929
|
+
labelFontWeight?: string | number | null | undefined;
|
9930
|
+
labelBackgroundColor?: string | null | undefined;
|
9931
|
+
labelColor?: string | null | undefined;
|
9932
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
9933
|
+
labelPosition?: string | null | undefined;
|
9934
|
+
labelOverlap?: boolean | null | undefined;
|
8375
9935
|
} | null | undefined;
|
8376
9936
|
color?: {
|
8377
9937
|
colorScheme?: string[] | null | undefined;
|
@@ -8387,8 +9947,8 @@ export declare class Builder implements VSeedBuilder {
|
|
8387
9947
|
maxSize?: number | null | undefined;
|
8388
9948
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
8389
9949
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
9950
|
+
labelColor?: string | null | undefined;
|
8390
9951
|
labelFontSize?: number | null | undefined;
|
8391
|
-
labelFontColor?: string | null | undefined;
|
8392
9952
|
labelFontWeight?: string | number | null | undefined;
|
8393
9953
|
} | null | undefined;
|
8394
9954
|
xAxis?: {
|
@@ -8486,6 +10046,26 @@ export declare class Builder implements VSeedBuilder {
|
|
8486
10046
|
wrap?: boolean | null | undefined;
|
8487
10047
|
showValue?: boolean | null | undefined;
|
8488
10048
|
showValuePercent?: boolean | null | undefined;
|
10049
|
+
autoFormat?: boolean | null | undefined;
|
10050
|
+
numFormat?: {
|
10051
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
10052
|
+
ratio?: number | undefined;
|
10053
|
+
symbol?: string | undefined;
|
10054
|
+
thousandSeparator?: boolean | undefined;
|
10055
|
+
prefix?: string | undefined;
|
10056
|
+
suffix?: string | undefined;
|
10057
|
+
fractionDigits?: number | undefined;
|
10058
|
+
significantDigits?: number | undefined;
|
10059
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
10060
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
10061
|
+
} | null | undefined;
|
10062
|
+
labelFontSize?: number | null | undefined;
|
10063
|
+
labelFontWeight?: string | number | null | undefined;
|
10064
|
+
labelBackgroundColor?: string | null | undefined;
|
10065
|
+
labelColor?: string | null | undefined;
|
10066
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
10067
|
+
labelPosition?: string | null | undefined;
|
10068
|
+
labelOverlap?: boolean | null | undefined;
|
8489
10069
|
} | null | undefined;
|
8490
10070
|
color?: {
|
8491
10071
|
colorScheme?: string[] | null | undefined;
|
@@ -8501,8 +10081,8 @@ export declare class Builder implements VSeedBuilder {
|
|
8501
10081
|
maxSize?: number | null | undefined;
|
8502
10082
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
8503
10083
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
10084
|
+
labelColor?: string | null | undefined;
|
8504
10085
|
labelFontSize?: number | null | undefined;
|
8505
|
-
labelFontColor?: string | null | undefined;
|
8506
10086
|
labelFontWeight?: string | number | null | undefined;
|
8507
10087
|
} | null | undefined;
|
8508
10088
|
xAxis?: {
|
@@ -8600,6 +10180,26 @@ export declare class Builder implements VSeedBuilder {
|
|
8600
10180
|
wrap?: boolean | null | undefined;
|
8601
10181
|
showValue?: boolean | null | undefined;
|
8602
10182
|
showValuePercent?: boolean | null | undefined;
|
10183
|
+
autoFormat?: boolean | null | undefined;
|
10184
|
+
numFormat?: {
|
10185
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
10186
|
+
ratio?: number | undefined;
|
10187
|
+
symbol?: string | undefined;
|
10188
|
+
thousandSeparator?: boolean | undefined;
|
10189
|
+
prefix?: string | undefined;
|
10190
|
+
suffix?: string | undefined;
|
10191
|
+
fractionDigits?: number | undefined;
|
10192
|
+
significantDigits?: number | undefined;
|
10193
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
10194
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
10195
|
+
} | null | undefined;
|
10196
|
+
labelFontSize?: number | null | undefined;
|
10197
|
+
labelFontWeight?: string | number | null | undefined;
|
10198
|
+
labelBackgroundColor?: string | null | undefined;
|
10199
|
+
labelColor?: string | null | undefined;
|
10200
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
10201
|
+
labelPosition?: string | null | undefined;
|
10202
|
+
labelOverlap?: boolean | null | undefined;
|
8603
10203
|
} | null | undefined;
|
8604
10204
|
color?: {
|
8605
10205
|
colorScheme?: string[] | null | undefined;
|
@@ -8615,8 +10215,8 @@ export declare class Builder implements VSeedBuilder {
|
|
8615
10215
|
maxSize?: number | null | undefined;
|
8616
10216
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
8617
10217
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
10218
|
+
labelColor?: string | null | undefined;
|
8618
10219
|
labelFontSize?: number | null | undefined;
|
8619
|
-
labelFontColor?: string | null | undefined;
|
8620
10220
|
labelFontWeight?: string | number | null | undefined;
|
8621
10221
|
} | null | undefined;
|
8622
10222
|
xAxis?: {
|
@@ -8713,6 +10313,26 @@ export declare class Builder implements VSeedBuilder {
|
|
8713
10313
|
wrap?: boolean | null | undefined;
|
8714
10314
|
showValue?: boolean | null | undefined;
|
8715
10315
|
showValuePercent?: boolean | null | undefined;
|
10316
|
+
autoFormat?: boolean | null | undefined;
|
10317
|
+
numFormat?: {
|
10318
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
10319
|
+
ratio?: number | undefined;
|
10320
|
+
symbol?: string | undefined;
|
10321
|
+
thousandSeparator?: boolean | undefined;
|
10322
|
+
prefix?: string | undefined;
|
10323
|
+
suffix?: string | undefined;
|
10324
|
+
fractionDigits?: number | undefined;
|
10325
|
+
significantDigits?: number | undefined;
|
10326
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
10327
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
10328
|
+
} | null | undefined;
|
10329
|
+
labelFontSize?: number | null | undefined;
|
10330
|
+
labelFontWeight?: string | number | null | undefined;
|
10331
|
+
labelBackgroundColor?: string | null | undefined;
|
10332
|
+
labelColor?: string | null | undefined;
|
10333
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
10334
|
+
labelPosition?: string | null | undefined;
|
10335
|
+
labelOverlap?: boolean | null | undefined;
|
8716
10336
|
} | null | undefined;
|
8717
10337
|
color?: {
|
8718
10338
|
colorScheme?: string[] | null | undefined;
|
@@ -8728,8 +10348,8 @@ export declare class Builder implements VSeedBuilder {
|
|
8728
10348
|
maxSize?: number | null | undefined;
|
8729
10349
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
8730
10350
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
10351
|
+
labelColor?: string | null | undefined;
|
8731
10352
|
labelFontSize?: number | null | undefined;
|
8732
|
-
labelFontColor?: string | null | undefined;
|
8733
10353
|
labelFontWeight?: string | number | null | undefined;
|
8734
10354
|
} | null | undefined;
|
8735
10355
|
xAxis?: {
|
@@ -8826,6 +10446,26 @@ export declare class Builder implements VSeedBuilder {
|
|
8826
10446
|
wrap?: boolean | null | undefined;
|
8827
10447
|
showValue?: boolean | null | undefined;
|
8828
10448
|
showValuePercent?: boolean | null | undefined;
|
10449
|
+
autoFormat?: boolean | null | undefined;
|
10450
|
+
numFormat?: {
|
10451
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
10452
|
+
ratio?: number | undefined;
|
10453
|
+
symbol?: string | undefined;
|
10454
|
+
thousandSeparator?: boolean | undefined;
|
10455
|
+
prefix?: string | undefined;
|
10456
|
+
suffix?: string | undefined;
|
10457
|
+
fractionDigits?: number | undefined;
|
10458
|
+
significantDigits?: number | undefined;
|
10459
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
10460
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
10461
|
+
} | null | undefined;
|
10462
|
+
labelFontSize?: number | null | undefined;
|
10463
|
+
labelFontWeight?: string | number | null | undefined;
|
10464
|
+
labelBackgroundColor?: string | null | undefined;
|
10465
|
+
labelColor?: string | null | undefined;
|
10466
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
10467
|
+
labelPosition?: string | null | undefined;
|
10468
|
+
labelOverlap?: boolean | null | undefined;
|
8829
10469
|
} | null | undefined;
|
8830
10470
|
color?: {
|
8831
10471
|
colorScheme?: string[] | null | undefined;
|
@@ -8841,8 +10481,8 @@ export declare class Builder implements VSeedBuilder {
|
|
8841
10481
|
maxSize?: number | null | undefined;
|
8842
10482
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
8843
10483
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
10484
|
+
labelColor?: string | null | undefined;
|
8844
10485
|
labelFontSize?: number | null | undefined;
|
8845
|
-
labelFontColor?: string | null | undefined;
|
8846
10486
|
labelFontWeight?: string | number | null | undefined;
|
8847
10487
|
} | null | undefined;
|
8848
10488
|
xAxis?: {
|
@@ -8940,6 +10580,26 @@ export declare class Builder implements VSeedBuilder {
|
|
8940
10580
|
wrap?: boolean | null | undefined;
|
8941
10581
|
showValue?: boolean | null | undefined;
|
8942
10582
|
showValuePercent?: boolean | null | undefined;
|
10583
|
+
autoFormat?: boolean | null | undefined;
|
10584
|
+
numFormat?: {
|
10585
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
10586
|
+
ratio?: number | undefined;
|
10587
|
+
symbol?: string | undefined;
|
10588
|
+
thousandSeparator?: boolean | undefined;
|
10589
|
+
prefix?: string | undefined;
|
10590
|
+
suffix?: string | undefined;
|
10591
|
+
fractionDigits?: number | undefined;
|
10592
|
+
significantDigits?: number | undefined;
|
10593
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
10594
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
10595
|
+
} | null | undefined;
|
10596
|
+
labelFontSize?: number | null | undefined;
|
10597
|
+
labelFontWeight?: string | number | null | undefined;
|
10598
|
+
labelBackgroundColor?: string | null | undefined;
|
10599
|
+
labelColor?: string | null | undefined;
|
10600
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
10601
|
+
labelPosition?: string | null | undefined;
|
10602
|
+
labelOverlap?: boolean | null | undefined;
|
8943
10603
|
} | null | undefined;
|
8944
10604
|
color?: {
|
8945
10605
|
colorScheme?: string[] | null | undefined;
|
@@ -8955,8 +10615,8 @@ export declare class Builder implements VSeedBuilder {
|
|
8955
10615
|
maxSize?: number | null | undefined;
|
8956
10616
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
8957
10617
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
10618
|
+
labelColor?: string | null | undefined;
|
8958
10619
|
labelFontSize?: number | null | undefined;
|
8959
|
-
labelFontColor?: string | null | undefined;
|
8960
10620
|
labelFontWeight?: string | number | null | undefined;
|
8961
10621
|
} | null | undefined;
|
8962
10622
|
dualChartType?: {
|
@@ -9179,6 +10839,26 @@ export declare class Builder implements VSeedBuilder {
|
|
9179
10839
|
wrap?: boolean | null | undefined;
|
9180
10840
|
showValue?: boolean | null | undefined;
|
9181
10841
|
showValuePercent?: boolean | null | undefined;
|
10842
|
+
autoFormat?: boolean | null | undefined;
|
10843
|
+
numFormat?: {
|
10844
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
10845
|
+
ratio?: number | undefined;
|
10846
|
+
symbol?: string | undefined;
|
10847
|
+
thousandSeparator?: boolean | undefined;
|
10848
|
+
prefix?: string | undefined;
|
10849
|
+
suffix?: string | undefined;
|
10850
|
+
fractionDigits?: number | undefined;
|
10851
|
+
significantDigits?: number | undefined;
|
10852
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
10853
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
10854
|
+
} | null | undefined;
|
10855
|
+
labelFontSize?: number | null | undefined;
|
10856
|
+
labelFontWeight?: string | number | null | undefined;
|
10857
|
+
labelBackgroundColor?: string | null | undefined;
|
10858
|
+
labelColor?: string | null | undefined;
|
10859
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
10860
|
+
labelPosition?: string | null | undefined;
|
10861
|
+
labelOverlap?: boolean | null | undefined;
|
9182
10862
|
} | null | undefined;
|
9183
10863
|
color?: {
|
9184
10864
|
colorScheme?: string[] | null | undefined;
|
@@ -9194,8 +10874,8 @@ export declare class Builder implements VSeedBuilder {
|
|
9194
10874
|
maxSize?: number | null | undefined;
|
9195
10875
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
9196
10876
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
10877
|
+
labelColor?: string | null | undefined;
|
9197
10878
|
labelFontSize?: number | null | undefined;
|
9198
|
-
labelFontColor?: string | null | undefined;
|
9199
10879
|
labelFontWeight?: string | number | null | undefined;
|
9200
10880
|
} | null | undefined;
|
9201
10881
|
} | null | undefined;
|
@@ -9206,6 +10886,26 @@ export declare class Builder implements VSeedBuilder {
|
|
9206
10886
|
wrap?: boolean | null | undefined;
|
9207
10887
|
showValue?: boolean | null | undefined;
|
9208
10888
|
showValuePercent?: boolean | null | undefined;
|
10889
|
+
autoFormat?: boolean | null | undefined;
|
10890
|
+
numFormat?: {
|
10891
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
10892
|
+
ratio?: number | undefined;
|
10893
|
+
symbol?: string | undefined;
|
10894
|
+
thousandSeparator?: boolean | undefined;
|
10895
|
+
prefix?: string | undefined;
|
10896
|
+
suffix?: string | undefined;
|
10897
|
+
fractionDigits?: number | undefined;
|
10898
|
+
significantDigits?: number | undefined;
|
10899
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
10900
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
10901
|
+
} | null | undefined;
|
10902
|
+
labelFontSize?: number | null | undefined;
|
10903
|
+
labelFontWeight?: string | number | null | undefined;
|
10904
|
+
labelBackgroundColor?: string | null | undefined;
|
10905
|
+
labelColor?: string | null | undefined;
|
10906
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
10907
|
+
labelPosition?: string | null | undefined;
|
10908
|
+
labelOverlap?: boolean | null | undefined;
|
9209
10909
|
} | null | undefined;
|
9210
10910
|
color?: {
|
9211
10911
|
colorScheme?: string[] | null | undefined;
|
@@ -9221,8 +10921,8 @@ export declare class Builder implements VSeedBuilder {
|
|
9221
10921
|
maxSize?: number | null | undefined;
|
9222
10922
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
9223
10923
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
10924
|
+
labelColor?: string | null | undefined;
|
9224
10925
|
labelFontSize?: number | null | undefined;
|
9225
|
-
labelFontColor?: string | null | undefined;
|
9226
10926
|
labelFontWeight?: string | number | null | undefined;
|
9227
10927
|
} | null | undefined;
|
9228
10928
|
} | null | undefined;
|
@@ -9233,6 +10933,26 @@ export declare class Builder implements VSeedBuilder {
|
|
9233
10933
|
wrap?: boolean | null | undefined;
|
9234
10934
|
showValue?: boolean | null | undefined;
|
9235
10935
|
showValuePercent?: boolean | null | undefined;
|
10936
|
+
autoFormat?: boolean | null | undefined;
|
10937
|
+
numFormat?: {
|
10938
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
10939
|
+
ratio?: number | undefined;
|
10940
|
+
symbol?: string | undefined;
|
10941
|
+
thousandSeparator?: boolean | undefined;
|
10942
|
+
prefix?: string | undefined;
|
10943
|
+
suffix?: string | undefined;
|
10944
|
+
fractionDigits?: number | undefined;
|
10945
|
+
significantDigits?: number | undefined;
|
10946
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
10947
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
10948
|
+
} | null | undefined;
|
10949
|
+
labelFontSize?: number | null | undefined;
|
10950
|
+
labelFontWeight?: string | number | null | undefined;
|
10951
|
+
labelBackgroundColor?: string | null | undefined;
|
10952
|
+
labelColor?: string | null | undefined;
|
10953
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
10954
|
+
labelPosition?: string | null | undefined;
|
10955
|
+
labelOverlap?: boolean | null | undefined;
|
9236
10956
|
} | null | undefined;
|
9237
10957
|
color?: {
|
9238
10958
|
colorScheme?: string[] | null | undefined;
|
@@ -9248,8 +10968,8 @@ export declare class Builder implements VSeedBuilder {
|
|
9248
10968
|
maxSize?: number | null | undefined;
|
9249
10969
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
9250
10970
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
10971
|
+
labelColor?: string | null | undefined;
|
9251
10972
|
labelFontSize?: number | null | undefined;
|
9252
|
-
labelFontColor?: string | null | undefined;
|
9253
10973
|
labelFontWeight?: string | number | null | undefined;
|
9254
10974
|
} | null | undefined;
|
9255
10975
|
} | null | undefined;
|
@@ -9260,6 +10980,26 @@ export declare class Builder implements VSeedBuilder {
|
|
9260
10980
|
wrap?: boolean | null | undefined;
|
9261
10981
|
showValue?: boolean | null | undefined;
|
9262
10982
|
showValuePercent?: boolean | null | undefined;
|
10983
|
+
autoFormat?: boolean | null | undefined;
|
10984
|
+
numFormat?: {
|
10985
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
10986
|
+
ratio?: number | undefined;
|
10987
|
+
symbol?: string | undefined;
|
10988
|
+
thousandSeparator?: boolean | undefined;
|
10989
|
+
prefix?: string | undefined;
|
10990
|
+
suffix?: string | undefined;
|
10991
|
+
fractionDigits?: number | undefined;
|
10992
|
+
significantDigits?: number | undefined;
|
10993
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
10994
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
10995
|
+
} | null | undefined;
|
10996
|
+
labelFontSize?: number | null | undefined;
|
10997
|
+
labelFontWeight?: string | number | null | undefined;
|
10998
|
+
labelBackgroundColor?: string | null | undefined;
|
10999
|
+
labelColor?: string | null | undefined;
|
11000
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
11001
|
+
labelPosition?: string | null | undefined;
|
11002
|
+
labelOverlap?: boolean | null | undefined;
|
9263
11003
|
} | null | undefined;
|
9264
11004
|
color?: {
|
9265
11005
|
colorScheme?: string[] | null | undefined;
|
@@ -9275,8 +11015,8 @@ export declare class Builder implements VSeedBuilder {
|
|
9275
11015
|
maxSize?: number | null | undefined;
|
9276
11016
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
9277
11017
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
11018
|
+
labelColor?: string | null | undefined;
|
9278
11019
|
labelFontSize?: number | null | undefined;
|
9279
|
-
labelFontColor?: string | null | undefined;
|
9280
11020
|
labelFontWeight?: string | number | null | undefined;
|
9281
11021
|
} | null | undefined;
|
9282
11022
|
} | null | undefined;
|
@@ -9287,6 +11027,26 @@ export declare class Builder implements VSeedBuilder {
|
|
9287
11027
|
wrap?: boolean | null | undefined;
|
9288
11028
|
showValue?: boolean | null | undefined;
|
9289
11029
|
showValuePercent?: boolean | null | undefined;
|
11030
|
+
autoFormat?: boolean | null | undefined;
|
11031
|
+
numFormat?: {
|
11032
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
11033
|
+
ratio?: number | undefined;
|
11034
|
+
symbol?: string | undefined;
|
11035
|
+
thousandSeparator?: boolean | undefined;
|
11036
|
+
prefix?: string | undefined;
|
11037
|
+
suffix?: string | undefined;
|
11038
|
+
fractionDigits?: number | undefined;
|
11039
|
+
significantDigits?: number | undefined;
|
11040
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
11041
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
11042
|
+
} | null | undefined;
|
11043
|
+
labelFontSize?: number | null | undefined;
|
11044
|
+
labelFontWeight?: string | number | null | undefined;
|
11045
|
+
labelBackgroundColor?: string | null | undefined;
|
11046
|
+
labelColor?: string | null | undefined;
|
11047
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
11048
|
+
labelPosition?: string | null | undefined;
|
11049
|
+
labelOverlap?: boolean | null | undefined;
|
9290
11050
|
} | null | undefined;
|
9291
11051
|
color?: {
|
9292
11052
|
colorScheme?: string[] | null | undefined;
|
@@ -9302,8 +11062,8 @@ export declare class Builder implements VSeedBuilder {
|
|
9302
11062
|
maxSize?: number | null | undefined;
|
9303
11063
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
9304
11064
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
11065
|
+
labelColor?: string | null | undefined;
|
9305
11066
|
labelFontSize?: number | null | undefined;
|
9306
|
-
labelFontColor?: string | null | undefined;
|
9307
11067
|
labelFontWeight?: string | number | null | undefined;
|
9308
11068
|
} | null | undefined;
|
9309
11069
|
} | null | undefined;
|
@@ -9314,6 +11074,26 @@ export declare class Builder implements VSeedBuilder {
|
|
9314
11074
|
wrap?: boolean | null | undefined;
|
9315
11075
|
showValue?: boolean | null | undefined;
|
9316
11076
|
showValuePercent?: boolean | null | undefined;
|
11077
|
+
autoFormat?: boolean | null | undefined;
|
11078
|
+
numFormat?: {
|
11079
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
11080
|
+
ratio?: number | undefined;
|
11081
|
+
symbol?: string | undefined;
|
11082
|
+
thousandSeparator?: boolean | undefined;
|
11083
|
+
prefix?: string | undefined;
|
11084
|
+
suffix?: string | undefined;
|
11085
|
+
fractionDigits?: number | undefined;
|
11086
|
+
significantDigits?: number | undefined;
|
11087
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
11088
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
11089
|
+
} | null | undefined;
|
11090
|
+
labelFontSize?: number | null | undefined;
|
11091
|
+
labelFontWeight?: string | number | null | undefined;
|
11092
|
+
labelBackgroundColor?: string | null | undefined;
|
11093
|
+
labelColor?: string | null | undefined;
|
11094
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
11095
|
+
labelPosition?: string | null | undefined;
|
11096
|
+
labelOverlap?: boolean | null | undefined;
|
9317
11097
|
} | null | undefined;
|
9318
11098
|
color?: {
|
9319
11099
|
colorScheme?: string[] | null | undefined;
|
@@ -9329,8 +11109,8 @@ export declare class Builder implements VSeedBuilder {
|
|
9329
11109
|
maxSize?: number | null | undefined;
|
9330
11110
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
9331
11111
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
11112
|
+
labelColor?: string | null | undefined;
|
9332
11113
|
labelFontSize?: number | null | undefined;
|
9333
|
-
labelFontColor?: string | null | undefined;
|
9334
11114
|
labelFontWeight?: string | number | null | undefined;
|
9335
11115
|
} | null | undefined;
|
9336
11116
|
} | null | undefined;
|
@@ -9341,6 +11121,26 @@ export declare class Builder implements VSeedBuilder {
|
|
9341
11121
|
wrap?: boolean | null | undefined;
|
9342
11122
|
showValue?: boolean | null | undefined;
|
9343
11123
|
showValuePercent?: boolean | null | undefined;
|
11124
|
+
autoFormat?: boolean | null | undefined;
|
11125
|
+
numFormat?: {
|
11126
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
11127
|
+
ratio?: number | undefined;
|
11128
|
+
symbol?: string | undefined;
|
11129
|
+
thousandSeparator?: boolean | undefined;
|
11130
|
+
prefix?: string | undefined;
|
11131
|
+
suffix?: string | undefined;
|
11132
|
+
fractionDigits?: number | undefined;
|
11133
|
+
significantDigits?: number | undefined;
|
11134
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
11135
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
11136
|
+
} | null | undefined;
|
11137
|
+
labelFontSize?: number | null | undefined;
|
11138
|
+
labelFontWeight?: string | number | null | undefined;
|
11139
|
+
labelBackgroundColor?: string | null | undefined;
|
11140
|
+
labelColor?: string | null | undefined;
|
11141
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
11142
|
+
labelPosition?: string | null | undefined;
|
11143
|
+
labelOverlap?: boolean | null | undefined;
|
9344
11144
|
} | null | undefined;
|
9345
11145
|
color?: {
|
9346
11146
|
colorScheme?: string[] | null | undefined;
|
@@ -9356,8 +11156,8 @@ export declare class Builder implements VSeedBuilder {
|
|
9356
11156
|
maxSize?: number | null | undefined;
|
9357
11157
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
9358
11158
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
11159
|
+
labelColor?: string | null | undefined;
|
9359
11160
|
labelFontSize?: number | null | undefined;
|
9360
|
-
labelFontColor?: string | null | undefined;
|
9361
11161
|
labelFontWeight?: string | number | null | undefined;
|
9362
11162
|
} | null | undefined;
|
9363
11163
|
} | null | undefined;
|
@@ -9409,6 +11209,26 @@ export declare class Builder implements VSeedBuilder {
|
|
9409
11209
|
wrap?: boolean | null | undefined;
|
9410
11210
|
showValue?: boolean | null | undefined;
|
9411
11211
|
showValuePercent?: boolean | null | undefined;
|
11212
|
+
autoFormat?: boolean | null | undefined;
|
11213
|
+
numFormat?: {
|
11214
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
11215
|
+
ratio?: number | undefined;
|
11216
|
+
symbol?: string | undefined;
|
11217
|
+
thousandSeparator?: boolean | undefined;
|
11218
|
+
prefix?: string | undefined;
|
11219
|
+
suffix?: string | undefined;
|
11220
|
+
fractionDigits?: number | undefined;
|
11221
|
+
significantDigits?: number | undefined;
|
11222
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
11223
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
11224
|
+
} | null | undefined;
|
11225
|
+
labelFontSize?: number | null | undefined;
|
11226
|
+
labelFontWeight?: string | number | null | undefined;
|
11227
|
+
labelBackgroundColor?: string | null | undefined;
|
11228
|
+
labelColor?: string | null | undefined;
|
11229
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
11230
|
+
labelPosition?: string | null | undefined;
|
11231
|
+
labelOverlap?: boolean | null | undefined;
|
9412
11232
|
} | null | undefined;
|
9413
11233
|
color?: {
|
9414
11234
|
colorScheme?: string[] | null | undefined;
|
@@ -9424,8 +11244,8 @@ export declare class Builder implements VSeedBuilder {
|
|
9424
11244
|
maxSize?: number | null | undefined;
|
9425
11245
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
9426
11246
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
11247
|
+
labelColor?: string | null | undefined;
|
9427
11248
|
labelFontSize?: number | null | undefined;
|
9428
|
-
labelFontColor?: string | null | undefined;
|
9429
11249
|
labelFontWeight?: string | number | null | undefined;
|
9430
11250
|
} | null | undefined;
|
9431
11251
|
xAxis?: {
|
@@ -9522,6 +11342,26 @@ export declare class Builder implements VSeedBuilder {
|
|
9522
11342
|
wrap?: boolean | null | undefined;
|
9523
11343
|
showValue?: boolean | null | undefined;
|
9524
11344
|
showValuePercent?: boolean | null | undefined;
|
11345
|
+
autoFormat?: boolean | null | undefined;
|
11346
|
+
numFormat?: {
|
11347
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
11348
|
+
ratio?: number | undefined;
|
11349
|
+
symbol?: string | undefined;
|
11350
|
+
thousandSeparator?: boolean | undefined;
|
11351
|
+
prefix?: string | undefined;
|
11352
|
+
suffix?: string | undefined;
|
11353
|
+
fractionDigits?: number | undefined;
|
11354
|
+
significantDigits?: number | undefined;
|
11355
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
11356
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
11357
|
+
} | null | undefined;
|
11358
|
+
labelFontSize?: number | null | undefined;
|
11359
|
+
labelFontWeight?: string | number | null | undefined;
|
11360
|
+
labelBackgroundColor?: string | null | undefined;
|
11361
|
+
labelColor?: string | null | undefined;
|
11362
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
11363
|
+
labelPosition?: string | null | undefined;
|
11364
|
+
labelOverlap?: boolean | null | undefined;
|
9525
11365
|
} | null | undefined;
|
9526
11366
|
color?: {
|
9527
11367
|
colorScheme?: string[] | null | undefined;
|
@@ -9537,8 +11377,8 @@ export declare class Builder implements VSeedBuilder {
|
|
9537
11377
|
maxSize?: number | null | undefined;
|
9538
11378
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
9539
11379
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
11380
|
+
labelColor?: string | null | undefined;
|
9540
11381
|
labelFontSize?: number | null | undefined;
|
9541
|
-
labelFontColor?: string | null | undefined;
|
9542
11382
|
labelFontWeight?: string | number | null | undefined;
|
9543
11383
|
} | null | undefined;
|
9544
11384
|
xAxis?: {
|
@@ -9636,6 +11476,26 @@ export declare class Builder implements VSeedBuilder {
|
|
9636
11476
|
wrap?: boolean | null | undefined;
|
9637
11477
|
showValue?: boolean | null | undefined;
|
9638
11478
|
showValuePercent?: boolean | null | undefined;
|
11479
|
+
autoFormat?: boolean | null | undefined;
|
11480
|
+
numFormat?: {
|
11481
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
11482
|
+
ratio?: number | undefined;
|
11483
|
+
symbol?: string | undefined;
|
11484
|
+
thousandSeparator?: boolean | undefined;
|
11485
|
+
prefix?: string | undefined;
|
11486
|
+
suffix?: string | undefined;
|
11487
|
+
fractionDigits?: number | undefined;
|
11488
|
+
significantDigits?: number | undefined;
|
11489
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
11490
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
11491
|
+
} | null | undefined;
|
11492
|
+
labelFontSize?: number | null | undefined;
|
11493
|
+
labelFontWeight?: string | number | null | undefined;
|
11494
|
+
labelBackgroundColor?: string | null | undefined;
|
11495
|
+
labelColor?: string | null | undefined;
|
11496
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
11497
|
+
labelPosition?: string | null | undefined;
|
11498
|
+
labelOverlap?: boolean | null | undefined;
|
9639
11499
|
} | null | undefined;
|
9640
11500
|
color?: {
|
9641
11501
|
colorScheme?: string[] | null | undefined;
|
@@ -9651,8 +11511,8 @@ export declare class Builder implements VSeedBuilder {
|
|
9651
11511
|
maxSize?: number | null | undefined;
|
9652
11512
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
9653
11513
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
11514
|
+
labelColor?: string | null | undefined;
|
9654
11515
|
labelFontSize?: number | null | undefined;
|
9655
|
-
labelFontColor?: string | null | undefined;
|
9656
11516
|
labelFontWeight?: string | number | null | undefined;
|
9657
11517
|
} | null | undefined;
|
9658
11518
|
xAxis?: {
|
@@ -9750,6 +11610,26 @@ export declare class Builder implements VSeedBuilder {
|
|
9750
11610
|
wrap?: boolean | null | undefined;
|
9751
11611
|
showValue?: boolean | null | undefined;
|
9752
11612
|
showValuePercent?: boolean | null | undefined;
|
11613
|
+
autoFormat?: boolean | null | undefined;
|
11614
|
+
numFormat?: {
|
11615
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
11616
|
+
ratio?: number | undefined;
|
11617
|
+
symbol?: string | undefined;
|
11618
|
+
thousandSeparator?: boolean | undefined;
|
11619
|
+
prefix?: string | undefined;
|
11620
|
+
suffix?: string | undefined;
|
11621
|
+
fractionDigits?: number | undefined;
|
11622
|
+
significantDigits?: number | undefined;
|
11623
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
11624
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
11625
|
+
} | null | undefined;
|
11626
|
+
labelFontSize?: number | null | undefined;
|
11627
|
+
labelFontWeight?: string | number | null | undefined;
|
11628
|
+
labelBackgroundColor?: string | null | undefined;
|
11629
|
+
labelColor?: string | null | undefined;
|
11630
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
11631
|
+
labelPosition?: string | null | undefined;
|
11632
|
+
labelOverlap?: boolean | null | undefined;
|
9753
11633
|
} | null | undefined;
|
9754
11634
|
color?: {
|
9755
11635
|
colorScheme?: string[] | null | undefined;
|
@@ -9765,8 +11645,8 @@ export declare class Builder implements VSeedBuilder {
|
|
9765
11645
|
maxSize?: number | null | undefined;
|
9766
11646
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
9767
11647
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
11648
|
+
labelColor?: string | null | undefined;
|
9768
11649
|
labelFontSize?: number | null | undefined;
|
9769
|
-
labelFontColor?: string | null | undefined;
|
9770
11650
|
labelFontWeight?: string | number | null | undefined;
|
9771
11651
|
} | null | undefined;
|
9772
11652
|
xAxis?: {
|
@@ -9864,6 +11744,26 @@ export declare class Builder implements VSeedBuilder {
|
|
9864
11744
|
wrap?: boolean | null | undefined;
|
9865
11745
|
showValue?: boolean | null | undefined;
|
9866
11746
|
showValuePercent?: boolean | null | undefined;
|
11747
|
+
autoFormat?: boolean | null | undefined;
|
11748
|
+
numFormat?: {
|
11749
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
11750
|
+
ratio?: number | undefined;
|
11751
|
+
symbol?: string | undefined;
|
11752
|
+
thousandSeparator?: boolean | undefined;
|
11753
|
+
prefix?: string | undefined;
|
11754
|
+
suffix?: string | undefined;
|
11755
|
+
fractionDigits?: number | undefined;
|
11756
|
+
significantDigits?: number | undefined;
|
11757
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
11758
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
11759
|
+
} | null | undefined;
|
11760
|
+
labelFontSize?: number | null | undefined;
|
11761
|
+
labelFontWeight?: string | number | null | undefined;
|
11762
|
+
labelBackgroundColor?: string | null | undefined;
|
11763
|
+
labelColor?: string | null | undefined;
|
11764
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
11765
|
+
labelPosition?: string | null | undefined;
|
11766
|
+
labelOverlap?: boolean | null | undefined;
|
9867
11767
|
} | null | undefined;
|
9868
11768
|
color?: {
|
9869
11769
|
colorScheme?: string[] | null | undefined;
|
@@ -9879,8 +11779,8 @@ export declare class Builder implements VSeedBuilder {
|
|
9879
11779
|
maxSize?: number | null | undefined;
|
9880
11780
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
9881
11781
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
11782
|
+
labelColor?: string | null | undefined;
|
9882
11783
|
labelFontSize?: number | null | undefined;
|
9883
|
-
labelFontColor?: string | null | undefined;
|
9884
11784
|
labelFontWeight?: string | number | null | undefined;
|
9885
11785
|
} | null | undefined;
|
9886
11786
|
xAxis?: {
|
@@ -9978,6 +11878,26 @@ export declare class Builder implements VSeedBuilder {
|
|
9978
11878
|
wrap?: boolean | null | undefined;
|
9979
11879
|
showValue?: boolean | null | undefined;
|
9980
11880
|
showValuePercent?: boolean | null | undefined;
|
11881
|
+
autoFormat?: boolean | null | undefined;
|
11882
|
+
numFormat?: {
|
11883
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
11884
|
+
ratio?: number | undefined;
|
11885
|
+
symbol?: string | undefined;
|
11886
|
+
thousandSeparator?: boolean | undefined;
|
11887
|
+
prefix?: string | undefined;
|
11888
|
+
suffix?: string | undefined;
|
11889
|
+
fractionDigits?: number | undefined;
|
11890
|
+
significantDigits?: number | undefined;
|
11891
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
11892
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
11893
|
+
} | null | undefined;
|
11894
|
+
labelFontSize?: number | null | undefined;
|
11895
|
+
labelFontWeight?: string | number | null | undefined;
|
11896
|
+
labelBackgroundColor?: string | null | undefined;
|
11897
|
+
labelColor?: string | null | undefined;
|
11898
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
11899
|
+
labelPosition?: string | null | undefined;
|
11900
|
+
labelOverlap?: boolean | null | undefined;
|
9981
11901
|
} | null | undefined;
|
9982
11902
|
color?: {
|
9983
11903
|
colorScheme?: string[] | null | undefined;
|
@@ -9993,8 +11913,8 @@ export declare class Builder implements VSeedBuilder {
|
|
9993
11913
|
maxSize?: number | null | undefined;
|
9994
11914
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
9995
11915
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
11916
|
+
labelColor?: string | null | undefined;
|
9996
11917
|
labelFontSize?: number | null | undefined;
|
9997
|
-
labelFontColor?: string | null | undefined;
|
9998
11918
|
labelFontWeight?: string | number | null | undefined;
|
9999
11919
|
} | null | undefined;
|
10000
11920
|
xAxis?: {
|
@@ -10092,6 +12012,26 @@ export declare class Builder implements VSeedBuilder {
|
|
10092
12012
|
wrap?: boolean | null | undefined;
|
10093
12013
|
showValue?: boolean | null | undefined;
|
10094
12014
|
showValuePercent?: boolean | null | undefined;
|
12015
|
+
autoFormat?: boolean | null | undefined;
|
12016
|
+
numFormat?: {
|
12017
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
12018
|
+
ratio?: number | undefined;
|
12019
|
+
symbol?: string | undefined;
|
12020
|
+
thousandSeparator?: boolean | undefined;
|
12021
|
+
prefix?: string | undefined;
|
12022
|
+
suffix?: string | undefined;
|
12023
|
+
fractionDigits?: number | undefined;
|
12024
|
+
significantDigits?: number | undefined;
|
12025
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
12026
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
12027
|
+
} | null | undefined;
|
12028
|
+
labelFontSize?: number | null | undefined;
|
12029
|
+
labelFontWeight?: string | number | null | undefined;
|
12030
|
+
labelBackgroundColor?: string | null | undefined;
|
12031
|
+
labelColor?: string | null | undefined;
|
12032
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
12033
|
+
labelPosition?: string | null | undefined;
|
12034
|
+
labelOverlap?: boolean | null | undefined;
|
10095
12035
|
} | null | undefined;
|
10096
12036
|
color?: {
|
10097
12037
|
colorScheme?: string[] | null | undefined;
|
@@ -10107,8 +12047,8 @@ export declare class Builder implements VSeedBuilder {
|
|
10107
12047
|
maxSize?: number | null | undefined;
|
10108
12048
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
10109
12049
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
12050
|
+
labelColor?: string | null | undefined;
|
10110
12051
|
labelFontSize?: number | null | undefined;
|
10111
|
-
labelFontColor?: string | null | undefined;
|
10112
12052
|
labelFontWeight?: string | number | null | undefined;
|
10113
12053
|
} | null | undefined;
|
10114
12054
|
xAxis?: {
|
@@ -10206,6 +12146,26 @@ export declare class Builder implements VSeedBuilder {
|
|
10206
12146
|
wrap?: boolean | null | undefined;
|
10207
12147
|
showValue?: boolean | null | undefined;
|
10208
12148
|
showValuePercent?: boolean | null | undefined;
|
12149
|
+
autoFormat?: boolean | null | undefined;
|
12150
|
+
numFormat?: {
|
12151
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
12152
|
+
ratio?: number | undefined;
|
12153
|
+
symbol?: string | undefined;
|
12154
|
+
thousandSeparator?: boolean | undefined;
|
12155
|
+
prefix?: string | undefined;
|
12156
|
+
suffix?: string | undefined;
|
12157
|
+
fractionDigits?: number | undefined;
|
12158
|
+
significantDigits?: number | undefined;
|
12159
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
12160
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
12161
|
+
} | null | undefined;
|
12162
|
+
labelFontSize?: number | null | undefined;
|
12163
|
+
labelFontWeight?: string | number | null | undefined;
|
12164
|
+
labelBackgroundColor?: string | null | undefined;
|
12165
|
+
labelColor?: string | null | undefined;
|
12166
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
12167
|
+
labelPosition?: string | null | undefined;
|
12168
|
+
labelOverlap?: boolean | null | undefined;
|
10209
12169
|
} | null | undefined;
|
10210
12170
|
color?: {
|
10211
12171
|
colorScheme?: string[] | null | undefined;
|
@@ -10221,8 +12181,8 @@ export declare class Builder implements VSeedBuilder {
|
|
10221
12181
|
maxSize?: number | null | undefined;
|
10222
12182
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
10223
12183
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
12184
|
+
labelColor?: string | null | undefined;
|
10224
12185
|
labelFontSize?: number | null | undefined;
|
10225
|
-
labelFontColor?: string | null | undefined;
|
10226
12186
|
labelFontWeight?: string | number | null | undefined;
|
10227
12187
|
} | null | undefined;
|
10228
12188
|
xAxis?: {
|
@@ -10319,6 +12279,26 @@ export declare class Builder implements VSeedBuilder {
|
|
10319
12279
|
wrap?: boolean | null | undefined;
|
10320
12280
|
showValue?: boolean | null | undefined;
|
10321
12281
|
showValuePercent?: boolean | null | undefined;
|
12282
|
+
autoFormat?: boolean | null | undefined;
|
12283
|
+
numFormat?: {
|
12284
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
12285
|
+
ratio?: number | undefined;
|
12286
|
+
symbol?: string | undefined;
|
12287
|
+
thousandSeparator?: boolean | undefined;
|
12288
|
+
prefix?: string | undefined;
|
12289
|
+
suffix?: string | undefined;
|
12290
|
+
fractionDigits?: number | undefined;
|
12291
|
+
significantDigits?: number | undefined;
|
12292
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
12293
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
12294
|
+
} | null | undefined;
|
12295
|
+
labelFontSize?: number | null | undefined;
|
12296
|
+
labelFontWeight?: string | number | null | undefined;
|
12297
|
+
labelBackgroundColor?: string | null | undefined;
|
12298
|
+
labelColor?: string | null | undefined;
|
12299
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
12300
|
+
labelPosition?: string | null | undefined;
|
12301
|
+
labelOverlap?: boolean | null | undefined;
|
10322
12302
|
} | null | undefined;
|
10323
12303
|
color?: {
|
10324
12304
|
colorScheme?: string[] | null | undefined;
|
@@ -10334,8 +12314,8 @@ export declare class Builder implements VSeedBuilder {
|
|
10334
12314
|
maxSize?: number | null | undefined;
|
10335
12315
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
10336
12316
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
12317
|
+
labelColor?: string | null | undefined;
|
10337
12318
|
labelFontSize?: number | null | undefined;
|
10338
|
-
labelFontColor?: string | null | undefined;
|
10339
12319
|
labelFontWeight?: string | number | null | undefined;
|
10340
12320
|
} | null | undefined;
|
10341
12321
|
xAxis?: {
|
@@ -10432,6 +12412,26 @@ export declare class Builder implements VSeedBuilder {
|
|
10432
12412
|
wrap?: boolean | null | undefined;
|
10433
12413
|
showValue?: boolean | null | undefined;
|
10434
12414
|
showValuePercent?: boolean | null | undefined;
|
12415
|
+
autoFormat?: boolean | null | undefined;
|
12416
|
+
numFormat?: {
|
12417
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
12418
|
+
ratio?: number | undefined;
|
12419
|
+
symbol?: string | undefined;
|
12420
|
+
thousandSeparator?: boolean | undefined;
|
12421
|
+
prefix?: string | undefined;
|
12422
|
+
suffix?: string | undefined;
|
12423
|
+
fractionDigits?: number | undefined;
|
12424
|
+
significantDigits?: number | undefined;
|
12425
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
12426
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
12427
|
+
} | null | undefined;
|
12428
|
+
labelFontSize?: number | null | undefined;
|
12429
|
+
labelFontWeight?: string | number | null | undefined;
|
12430
|
+
labelBackgroundColor?: string | null | undefined;
|
12431
|
+
labelColor?: string | null | undefined;
|
12432
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
12433
|
+
labelPosition?: string | null | undefined;
|
12434
|
+
labelOverlap?: boolean | null | undefined;
|
10435
12435
|
} | null | undefined;
|
10436
12436
|
color?: {
|
10437
12437
|
colorScheme?: string[] | null | undefined;
|
@@ -10447,8 +12447,8 @@ export declare class Builder implements VSeedBuilder {
|
|
10447
12447
|
maxSize?: number | null | undefined;
|
10448
12448
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
10449
12449
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
12450
|
+
labelColor?: string | null | undefined;
|
10450
12451
|
labelFontSize?: number | null | undefined;
|
10451
|
-
labelFontColor?: string | null | undefined;
|
10452
12452
|
labelFontWeight?: string | number | null | undefined;
|
10453
12453
|
} | null | undefined;
|
10454
12454
|
xAxis?: {
|
@@ -10546,6 +12546,26 @@ export declare class Builder implements VSeedBuilder {
|
|
10546
12546
|
wrap?: boolean | null | undefined;
|
10547
12547
|
showValue?: boolean | null | undefined;
|
10548
12548
|
showValuePercent?: boolean | null | undefined;
|
12549
|
+
autoFormat?: boolean | null | undefined;
|
12550
|
+
numFormat?: {
|
12551
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
12552
|
+
ratio?: number | undefined;
|
12553
|
+
symbol?: string | undefined;
|
12554
|
+
thousandSeparator?: boolean | undefined;
|
12555
|
+
prefix?: string | undefined;
|
12556
|
+
suffix?: string | undefined;
|
12557
|
+
fractionDigits?: number | undefined;
|
12558
|
+
significantDigits?: number | undefined;
|
12559
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
12560
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
12561
|
+
} | null | undefined;
|
12562
|
+
labelFontSize?: number | null | undefined;
|
12563
|
+
labelFontWeight?: string | number | null | undefined;
|
12564
|
+
labelBackgroundColor?: string | null | undefined;
|
12565
|
+
labelColor?: string | null | undefined;
|
12566
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
12567
|
+
labelPosition?: string | null | undefined;
|
12568
|
+
labelOverlap?: boolean | null | undefined;
|
10549
12569
|
} | null | undefined;
|
10550
12570
|
color?: {
|
10551
12571
|
colorScheme?: string[] | null | undefined;
|
@@ -10561,8 +12581,8 @@ export declare class Builder implements VSeedBuilder {
|
|
10561
12581
|
maxSize?: number | null | undefined;
|
10562
12582
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
10563
12583
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
12584
|
+
labelColor?: string | null | undefined;
|
10564
12585
|
labelFontSize?: number | null | undefined;
|
10565
|
-
labelFontColor?: string | null | undefined;
|
10566
12586
|
labelFontWeight?: string | number | null | undefined;
|
10567
12587
|
} | null | undefined;
|
10568
12588
|
dualChartType?: {
|
@@ -10785,6 +12805,26 @@ export declare class Builder implements VSeedBuilder {
|
|
10785
12805
|
wrap?: boolean | null | undefined;
|
10786
12806
|
showValue?: boolean | null | undefined;
|
10787
12807
|
showValuePercent?: boolean | null | undefined;
|
12808
|
+
autoFormat?: boolean | null | undefined;
|
12809
|
+
numFormat?: {
|
12810
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
12811
|
+
ratio?: number | undefined;
|
12812
|
+
symbol?: string | undefined;
|
12813
|
+
thousandSeparator?: boolean | undefined;
|
12814
|
+
prefix?: string | undefined;
|
12815
|
+
suffix?: string | undefined;
|
12816
|
+
fractionDigits?: number | undefined;
|
12817
|
+
significantDigits?: number | undefined;
|
12818
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
12819
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
12820
|
+
} | null | undefined;
|
12821
|
+
labelFontSize?: number | null | undefined;
|
12822
|
+
labelFontWeight?: string | number | null | undefined;
|
12823
|
+
labelBackgroundColor?: string | null | undefined;
|
12824
|
+
labelColor?: string | null | undefined;
|
12825
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
12826
|
+
labelPosition?: string | null | undefined;
|
12827
|
+
labelOverlap?: boolean | null | undefined;
|
10788
12828
|
} | null | undefined;
|
10789
12829
|
color?: {
|
10790
12830
|
colorScheme?: string[] | null | undefined;
|
@@ -10800,8 +12840,8 @@ export declare class Builder implements VSeedBuilder {
|
|
10800
12840
|
maxSize?: number | null | undefined;
|
10801
12841
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
10802
12842
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
12843
|
+
labelColor?: string | null | undefined;
|
10803
12844
|
labelFontSize?: number | null | undefined;
|
10804
|
-
labelFontColor?: string | null | undefined;
|
10805
12845
|
labelFontWeight?: string | number | null | undefined;
|
10806
12846
|
} | null | undefined;
|
10807
12847
|
} | null | undefined;
|
@@ -10812,6 +12852,26 @@ export declare class Builder implements VSeedBuilder {
|
|
10812
12852
|
wrap?: boolean | null | undefined;
|
10813
12853
|
showValue?: boolean | null | undefined;
|
10814
12854
|
showValuePercent?: boolean | null | undefined;
|
12855
|
+
autoFormat?: boolean | null | undefined;
|
12856
|
+
numFormat?: {
|
12857
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
12858
|
+
ratio?: number | undefined;
|
12859
|
+
symbol?: string | undefined;
|
12860
|
+
thousandSeparator?: boolean | undefined;
|
12861
|
+
prefix?: string | undefined;
|
12862
|
+
suffix?: string | undefined;
|
12863
|
+
fractionDigits?: number | undefined;
|
12864
|
+
significantDigits?: number | undefined;
|
12865
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
12866
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
12867
|
+
} | null | undefined;
|
12868
|
+
labelFontSize?: number | null | undefined;
|
12869
|
+
labelFontWeight?: string | number | null | undefined;
|
12870
|
+
labelBackgroundColor?: string | null | undefined;
|
12871
|
+
labelColor?: string | null | undefined;
|
12872
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
12873
|
+
labelPosition?: string | null | undefined;
|
12874
|
+
labelOverlap?: boolean | null | undefined;
|
10815
12875
|
} | null | undefined;
|
10816
12876
|
color?: {
|
10817
12877
|
colorScheme?: string[] | null | undefined;
|
@@ -10827,8 +12887,8 @@ export declare class Builder implements VSeedBuilder {
|
|
10827
12887
|
maxSize?: number | null | undefined;
|
10828
12888
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
10829
12889
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
12890
|
+
labelColor?: string | null | undefined;
|
10830
12891
|
labelFontSize?: number | null | undefined;
|
10831
|
-
labelFontColor?: string | null | undefined;
|
10832
12892
|
labelFontWeight?: string | number | null | undefined;
|
10833
12893
|
} | null | undefined;
|
10834
12894
|
} | null | undefined;
|
@@ -10839,6 +12899,26 @@ export declare class Builder implements VSeedBuilder {
|
|
10839
12899
|
wrap?: boolean | null | undefined;
|
10840
12900
|
showValue?: boolean | null | undefined;
|
10841
12901
|
showValuePercent?: boolean | null | undefined;
|
12902
|
+
autoFormat?: boolean | null | undefined;
|
12903
|
+
numFormat?: {
|
12904
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
12905
|
+
ratio?: number | undefined;
|
12906
|
+
symbol?: string | undefined;
|
12907
|
+
thousandSeparator?: boolean | undefined;
|
12908
|
+
prefix?: string | undefined;
|
12909
|
+
suffix?: string | undefined;
|
12910
|
+
fractionDigits?: number | undefined;
|
12911
|
+
significantDigits?: number | undefined;
|
12912
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
12913
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
12914
|
+
} | null | undefined;
|
12915
|
+
labelFontSize?: number | null | undefined;
|
12916
|
+
labelFontWeight?: string | number | null | undefined;
|
12917
|
+
labelBackgroundColor?: string | null | undefined;
|
12918
|
+
labelColor?: string | null | undefined;
|
12919
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
12920
|
+
labelPosition?: string | null | undefined;
|
12921
|
+
labelOverlap?: boolean | null | undefined;
|
10842
12922
|
} | null | undefined;
|
10843
12923
|
color?: {
|
10844
12924
|
colorScheme?: string[] | null | undefined;
|
@@ -10854,8 +12934,8 @@ export declare class Builder implements VSeedBuilder {
|
|
10854
12934
|
maxSize?: number | null | undefined;
|
10855
12935
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
10856
12936
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
12937
|
+
labelColor?: string | null | undefined;
|
10857
12938
|
labelFontSize?: number | null | undefined;
|
10858
|
-
labelFontColor?: string | null | undefined;
|
10859
12939
|
labelFontWeight?: string | number | null | undefined;
|
10860
12940
|
} | null | undefined;
|
10861
12941
|
} | null | undefined;
|
@@ -10866,6 +12946,26 @@ export declare class Builder implements VSeedBuilder {
|
|
10866
12946
|
wrap?: boolean | null | undefined;
|
10867
12947
|
showValue?: boolean | null | undefined;
|
10868
12948
|
showValuePercent?: boolean | null | undefined;
|
12949
|
+
autoFormat?: boolean | null | undefined;
|
12950
|
+
numFormat?: {
|
12951
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
12952
|
+
ratio?: number | undefined;
|
12953
|
+
symbol?: string | undefined;
|
12954
|
+
thousandSeparator?: boolean | undefined;
|
12955
|
+
prefix?: string | undefined;
|
12956
|
+
suffix?: string | undefined;
|
12957
|
+
fractionDigits?: number | undefined;
|
12958
|
+
significantDigits?: number | undefined;
|
12959
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
12960
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
12961
|
+
} | null | undefined;
|
12962
|
+
labelFontSize?: number | null | undefined;
|
12963
|
+
labelFontWeight?: string | number | null | undefined;
|
12964
|
+
labelBackgroundColor?: string | null | undefined;
|
12965
|
+
labelColor?: string | null | undefined;
|
12966
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
12967
|
+
labelPosition?: string | null | undefined;
|
12968
|
+
labelOverlap?: boolean | null | undefined;
|
10869
12969
|
} | null | undefined;
|
10870
12970
|
color?: {
|
10871
12971
|
colorScheme?: string[] | null | undefined;
|
@@ -10881,8 +12981,8 @@ export declare class Builder implements VSeedBuilder {
|
|
10881
12981
|
maxSize?: number | null | undefined;
|
10882
12982
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
10883
12983
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
12984
|
+
labelColor?: string | null | undefined;
|
10884
12985
|
labelFontSize?: number | null | undefined;
|
10885
|
-
labelFontColor?: string | null | undefined;
|
10886
12986
|
labelFontWeight?: string | number | null | undefined;
|
10887
12987
|
} | null | undefined;
|
10888
12988
|
} | null | undefined;
|
@@ -10893,6 +12993,26 @@ export declare class Builder implements VSeedBuilder {
|
|
10893
12993
|
wrap?: boolean | null | undefined;
|
10894
12994
|
showValue?: boolean | null | undefined;
|
10895
12995
|
showValuePercent?: boolean | null | undefined;
|
12996
|
+
autoFormat?: boolean | null | undefined;
|
12997
|
+
numFormat?: {
|
12998
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
12999
|
+
ratio?: number | undefined;
|
13000
|
+
symbol?: string | undefined;
|
13001
|
+
thousandSeparator?: boolean | undefined;
|
13002
|
+
prefix?: string | undefined;
|
13003
|
+
suffix?: string | undefined;
|
13004
|
+
fractionDigits?: number | undefined;
|
13005
|
+
significantDigits?: number | undefined;
|
13006
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
13007
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
13008
|
+
} | null | undefined;
|
13009
|
+
labelFontSize?: number | null | undefined;
|
13010
|
+
labelFontWeight?: string | number | null | undefined;
|
13011
|
+
labelBackgroundColor?: string | null | undefined;
|
13012
|
+
labelColor?: string | null | undefined;
|
13013
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
13014
|
+
labelPosition?: string | null | undefined;
|
13015
|
+
labelOverlap?: boolean | null | undefined;
|
10896
13016
|
} | null | undefined;
|
10897
13017
|
color?: {
|
10898
13018
|
colorScheme?: string[] | null | undefined;
|
@@ -10908,8 +13028,8 @@ export declare class Builder implements VSeedBuilder {
|
|
10908
13028
|
maxSize?: number | null | undefined;
|
10909
13029
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
10910
13030
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
13031
|
+
labelColor?: string | null | undefined;
|
10911
13032
|
labelFontSize?: number | null | undefined;
|
10912
|
-
labelFontColor?: string | null | undefined;
|
10913
13033
|
labelFontWeight?: string | number | null | undefined;
|
10914
13034
|
} | null | undefined;
|
10915
13035
|
} | null | undefined;
|
@@ -10920,6 +13040,26 @@ export declare class Builder implements VSeedBuilder {
|
|
10920
13040
|
wrap?: boolean | null | undefined;
|
10921
13041
|
showValue?: boolean | null | undefined;
|
10922
13042
|
showValuePercent?: boolean | null | undefined;
|
13043
|
+
autoFormat?: boolean | null | undefined;
|
13044
|
+
numFormat?: {
|
13045
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
13046
|
+
ratio?: number | undefined;
|
13047
|
+
symbol?: string | undefined;
|
13048
|
+
thousandSeparator?: boolean | undefined;
|
13049
|
+
prefix?: string | undefined;
|
13050
|
+
suffix?: string | undefined;
|
13051
|
+
fractionDigits?: number | undefined;
|
13052
|
+
significantDigits?: number | undefined;
|
13053
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
13054
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
13055
|
+
} | null | undefined;
|
13056
|
+
labelFontSize?: number | null | undefined;
|
13057
|
+
labelFontWeight?: string | number | null | undefined;
|
13058
|
+
labelBackgroundColor?: string | null | undefined;
|
13059
|
+
labelColor?: string | null | undefined;
|
13060
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
13061
|
+
labelPosition?: string | null | undefined;
|
13062
|
+
labelOverlap?: boolean | null | undefined;
|
10923
13063
|
} | null | undefined;
|
10924
13064
|
color?: {
|
10925
13065
|
colorScheme?: string[] | null | undefined;
|
@@ -10935,8 +13075,8 @@ export declare class Builder implements VSeedBuilder {
|
|
10935
13075
|
maxSize?: number | null | undefined;
|
10936
13076
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
10937
13077
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
13078
|
+
labelColor?: string | null | undefined;
|
10938
13079
|
labelFontSize?: number | null | undefined;
|
10939
|
-
labelFontColor?: string | null | undefined;
|
10940
13080
|
labelFontWeight?: string | number | null | undefined;
|
10941
13081
|
} | null | undefined;
|
10942
13082
|
} | null | undefined;
|
@@ -10947,6 +13087,26 @@ export declare class Builder implements VSeedBuilder {
|
|
10947
13087
|
wrap?: boolean | null | undefined;
|
10948
13088
|
showValue?: boolean | null | undefined;
|
10949
13089
|
showValuePercent?: boolean | null | undefined;
|
13090
|
+
autoFormat?: boolean | null | undefined;
|
13091
|
+
numFormat?: {
|
13092
|
+
type?: "number" | "percent" | "permille" | "scientific" | undefined;
|
13093
|
+
ratio?: number | undefined;
|
13094
|
+
symbol?: string | undefined;
|
13095
|
+
thousandSeparator?: boolean | undefined;
|
13096
|
+
prefix?: string | undefined;
|
13097
|
+
suffix?: string | undefined;
|
13098
|
+
fractionDigits?: number | undefined;
|
13099
|
+
significantDigits?: number | undefined;
|
13100
|
+
roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
|
13101
|
+
roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
|
13102
|
+
} | null | undefined;
|
13103
|
+
labelFontSize?: number | null | undefined;
|
13104
|
+
labelFontWeight?: string | number | null | undefined;
|
13105
|
+
labelBackgroundColor?: string | null | undefined;
|
13106
|
+
labelColor?: string | null | undefined;
|
13107
|
+
labelColorSmartInvert?: boolean | null | undefined;
|
13108
|
+
labelPosition?: string | null | undefined;
|
13109
|
+
labelOverlap?: boolean | null | undefined;
|
10950
13110
|
} | null | undefined;
|
10951
13111
|
color?: {
|
10952
13112
|
colorScheme?: string[] | null | undefined;
|
@@ -10962,8 +13122,8 @@ export declare class Builder implements VSeedBuilder {
|
|
10962
13122
|
maxSize?: number | null | undefined;
|
10963
13123
|
shapeType?: "circle" | "cross" | "diamond" | "square" | "arrow" | "arrow2Left" | "arrow2Right" | "wedge" | "thinTriangle" | "triangle" | "triangleUp" | "triangleDown" | "triangleRight" | "triangleLeft" | "stroke" | "star" | "wye" | "rect" | "arrowLeft" | "arrowRight" | "rectRound" | "roundLine" | null | undefined;
|
10964
13124
|
position?: "left" | "leftTop" | "leftBottom" | "lt" | "lb" | "top" | "topLeft" | "topRight" | "tl" | "tr" | "right" | "rightTop" | "rightBottom" | "rt" | "rb" | "bottom" | "bottomLeft" | "bottomRight" | "bl" | "br" | null | undefined;
|
13125
|
+
labelColor?: string | null | undefined;
|
10965
13126
|
labelFontSize?: number | null | undefined;
|
10966
|
-
labelFontColor?: string | null | undefined;
|
10967
13127
|
labelFontWeight?: string | number | null | undefined;
|
10968
13128
|
} | null | undefined;
|
10969
13129
|
} | null | undefined;
|