@univerjs-pro/engine-chart 0.6.10-nightly.202504251607 → 0.6.10-nightly.202504271606
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/lib/cjs/index.js +1 -1
- package/lib/es/index.js +1 -1
- package/lib/index.js +1 -1
- package/lib/types/enum.d.ts +22 -1
- package/lib/types/index.d.ts +1 -1
- package/lib/types/model/chart-model.d.ts +834 -0
- package/lib/types/model/constants/default-chart-style.d.ts +6 -1
- package/lib/types/model/mode-converter/converters/tools.d.ts +10 -0
- package/lib/types/model/mode-converter/converters/waterfall-chart-converter.d.ts +2 -0
- package/lib/types/model/mode-converter/render-spec-operators/series-style-operator/waterfall-series-style-operator.d.ts +3 -0
- package/lib/types/model/mode-converter/render-spec-operators/tools.d.ts +11 -0
- package/lib/types/types.d.ts +26 -2
- package/lib/umd/index.js +1 -1
- package/package.json +2 -2
|
@@ -437,6 +437,143 @@ export declare class ChartModel extends Disposable {
|
|
|
437
437
|
dashType?: import('..').ChartBorderDashType | undefined;
|
|
438
438
|
} | undefined;
|
|
439
439
|
rightYAxis?: boolean | undefined;
|
|
440
|
+
waterfall?: {
|
|
441
|
+
positive?: {
|
|
442
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
443
|
+
rightYAxis?: boolean | undefined;
|
|
444
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
445
|
+
fillOpacity?: number | undefined;
|
|
446
|
+
border?: {
|
|
447
|
+
opacity?: number | undefined;
|
|
448
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
449
|
+
width?: number | undefined;
|
|
450
|
+
dashType?: import('..').ChartBorderDashType | undefined;
|
|
451
|
+
} | undefined;
|
|
452
|
+
label?: {
|
|
453
|
+
contentType?: number | undefined;
|
|
454
|
+
position?: import('..').SeriesLabelPosition | undefined;
|
|
455
|
+
visible?: boolean | undefined;
|
|
456
|
+
content?: string | undefined;
|
|
457
|
+
fontSize?: number | undefined;
|
|
458
|
+
color?: string | undefined;
|
|
459
|
+
align?: import('..').LabelAlignEnum | undefined;
|
|
460
|
+
bold?: boolean | undefined;
|
|
461
|
+
family?: string | undefined;
|
|
462
|
+
strikethrough?: boolean | undefined;
|
|
463
|
+
italic?: boolean | undefined;
|
|
464
|
+
underline?: boolean | undefined;
|
|
465
|
+
padAngle?: boolean | undefined;
|
|
466
|
+
axisTitleAlign?: import('..').AxisAlignEnum | undefined;
|
|
467
|
+
showMaxLabel?: boolean | undefined;
|
|
468
|
+
showMinLabel?: boolean | undefined;
|
|
469
|
+
rotate?: number | undefined;
|
|
470
|
+
} | undefined;
|
|
471
|
+
point?: {
|
|
472
|
+
shape?: import('..').LinePointShape | undefined;
|
|
473
|
+
size?: number | undefined;
|
|
474
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
475
|
+
} | undefined;
|
|
476
|
+
dataPoints?: {
|
|
477
|
+
[x: number]: {
|
|
478
|
+
shape?: import('..').LinePointShape | undefined;
|
|
479
|
+
size?: number | undefined;
|
|
480
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
481
|
+
} | undefined;
|
|
482
|
+
} | undefined;
|
|
483
|
+
waterfall?: /*elided*/ any | undefined;
|
|
484
|
+
name?: string | undefined;
|
|
485
|
+
} | undefined;
|
|
486
|
+
negative?: {
|
|
487
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
488
|
+
rightYAxis?: boolean | undefined;
|
|
489
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
490
|
+
fillOpacity?: number | undefined;
|
|
491
|
+
border?: {
|
|
492
|
+
opacity?: number | undefined;
|
|
493
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
494
|
+
width?: number | undefined;
|
|
495
|
+
dashType?: import('..').ChartBorderDashType | undefined;
|
|
496
|
+
} | undefined;
|
|
497
|
+
label?: {
|
|
498
|
+
contentType?: number | undefined;
|
|
499
|
+
position?: import('..').SeriesLabelPosition | undefined;
|
|
500
|
+
visible?: boolean | undefined;
|
|
501
|
+
content?: string | undefined;
|
|
502
|
+
fontSize?: number | undefined;
|
|
503
|
+
color?: string | undefined;
|
|
504
|
+
align?: import('..').LabelAlignEnum | undefined;
|
|
505
|
+
bold?: boolean | undefined;
|
|
506
|
+
family?: string | undefined;
|
|
507
|
+
strikethrough?: boolean | undefined;
|
|
508
|
+
italic?: boolean | undefined;
|
|
509
|
+
underline?: boolean | undefined;
|
|
510
|
+
padAngle?: boolean | undefined;
|
|
511
|
+
axisTitleAlign?: import('..').AxisAlignEnum | undefined;
|
|
512
|
+
showMaxLabel?: boolean | undefined;
|
|
513
|
+
showMinLabel?: boolean | undefined;
|
|
514
|
+
rotate?: number | undefined;
|
|
515
|
+
} | undefined;
|
|
516
|
+
point?: {
|
|
517
|
+
shape?: import('..').LinePointShape | undefined;
|
|
518
|
+
size?: number | undefined;
|
|
519
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
520
|
+
} | undefined;
|
|
521
|
+
dataPoints?: {
|
|
522
|
+
[x: number]: {
|
|
523
|
+
shape?: import('..').LinePointShape | undefined;
|
|
524
|
+
size?: number | undefined;
|
|
525
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
526
|
+
} | undefined;
|
|
527
|
+
} | undefined;
|
|
528
|
+
waterfall?: /*elided*/ any | undefined;
|
|
529
|
+
name?: string | undefined;
|
|
530
|
+
} | undefined;
|
|
531
|
+
subtotal?: {
|
|
532
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
533
|
+
rightYAxis?: boolean | undefined;
|
|
534
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
535
|
+
fillOpacity?: number | undefined;
|
|
536
|
+
border?: {
|
|
537
|
+
opacity?: number | undefined;
|
|
538
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
539
|
+
width?: number | undefined;
|
|
540
|
+
dashType?: import('..').ChartBorderDashType | undefined;
|
|
541
|
+
} | undefined;
|
|
542
|
+
label?: {
|
|
543
|
+
contentType?: number | undefined;
|
|
544
|
+
position?: import('..').SeriesLabelPosition | undefined;
|
|
545
|
+
visible?: boolean | undefined;
|
|
546
|
+
content?: string | undefined;
|
|
547
|
+
fontSize?: number | undefined;
|
|
548
|
+
color?: string | undefined;
|
|
549
|
+
align?: import('..').LabelAlignEnum | undefined;
|
|
550
|
+
bold?: boolean | undefined;
|
|
551
|
+
family?: string | undefined;
|
|
552
|
+
strikethrough?: boolean | undefined;
|
|
553
|
+
italic?: boolean | undefined;
|
|
554
|
+
underline?: boolean | undefined;
|
|
555
|
+
padAngle?: boolean | undefined;
|
|
556
|
+
axisTitleAlign?: import('..').AxisAlignEnum | undefined;
|
|
557
|
+
showMaxLabel?: boolean | undefined;
|
|
558
|
+
showMinLabel?: boolean | undefined;
|
|
559
|
+
rotate?: number | undefined;
|
|
560
|
+
} | undefined;
|
|
561
|
+
point?: {
|
|
562
|
+
shape?: import('..').LinePointShape | undefined;
|
|
563
|
+
size?: number | undefined;
|
|
564
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
565
|
+
} | undefined;
|
|
566
|
+
dataPoints?: {
|
|
567
|
+
[x: number]: {
|
|
568
|
+
shape?: import('..').LinePointShape | undefined;
|
|
569
|
+
size?: number | undefined;
|
|
570
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
571
|
+
} | undefined;
|
|
572
|
+
} | undefined;
|
|
573
|
+
waterfall?: /*elided*/ any | undefined;
|
|
574
|
+
name?: string | undefined;
|
|
575
|
+
} | undefined;
|
|
576
|
+
} | undefined;
|
|
440
577
|
} | undefined;
|
|
441
578
|
seriesStyleMap?: {
|
|
442
579
|
[x: string]: {
|
|
@@ -481,6 +618,143 @@ export declare class ChartModel extends Disposable {
|
|
|
481
618
|
color?: import('@univerjs/core').Nullable<string>;
|
|
482
619
|
} | undefined;
|
|
483
620
|
} | undefined;
|
|
621
|
+
waterfall?: {
|
|
622
|
+
positive?: {
|
|
623
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
624
|
+
rightYAxis?: boolean | undefined;
|
|
625
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
626
|
+
fillOpacity?: number | undefined;
|
|
627
|
+
border?: {
|
|
628
|
+
opacity?: number | undefined;
|
|
629
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
630
|
+
width?: number | undefined;
|
|
631
|
+
dashType?: import('..').ChartBorderDashType | undefined;
|
|
632
|
+
} | undefined;
|
|
633
|
+
label?: {
|
|
634
|
+
contentType?: number | undefined;
|
|
635
|
+
position?: import('..').SeriesLabelPosition | undefined;
|
|
636
|
+
visible?: boolean | undefined;
|
|
637
|
+
content?: string | undefined;
|
|
638
|
+
fontSize?: number | undefined;
|
|
639
|
+
color?: string | undefined;
|
|
640
|
+
align?: import('..').LabelAlignEnum | undefined;
|
|
641
|
+
bold?: boolean | undefined;
|
|
642
|
+
family?: string | undefined;
|
|
643
|
+
strikethrough?: boolean | undefined;
|
|
644
|
+
italic?: boolean | undefined;
|
|
645
|
+
underline?: boolean | undefined;
|
|
646
|
+
padAngle?: boolean | undefined;
|
|
647
|
+
axisTitleAlign?: import('..').AxisAlignEnum | undefined;
|
|
648
|
+
showMaxLabel?: boolean | undefined;
|
|
649
|
+
showMinLabel?: boolean | undefined;
|
|
650
|
+
rotate?: number | undefined;
|
|
651
|
+
} | undefined;
|
|
652
|
+
point?: {
|
|
653
|
+
shape?: import('..').LinePointShape | undefined;
|
|
654
|
+
size?: number | undefined;
|
|
655
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
656
|
+
} | undefined;
|
|
657
|
+
dataPoints?: {
|
|
658
|
+
[x: number]: {
|
|
659
|
+
shape?: import('..').LinePointShape | undefined;
|
|
660
|
+
size?: number | undefined;
|
|
661
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
662
|
+
} | undefined;
|
|
663
|
+
} | undefined;
|
|
664
|
+
waterfall?: /*elided*/ any | undefined;
|
|
665
|
+
name?: string | undefined;
|
|
666
|
+
} | undefined;
|
|
667
|
+
negative?: {
|
|
668
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
669
|
+
rightYAxis?: boolean | undefined;
|
|
670
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
671
|
+
fillOpacity?: number | undefined;
|
|
672
|
+
border?: {
|
|
673
|
+
opacity?: number | undefined;
|
|
674
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
675
|
+
width?: number | undefined;
|
|
676
|
+
dashType?: import('..').ChartBorderDashType | undefined;
|
|
677
|
+
} | undefined;
|
|
678
|
+
label?: {
|
|
679
|
+
contentType?: number | undefined;
|
|
680
|
+
position?: import('..').SeriesLabelPosition | undefined;
|
|
681
|
+
visible?: boolean | undefined;
|
|
682
|
+
content?: string | undefined;
|
|
683
|
+
fontSize?: number | undefined;
|
|
684
|
+
color?: string | undefined;
|
|
685
|
+
align?: import('..').LabelAlignEnum | undefined;
|
|
686
|
+
bold?: boolean | undefined;
|
|
687
|
+
family?: string | undefined;
|
|
688
|
+
strikethrough?: boolean | undefined;
|
|
689
|
+
italic?: boolean | undefined;
|
|
690
|
+
underline?: boolean | undefined;
|
|
691
|
+
padAngle?: boolean | undefined;
|
|
692
|
+
axisTitleAlign?: import('..').AxisAlignEnum | undefined;
|
|
693
|
+
showMaxLabel?: boolean | undefined;
|
|
694
|
+
showMinLabel?: boolean | undefined;
|
|
695
|
+
rotate?: number | undefined;
|
|
696
|
+
} | undefined;
|
|
697
|
+
point?: {
|
|
698
|
+
shape?: import('..').LinePointShape | undefined;
|
|
699
|
+
size?: number | undefined;
|
|
700
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
701
|
+
} | undefined;
|
|
702
|
+
dataPoints?: {
|
|
703
|
+
[x: number]: {
|
|
704
|
+
shape?: import('..').LinePointShape | undefined;
|
|
705
|
+
size?: number | undefined;
|
|
706
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
707
|
+
} | undefined;
|
|
708
|
+
} | undefined;
|
|
709
|
+
waterfall?: /*elided*/ any | undefined;
|
|
710
|
+
name?: string | undefined;
|
|
711
|
+
} | undefined;
|
|
712
|
+
subtotal?: {
|
|
713
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
714
|
+
rightYAxis?: boolean | undefined;
|
|
715
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
716
|
+
fillOpacity?: number | undefined;
|
|
717
|
+
border?: {
|
|
718
|
+
opacity?: number | undefined;
|
|
719
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
720
|
+
width?: number | undefined;
|
|
721
|
+
dashType?: import('..').ChartBorderDashType | undefined;
|
|
722
|
+
} | undefined;
|
|
723
|
+
label?: {
|
|
724
|
+
contentType?: number | undefined;
|
|
725
|
+
position?: import('..').SeriesLabelPosition | undefined;
|
|
726
|
+
visible?: boolean | undefined;
|
|
727
|
+
content?: string | undefined;
|
|
728
|
+
fontSize?: number | undefined;
|
|
729
|
+
color?: string | undefined;
|
|
730
|
+
align?: import('..').LabelAlignEnum | undefined;
|
|
731
|
+
bold?: boolean | undefined;
|
|
732
|
+
family?: string | undefined;
|
|
733
|
+
strikethrough?: boolean | undefined;
|
|
734
|
+
italic?: boolean | undefined;
|
|
735
|
+
underline?: boolean | undefined;
|
|
736
|
+
padAngle?: boolean | undefined;
|
|
737
|
+
axisTitleAlign?: import('..').AxisAlignEnum | undefined;
|
|
738
|
+
showMaxLabel?: boolean | undefined;
|
|
739
|
+
showMinLabel?: boolean | undefined;
|
|
740
|
+
rotate?: number | undefined;
|
|
741
|
+
} | undefined;
|
|
742
|
+
point?: {
|
|
743
|
+
shape?: import('..').LinePointShape | undefined;
|
|
744
|
+
size?: number | undefined;
|
|
745
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
746
|
+
} | undefined;
|
|
747
|
+
dataPoints?: {
|
|
748
|
+
[x: number]: {
|
|
749
|
+
shape?: import('..').LinePointShape | undefined;
|
|
750
|
+
size?: number | undefined;
|
|
751
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
752
|
+
} | undefined;
|
|
753
|
+
} | undefined;
|
|
754
|
+
waterfall?: /*elided*/ any | undefined;
|
|
755
|
+
name?: string | undefined;
|
|
756
|
+
} | undefined;
|
|
757
|
+
} | undefined;
|
|
484
758
|
} | undefined;
|
|
485
759
|
} | undefined;
|
|
486
760
|
trendlines?: import('..').ITrendLine[] | undefined;
|
|
@@ -538,6 +812,10 @@ export declare class ChartModel extends Disposable {
|
|
|
538
812
|
rotateLabel?: boolean | undefined;
|
|
539
813
|
} | undefined;
|
|
540
814
|
} | undefined;
|
|
815
|
+
waterfall?: {
|
|
816
|
+
stackType?: import('..').WaterfallStackTypeEnum | undefined;
|
|
817
|
+
useSubtotal?: boolean | undefined;
|
|
818
|
+
} | undefined;
|
|
541
819
|
tooltip?: {
|
|
542
820
|
indicatorLabelColor?: string | undefined;
|
|
543
821
|
indicatorLineType?: import('..').ChartBorderDashType | undefined;
|
|
@@ -949,6 +1227,143 @@ export declare class ChartModel extends Disposable {
|
|
|
949
1227
|
dashType?: import('..').ChartBorderDashType | undefined;
|
|
950
1228
|
} | undefined;
|
|
951
1229
|
rightYAxis?: boolean | undefined;
|
|
1230
|
+
waterfall?: {
|
|
1231
|
+
positive?: {
|
|
1232
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
1233
|
+
rightYAxis?: boolean | undefined;
|
|
1234
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
1235
|
+
fillOpacity?: number | undefined;
|
|
1236
|
+
border?: {
|
|
1237
|
+
opacity?: number | undefined;
|
|
1238
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
1239
|
+
width?: number | undefined;
|
|
1240
|
+
dashType?: import('..').ChartBorderDashType | undefined;
|
|
1241
|
+
} | undefined;
|
|
1242
|
+
label?: {
|
|
1243
|
+
contentType?: number | undefined;
|
|
1244
|
+
position?: import('..').SeriesLabelPosition | undefined;
|
|
1245
|
+
visible?: boolean | undefined;
|
|
1246
|
+
content?: string | undefined;
|
|
1247
|
+
fontSize?: number | undefined;
|
|
1248
|
+
color?: string | undefined;
|
|
1249
|
+
align?: import('..').LabelAlignEnum | undefined;
|
|
1250
|
+
bold?: boolean | undefined;
|
|
1251
|
+
family?: string | undefined;
|
|
1252
|
+
strikethrough?: boolean | undefined;
|
|
1253
|
+
italic?: boolean | undefined;
|
|
1254
|
+
underline?: boolean | undefined;
|
|
1255
|
+
padAngle?: boolean | undefined;
|
|
1256
|
+
axisTitleAlign?: import('..').AxisAlignEnum | undefined;
|
|
1257
|
+
showMaxLabel?: boolean | undefined;
|
|
1258
|
+
showMinLabel?: boolean | undefined;
|
|
1259
|
+
rotate?: number | undefined;
|
|
1260
|
+
} | undefined;
|
|
1261
|
+
point?: {
|
|
1262
|
+
shape?: import('..').LinePointShape | undefined;
|
|
1263
|
+
size?: number | undefined;
|
|
1264
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
1265
|
+
} | undefined;
|
|
1266
|
+
dataPoints?: {
|
|
1267
|
+
[x: number]: {
|
|
1268
|
+
shape?: import('..').LinePointShape | undefined;
|
|
1269
|
+
size?: number | undefined;
|
|
1270
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
1271
|
+
} | undefined;
|
|
1272
|
+
} | undefined;
|
|
1273
|
+
waterfall?: /*elided*/ any | undefined;
|
|
1274
|
+
name?: string | undefined;
|
|
1275
|
+
} | undefined;
|
|
1276
|
+
negative?: {
|
|
1277
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
1278
|
+
rightYAxis?: boolean | undefined;
|
|
1279
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
1280
|
+
fillOpacity?: number | undefined;
|
|
1281
|
+
border?: {
|
|
1282
|
+
opacity?: number | undefined;
|
|
1283
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
1284
|
+
width?: number | undefined;
|
|
1285
|
+
dashType?: import('..').ChartBorderDashType | undefined;
|
|
1286
|
+
} | undefined;
|
|
1287
|
+
label?: {
|
|
1288
|
+
contentType?: number | undefined;
|
|
1289
|
+
position?: import('..').SeriesLabelPosition | undefined;
|
|
1290
|
+
visible?: boolean | undefined;
|
|
1291
|
+
content?: string | undefined;
|
|
1292
|
+
fontSize?: number | undefined;
|
|
1293
|
+
color?: string | undefined;
|
|
1294
|
+
align?: import('..').LabelAlignEnum | undefined;
|
|
1295
|
+
bold?: boolean | undefined;
|
|
1296
|
+
family?: string | undefined;
|
|
1297
|
+
strikethrough?: boolean | undefined;
|
|
1298
|
+
italic?: boolean | undefined;
|
|
1299
|
+
underline?: boolean | undefined;
|
|
1300
|
+
padAngle?: boolean | undefined;
|
|
1301
|
+
axisTitleAlign?: import('..').AxisAlignEnum | undefined;
|
|
1302
|
+
showMaxLabel?: boolean | undefined;
|
|
1303
|
+
showMinLabel?: boolean | undefined;
|
|
1304
|
+
rotate?: number | undefined;
|
|
1305
|
+
} | undefined;
|
|
1306
|
+
point?: {
|
|
1307
|
+
shape?: import('..').LinePointShape | undefined;
|
|
1308
|
+
size?: number | undefined;
|
|
1309
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
1310
|
+
} | undefined;
|
|
1311
|
+
dataPoints?: {
|
|
1312
|
+
[x: number]: {
|
|
1313
|
+
shape?: import('..').LinePointShape | undefined;
|
|
1314
|
+
size?: number | undefined;
|
|
1315
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
1316
|
+
} | undefined;
|
|
1317
|
+
} | undefined;
|
|
1318
|
+
waterfall?: /*elided*/ any | undefined;
|
|
1319
|
+
name?: string | undefined;
|
|
1320
|
+
} | undefined;
|
|
1321
|
+
subtotal?: {
|
|
1322
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
1323
|
+
rightYAxis?: boolean | undefined;
|
|
1324
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
1325
|
+
fillOpacity?: number | undefined;
|
|
1326
|
+
border?: {
|
|
1327
|
+
opacity?: number | undefined;
|
|
1328
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
1329
|
+
width?: number | undefined;
|
|
1330
|
+
dashType?: import('..').ChartBorderDashType | undefined;
|
|
1331
|
+
} | undefined;
|
|
1332
|
+
label?: {
|
|
1333
|
+
contentType?: number | undefined;
|
|
1334
|
+
position?: import('..').SeriesLabelPosition | undefined;
|
|
1335
|
+
visible?: boolean | undefined;
|
|
1336
|
+
content?: string | undefined;
|
|
1337
|
+
fontSize?: number | undefined;
|
|
1338
|
+
color?: string | undefined;
|
|
1339
|
+
align?: import('..').LabelAlignEnum | undefined;
|
|
1340
|
+
bold?: boolean | undefined;
|
|
1341
|
+
family?: string | undefined;
|
|
1342
|
+
strikethrough?: boolean | undefined;
|
|
1343
|
+
italic?: boolean | undefined;
|
|
1344
|
+
underline?: boolean | undefined;
|
|
1345
|
+
padAngle?: boolean | undefined;
|
|
1346
|
+
axisTitleAlign?: import('..').AxisAlignEnum | undefined;
|
|
1347
|
+
showMaxLabel?: boolean | undefined;
|
|
1348
|
+
showMinLabel?: boolean | undefined;
|
|
1349
|
+
rotate?: number | undefined;
|
|
1350
|
+
} | undefined;
|
|
1351
|
+
point?: {
|
|
1352
|
+
shape?: import('..').LinePointShape | undefined;
|
|
1353
|
+
size?: number | undefined;
|
|
1354
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
1355
|
+
} | undefined;
|
|
1356
|
+
dataPoints?: {
|
|
1357
|
+
[x: number]: {
|
|
1358
|
+
shape?: import('..').LinePointShape | undefined;
|
|
1359
|
+
size?: number | undefined;
|
|
1360
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
1361
|
+
} | undefined;
|
|
1362
|
+
} | undefined;
|
|
1363
|
+
waterfall?: /*elided*/ any | undefined;
|
|
1364
|
+
name?: string | undefined;
|
|
1365
|
+
} | undefined;
|
|
1366
|
+
} | undefined;
|
|
952
1367
|
} | undefined;
|
|
953
1368
|
seriesStyleMap?: {
|
|
954
1369
|
[x: string]: {
|
|
@@ -993,6 +1408,143 @@ export declare class ChartModel extends Disposable {
|
|
|
993
1408
|
color?: import('@univerjs/core').Nullable<string>;
|
|
994
1409
|
} | undefined;
|
|
995
1410
|
} | undefined;
|
|
1411
|
+
waterfall?: {
|
|
1412
|
+
positive?: {
|
|
1413
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
1414
|
+
rightYAxis?: boolean | undefined;
|
|
1415
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
1416
|
+
fillOpacity?: number | undefined;
|
|
1417
|
+
border?: {
|
|
1418
|
+
opacity?: number | undefined;
|
|
1419
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
1420
|
+
width?: number | undefined;
|
|
1421
|
+
dashType?: import('..').ChartBorderDashType | undefined;
|
|
1422
|
+
} | undefined;
|
|
1423
|
+
label?: {
|
|
1424
|
+
contentType?: number | undefined;
|
|
1425
|
+
position?: import('..').SeriesLabelPosition | undefined;
|
|
1426
|
+
visible?: boolean | undefined;
|
|
1427
|
+
content?: string | undefined;
|
|
1428
|
+
fontSize?: number | undefined;
|
|
1429
|
+
color?: string | undefined;
|
|
1430
|
+
align?: import('..').LabelAlignEnum | undefined;
|
|
1431
|
+
bold?: boolean | undefined;
|
|
1432
|
+
family?: string | undefined;
|
|
1433
|
+
strikethrough?: boolean | undefined;
|
|
1434
|
+
italic?: boolean | undefined;
|
|
1435
|
+
underline?: boolean | undefined;
|
|
1436
|
+
padAngle?: boolean | undefined;
|
|
1437
|
+
axisTitleAlign?: import('..').AxisAlignEnum | undefined;
|
|
1438
|
+
showMaxLabel?: boolean | undefined;
|
|
1439
|
+
showMinLabel?: boolean | undefined;
|
|
1440
|
+
rotate?: number | undefined;
|
|
1441
|
+
} | undefined;
|
|
1442
|
+
point?: {
|
|
1443
|
+
shape?: import('..').LinePointShape | undefined;
|
|
1444
|
+
size?: number | undefined;
|
|
1445
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
1446
|
+
} | undefined;
|
|
1447
|
+
dataPoints?: {
|
|
1448
|
+
[x: number]: {
|
|
1449
|
+
shape?: import('..').LinePointShape | undefined;
|
|
1450
|
+
size?: number | undefined;
|
|
1451
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
1452
|
+
} | undefined;
|
|
1453
|
+
} | undefined;
|
|
1454
|
+
waterfall?: /*elided*/ any | undefined;
|
|
1455
|
+
name?: string | undefined;
|
|
1456
|
+
} | undefined;
|
|
1457
|
+
negative?: {
|
|
1458
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
1459
|
+
rightYAxis?: boolean | undefined;
|
|
1460
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
1461
|
+
fillOpacity?: number | undefined;
|
|
1462
|
+
border?: {
|
|
1463
|
+
opacity?: number | undefined;
|
|
1464
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
1465
|
+
width?: number | undefined;
|
|
1466
|
+
dashType?: import('..').ChartBorderDashType | undefined;
|
|
1467
|
+
} | undefined;
|
|
1468
|
+
label?: {
|
|
1469
|
+
contentType?: number | undefined;
|
|
1470
|
+
position?: import('..').SeriesLabelPosition | undefined;
|
|
1471
|
+
visible?: boolean | undefined;
|
|
1472
|
+
content?: string | undefined;
|
|
1473
|
+
fontSize?: number | undefined;
|
|
1474
|
+
color?: string | undefined;
|
|
1475
|
+
align?: import('..').LabelAlignEnum | undefined;
|
|
1476
|
+
bold?: boolean | undefined;
|
|
1477
|
+
family?: string | undefined;
|
|
1478
|
+
strikethrough?: boolean | undefined;
|
|
1479
|
+
italic?: boolean | undefined;
|
|
1480
|
+
underline?: boolean | undefined;
|
|
1481
|
+
padAngle?: boolean | undefined;
|
|
1482
|
+
axisTitleAlign?: import('..').AxisAlignEnum | undefined;
|
|
1483
|
+
showMaxLabel?: boolean | undefined;
|
|
1484
|
+
showMinLabel?: boolean | undefined;
|
|
1485
|
+
rotate?: number | undefined;
|
|
1486
|
+
} | undefined;
|
|
1487
|
+
point?: {
|
|
1488
|
+
shape?: import('..').LinePointShape | undefined;
|
|
1489
|
+
size?: number | undefined;
|
|
1490
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
1491
|
+
} | undefined;
|
|
1492
|
+
dataPoints?: {
|
|
1493
|
+
[x: number]: {
|
|
1494
|
+
shape?: import('..').LinePointShape | undefined;
|
|
1495
|
+
size?: number | undefined;
|
|
1496
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
1497
|
+
} | undefined;
|
|
1498
|
+
} | undefined;
|
|
1499
|
+
waterfall?: /*elided*/ any | undefined;
|
|
1500
|
+
name?: string | undefined;
|
|
1501
|
+
} | undefined;
|
|
1502
|
+
subtotal?: {
|
|
1503
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
1504
|
+
rightYAxis?: boolean | undefined;
|
|
1505
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
1506
|
+
fillOpacity?: number | undefined;
|
|
1507
|
+
border?: {
|
|
1508
|
+
opacity?: number | undefined;
|
|
1509
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
1510
|
+
width?: number | undefined;
|
|
1511
|
+
dashType?: import('..').ChartBorderDashType | undefined;
|
|
1512
|
+
} | undefined;
|
|
1513
|
+
label?: {
|
|
1514
|
+
contentType?: number | undefined;
|
|
1515
|
+
position?: import('..').SeriesLabelPosition | undefined;
|
|
1516
|
+
visible?: boolean | undefined;
|
|
1517
|
+
content?: string | undefined;
|
|
1518
|
+
fontSize?: number | undefined;
|
|
1519
|
+
color?: string | undefined;
|
|
1520
|
+
align?: import('..').LabelAlignEnum | undefined;
|
|
1521
|
+
bold?: boolean | undefined;
|
|
1522
|
+
family?: string | undefined;
|
|
1523
|
+
strikethrough?: boolean | undefined;
|
|
1524
|
+
italic?: boolean | undefined;
|
|
1525
|
+
underline?: boolean | undefined;
|
|
1526
|
+
padAngle?: boolean | undefined;
|
|
1527
|
+
axisTitleAlign?: import('..').AxisAlignEnum | undefined;
|
|
1528
|
+
showMaxLabel?: boolean | undefined;
|
|
1529
|
+
showMinLabel?: boolean | undefined;
|
|
1530
|
+
rotate?: number | undefined;
|
|
1531
|
+
} | undefined;
|
|
1532
|
+
point?: {
|
|
1533
|
+
shape?: import('..').LinePointShape | undefined;
|
|
1534
|
+
size?: number | undefined;
|
|
1535
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
1536
|
+
} | undefined;
|
|
1537
|
+
dataPoints?: {
|
|
1538
|
+
[x: number]: {
|
|
1539
|
+
shape?: import('..').LinePointShape | undefined;
|
|
1540
|
+
size?: number | undefined;
|
|
1541
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
1542
|
+
} | undefined;
|
|
1543
|
+
} | undefined;
|
|
1544
|
+
waterfall?: /*elided*/ any | undefined;
|
|
1545
|
+
name?: string | undefined;
|
|
1546
|
+
} | undefined;
|
|
1547
|
+
} | undefined;
|
|
996
1548
|
} | undefined;
|
|
997
1549
|
} | undefined;
|
|
998
1550
|
trendlines?: import('..').ITrendLine[] | undefined;
|
|
@@ -1050,6 +1602,10 @@ export declare class ChartModel extends Disposable {
|
|
|
1050
1602
|
rotateLabel?: boolean | undefined;
|
|
1051
1603
|
} | undefined;
|
|
1052
1604
|
} | undefined;
|
|
1605
|
+
waterfall?: {
|
|
1606
|
+
stackType?: import('..').WaterfallStackTypeEnum | undefined;
|
|
1607
|
+
useSubtotal?: boolean | undefined;
|
|
1608
|
+
} | undefined;
|
|
1053
1609
|
tooltip?: {
|
|
1054
1610
|
indicatorLabelColor?: string | undefined;
|
|
1055
1611
|
indicatorLineType?: import('..').ChartBorderDashType | undefined;
|
|
@@ -1461,6 +2017,143 @@ export declare class ChartModel extends Disposable {
|
|
|
1461
2017
|
dashType?: import('..').ChartBorderDashType | undefined;
|
|
1462
2018
|
} | undefined;
|
|
1463
2019
|
rightYAxis?: boolean | undefined;
|
|
2020
|
+
waterfall?: {
|
|
2021
|
+
positive?: {
|
|
2022
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
2023
|
+
rightYAxis?: boolean | undefined;
|
|
2024
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
2025
|
+
fillOpacity?: number | undefined;
|
|
2026
|
+
border?: {
|
|
2027
|
+
opacity?: number | undefined;
|
|
2028
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
2029
|
+
width?: number | undefined;
|
|
2030
|
+
dashType?: import('..').ChartBorderDashType | undefined;
|
|
2031
|
+
} | undefined;
|
|
2032
|
+
label?: {
|
|
2033
|
+
contentType?: number | undefined;
|
|
2034
|
+
position?: import('..').SeriesLabelPosition | undefined;
|
|
2035
|
+
visible?: boolean | undefined;
|
|
2036
|
+
content?: string | undefined;
|
|
2037
|
+
fontSize?: number | undefined;
|
|
2038
|
+
color?: string | undefined;
|
|
2039
|
+
align?: import('..').LabelAlignEnum | undefined;
|
|
2040
|
+
bold?: boolean | undefined;
|
|
2041
|
+
family?: string | undefined;
|
|
2042
|
+
strikethrough?: boolean | undefined;
|
|
2043
|
+
italic?: boolean | undefined;
|
|
2044
|
+
underline?: boolean | undefined;
|
|
2045
|
+
padAngle?: boolean | undefined;
|
|
2046
|
+
axisTitleAlign?: import('..').AxisAlignEnum | undefined;
|
|
2047
|
+
showMaxLabel?: boolean | undefined;
|
|
2048
|
+
showMinLabel?: boolean | undefined;
|
|
2049
|
+
rotate?: number | undefined;
|
|
2050
|
+
} | undefined;
|
|
2051
|
+
point?: {
|
|
2052
|
+
shape?: import('..').LinePointShape | undefined;
|
|
2053
|
+
size?: number | undefined;
|
|
2054
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
2055
|
+
} | undefined;
|
|
2056
|
+
dataPoints?: {
|
|
2057
|
+
[x: number]: {
|
|
2058
|
+
shape?: import('..').LinePointShape | undefined;
|
|
2059
|
+
size?: number | undefined;
|
|
2060
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
2061
|
+
} | undefined;
|
|
2062
|
+
} | undefined;
|
|
2063
|
+
waterfall?: /*elided*/ any | undefined;
|
|
2064
|
+
name?: string | undefined;
|
|
2065
|
+
} | undefined;
|
|
2066
|
+
negative?: {
|
|
2067
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
2068
|
+
rightYAxis?: boolean | undefined;
|
|
2069
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
2070
|
+
fillOpacity?: number | undefined;
|
|
2071
|
+
border?: {
|
|
2072
|
+
opacity?: number | undefined;
|
|
2073
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
2074
|
+
width?: number | undefined;
|
|
2075
|
+
dashType?: import('..').ChartBorderDashType | undefined;
|
|
2076
|
+
} | undefined;
|
|
2077
|
+
label?: {
|
|
2078
|
+
contentType?: number | undefined;
|
|
2079
|
+
position?: import('..').SeriesLabelPosition | undefined;
|
|
2080
|
+
visible?: boolean | undefined;
|
|
2081
|
+
content?: string | undefined;
|
|
2082
|
+
fontSize?: number | undefined;
|
|
2083
|
+
color?: string | undefined;
|
|
2084
|
+
align?: import('..').LabelAlignEnum | undefined;
|
|
2085
|
+
bold?: boolean | undefined;
|
|
2086
|
+
family?: string | undefined;
|
|
2087
|
+
strikethrough?: boolean | undefined;
|
|
2088
|
+
italic?: boolean | undefined;
|
|
2089
|
+
underline?: boolean | undefined;
|
|
2090
|
+
padAngle?: boolean | undefined;
|
|
2091
|
+
axisTitleAlign?: import('..').AxisAlignEnum | undefined;
|
|
2092
|
+
showMaxLabel?: boolean | undefined;
|
|
2093
|
+
showMinLabel?: boolean | undefined;
|
|
2094
|
+
rotate?: number | undefined;
|
|
2095
|
+
} | undefined;
|
|
2096
|
+
point?: {
|
|
2097
|
+
shape?: import('..').LinePointShape | undefined;
|
|
2098
|
+
size?: number | undefined;
|
|
2099
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
2100
|
+
} | undefined;
|
|
2101
|
+
dataPoints?: {
|
|
2102
|
+
[x: number]: {
|
|
2103
|
+
shape?: import('..').LinePointShape | undefined;
|
|
2104
|
+
size?: number | undefined;
|
|
2105
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
2106
|
+
} | undefined;
|
|
2107
|
+
} | undefined;
|
|
2108
|
+
waterfall?: /*elided*/ any | undefined;
|
|
2109
|
+
name?: string | undefined;
|
|
2110
|
+
} | undefined;
|
|
2111
|
+
subtotal?: {
|
|
2112
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
2113
|
+
rightYAxis?: boolean | undefined;
|
|
2114
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
2115
|
+
fillOpacity?: number | undefined;
|
|
2116
|
+
border?: {
|
|
2117
|
+
opacity?: number | undefined;
|
|
2118
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
2119
|
+
width?: number | undefined;
|
|
2120
|
+
dashType?: import('..').ChartBorderDashType | undefined;
|
|
2121
|
+
} | undefined;
|
|
2122
|
+
label?: {
|
|
2123
|
+
contentType?: number | undefined;
|
|
2124
|
+
position?: import('..').SeriesLabelPosition | undefined;
|
|
2125
|
+
visible?: boolean | undefined;
|
|
2126
|
+
content?: string | undefined;
|
|
2127
|
+
fontSize?: number | undefined;
|
|
2128
|
+
color?: string | undefined;
|
|
2129
|
+
align?: import('..').LabelAlignEnum | undefined;
|
|
2130
|
+
bold?: boolean | undefined;
|
|
2131
|
+
family?: string | undefined;
|
|
2132
|
+
strikethrough?: boolean | undefined;
|
|
2133
|
+
italic?: boolean | undefined;
|
|
2134
|
+
underline?: boolean | undefined;
|
|
2135
|
+
padAngle?: boolean | undefined;
|
|
2136
|
+
axisTitleAlign?: import('..').AxisAlignEnum | undefined;
|
|
2137
|
+
showMaxLabel?: boolean | undefined;
|
|
2138
|
+
showMinLabel?: boolean | undefined;
|
|
2139
|
+
rotate?: number | undefined;
|
|
2140
|
+
} | undefined;
|
|
2141
|
+
point?: {
|
|
2142
|
+
shape?: import('..').LinePointShape | undefined;
|
|
2143
|
+
size?: number | undefined;
|
|
2144
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
2145
|
+
} | undefined;
|
|
2146
|
+
dataPoints?: {
|
|
2147
|
+
[x: number]: {
|
|
2148
|
+
shape?: import('..').LinePointShape | undefined;
|
|
2149
|
+
size?: number | undefined;
|
|
2150
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
2151
|
+
} | undefined;
|
|
2152
|
+
} | undefined;
|
|
2153
|
+
waterfall?: /*elided*/ any | undefined;
|
|
2154
|
+
name?: string | undefined;
|
|
2155
|
+
} | undefined;
|
|
2156
|
+
} | undefined;
|
|
1464
2157
|
} | undefined;
|
|
1465
2158
|
seriesStyleMap?: {
|
|
1466
2159
|
[x: string]: {
|
|
@@ -1505,6 +2198,143 @@ export declare class ChartModel extends Disposable {
|
|
|
1505
2198
|
color?: import('@univerjs/core').Nullable<string>;
|
|
1506
2199
|
} | undefined;
|
|
1507
2200
|
} | undefined;
|
|
2201
|
+
waterfall?: {
|
|
2202
|
+
positive?: {
|
|
2203
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
2204
|
+
rightYAxis?: boolean | undefined;
|
|
2205
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
2206
|
+
fillOpacity?: number | undefined;
|
|
2207
|
+
border?: {
|
|
2208
|
+
opacity?: number | undefined;
|
|
2209
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
2210
|
+
width?: number | undefined;
|
|
2211
|
+
dashType?: import('..').ChartBorderDashType | undefined;
|
|
2212
|
+
} | undefined;
|
|
2213
|
+
label?: {
|
|
2214
|
+
contentType?: number | undefined;
|
|
2215
|
+
position?: import('..').SeriesLabelPosition | undefined;
|
|
2216
|
+
visible?: boolean | undefined;
|
|
2217
|
+
content?: string | undefined;
|
|
2218
|
+
fontSize?: number | undefined;
|
|
2219
|
+
color?: string | undefined;
|
|
2220
|
+
align?: import('..').LabelAlignEnum | undefined;
|
|
2221
|
+
bold?: boolean | undefined;
|
|
2222
|
+
family?: string | undefined;
|
|
2223
|
+
strikethrough?: boolean | undefined;
|
|
2224
|
+
italic?: boolean | undefined;
|
|
2225
|
+
underline?: boolean | undefined;
|
|
2226
|
+
padAngle?: boolean | undefined;
|
|
2227
|
+
axisTitleAlign?: import('..').AxisAlignEnum | undefined;
|
|
2228
|
+
showMaxLabel?: boolean | undefined;
|
|
2229
|
+
showMinLabel?: boolean | undefined;
|
|
2230
|
+
rotate?: number | undefined;
|
|
2231
|
+
} | undefined;
|
|
2232
|
+
point?: {
|
|
2233
|
+
shape?: import('..').LinePointShape | undefined;
|
|
2234
|
+
size?: number | undefined;
|
|
2235
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
2236
|
+
} | undefined;
|
|
2237
|
+
dataPoints?: {
|
|
2238
|
+
[x: number]: {
|
|
2239
|
+
shape?: import('..').LinePointShape | undefined;
|
|
2240
|
+
size?: number | undefined;
|
|
2241
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
2242
|
+
} | undefined;
|
|
2243
|
+
} | undefined;
|
|
2244
|
+
waterfall?: /*elided*/ any | undefined;
|
|
2245
|
+
name?: string | undefined;
|
|
2246
|
+
} | undefined;
|
|
2247
|
+
negative?: {
|
|
2248
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
2249
|
+
rightYAxis?: boolean | undefined;
|
|
2250
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
2251
|
+
fillOpacity?: number | undefined;
|
|
2252
|
+
border?: {
|
|
2253
|
+
opacity?: number | undefined;
|
|
2254
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
2255
|
+
width?: number | undefined;
|
|
2256
|
+
dashType?: import('..').ChartBorderDashType | undefined;
|
|
2257
|
+
} | undefined;
|
|
2258
|
+
label?: {
|
|
2259
|
+
contentType?: number | undefined;
|
|
2260
|
+
position?: import('..').SeriesLabelPosition | undefined;
|
|
2261
|
+
visible?: boolean | undefined;
|
|
2262
|
+
content?: string | undefined;
|
|
2263
|
+
fontSize?: number | undefined;
|
|
2264
|
+
color?: string | undefined;
|
|
2265
|
+
align?: import('..').LabelAlignEnum | undefined;
|
|
2266
|
+
bold?: boolean | undefined;
|
|
2267
|
+
family?: string | undefined;
|
|
2268
|
+
strikethrough?: boolean | undefined;
|
|
2269
|
+
italic?: boolean | undefined;
|
|
2270
|
+
underline?: boolean | undefined;
|
|
2271
|
+
padAngle?: boolean | undefined;
|
|
2272
|
+
axisTitleAlign?: import('..').AxisAlignEnum | undefined;
|
|
2273
|
+
showMaxLabel?: boolean | undefined;
|
|
2274
|
+
showMinLabel?: boolean | undefined;
|
|
2275
|
+
rotate?: number | undefined;
|
|
2276
|
+
} | undefined;
|
|
2277
|
+
point?: {
|
|
2278
|
+
shape?: import('..').LinePointShape | undefined;
|
|
2279
|
+
size?: number | undefined;
|
|
2280
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
2281
|
+
} | undefined;
|
|
2282
|
+
dataPoints?: {
|
|
2283
|
+
[x: number]: {
|
|
2284
|
+
shape?: import('..').LinePointShape | undefined;
|
|
2285
|
+
size?: number | undefined;
|
|
2286
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
2287
|
+
} | undefined;
|
|
2288
|
+
} | undefined;
|
|
2289
|
+
waterfall?: /*elided*/ any | undefined;
|
|
2290
|
+
name?: string | undefined;
|
|
2291
|
+
} | undefined;
|
|
2292
|
+
subtotal?: {
|
|
2293
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
2294
|
+
rightYAxis?: boolean | undefined;
|
|
2295
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
2296
|
+
fillOpacity?: number | undefined;
|
|
2297
|
+
border?: {
|
|
2298
|
+
opacity?: number | undefined;
|
|
2299
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
2300
|
+
width?: number | undefined;
|
|
2301
|
+
dashType?: import('..').ChartBorderDashType | undefined;
|
|
2302
|
+
} | undefined;
|
|
2303
|
+
label?: {
|
|
2304
|
+
contentType?: number | undefined;
|
|
2305
|
+
position?: import('..').SeriesLabelPosition | undefined;
|
|
2306
|
+
visible?: boolean | undefined;
|
|
2307
|
+
content?: string | undefined;
|
|
2308
|
+
fontSize?: number | undefined;
|
|
2309
|
+
color?: string | undefined;
|
|
2310
|
+
align?: import('..').LabelAlignEnum | undefined;
|
|
2311
|
+
bold?: boolean | undefined;
|
|
2312
|
+
family?: string | undefined;
|
|
2313
|
+
strikethrough?: boolean | undefined;
|
|
2314
|
+
italic?: boolean | undefined;
|
|
2315
|
+
underline?: boolean | undefined;
|
|
2316
|
+
padAngle?: boolean | undefined;
|
|
2317
|
+
axisTitleAlign?: import('..').AxisAlignEnum | undefined;
|
|
2318
|
+
showMaxLabel?: boolean | undefined;
|
|
2319
|
+
showMinLabel?: boolean | undefined;
|
|
2320
|
+
rotate?: number | undefined;
|
|
2321
|
+
} | undefined;
|
|
2322
|
+
point?: {
|
|
2323
|
+
shape?: import('..').LinePointShape | undefined;
|
|
2324
|
+
size?: number | undefined;
|
|
2325
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
2326
|
+
} | undefined;
|
|
2327
|
+
dataPoints?: {
|
|
2328
|
+
[x: number]: {
|
|
2329
|
+
shape?: import('..').LinePointShape | undefined;
|
|
2330
|
+
size?: number | undefined;
|
|
2331
|
+
color?: import('@univerjs/core').Nullable<string>;
|
|
2332
|
+
} | undefined;
|
|
2333
|
+
} | undefined;
|
|
2334
|
+
waterfall?: /*elided*/ any | undefined;
|
|
2335
|
+
name?: string | undefined;
|
|
2336
|
+
} | undefined;
|
|
2337
|
+
} | undefined;
|
|
1508
2338
|
} | undefined;
|
|
1509
2339
|
} | undefined;
|
|
1510
2340
|
trendlines?: import('..').ITrendLine[] | undefined;
|
|
@@ -1562,6 +2392,10 @@ export declare class ChartModel extends Disposable {
|
|
|
1562
2392
|
rotateLabel?: boolean | undefined;
|
|
1563
2393
|
} | undefined;
|
|
1564
2394
|
} | undefined;
|
|
2395
|
+
waterfall?: {
|
|
2396
|
+
stackType?: import('..').WaterfallStackTypeEnum | undefined;
|
|
2397
|
+
useSubtotal?: boolean | undefined;
|
|
2398
|
+
} | undefined;
|
|
1565
2399
|
tooltip?: {
|
|
1566
2400
|
indicatorLabelColor?: string | undefined;
|
|
1567
2401
|
indicatorLineType?: import('..').ChartBorderDashType | undefined;
|