@sapui5/types 1.120.6 → 1.120.8
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/package.json +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +175 -43
- package/types/sap.f.d.ts +1484 -843
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +1 -1
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.gantt.d.ts +1 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +12919 -8169
- package/types/sap.makit.d.ts +367 -185
- package/types/sap.me.d.ts +229 -35
- package/types/sap.ndc.d.ts +40 -9
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +201 -126
- package/types/sap.suite.ui.microchart.d.ts +966 -392
- package/types/sap.tnt.d.ts +190 -95
- package/types/sap.ui.codeeditor.d.ts +46 -17
- package/types/sap.ui.commons.d.ts +1992 -668
- package/types/sap.ui.comp.d.ts +3653 -2889
- package/types/sap.ui.core.d.ts +5281 -3347
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +73 -65
- package/types/sap.ui.fl.d.ts +95 -46
- package/types/sap.ui.integration.d.ts +446 -387
- package/types/sap.ui.layout.d.ts +1116 -634
- package/types/sap.ui.mdc.d.ts +1907 -1277
- package/types/sap.ui.richtexteditor.d.ts +112 -55
- package/types/sap.ui.rta.d.ts +7 -7
- package/types/sap.ui.suite.d.ts +42 -10
- package/types/sap.ui.support.d.ts +31 -23
- package/types/sap.ui.table.d.ts +898 -616
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1834 -1207
- package/types/sap.ui.ux3.d.ts +1279 -477
- package/types/sap.ui.webc.common.d.ts +7 -5
- package/types/sap.ui.webc.fiori.d.ts +836 -213
- package/types/sap.ui.webc.main.d.ts +2670 -591
- package/types/sap.uiext.inbox.d.ts +207 -36
- package/types/sap.ushell.d.ts +1024 -782
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +571 -316
- package/types/sap.viz.d.ts +4030 -2318
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/types/sap.chart.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.8
|
|
2
2
|
|
|
3
3
|
declare module "sap/chart/library" {
|
|
4
4
|
import Dimension from "sap/chart/data/Dimension";
|
|
@@ -57,6 +57,7 @@ declare module "sap/chart/library" {
|
|
|
57
57
|
/**
|
|
58
58
|
* Get the Dimensions and Measures layout for a certain ChartType with provided Dimensions and Measures.
|
|
59
59
|
*
|
|
60
|
+
*
|
|
60
61
|
* @returns the chart layout object of the following form:
|
|
61
62
|
* ```javascript
|
|
62
63
|
*
|
|
@@ -84,6 +85,7 @@ declare module "sap/chart/library" {
|
|
|
84
85
|
/**
|
|
85
86
|
* Returns all chart types currently supported by chart control (subset of viz types).
|
|
86
87
|
*
|
|
88
|
+
*
|
|
87
89
|
* @returns a map with chartType as key, localized chart name as value.
|
|
88
90
|
*/
|
|
89
91
|
function getChartTypes(): object;
|
|
@@ -246,9 +248,9 @@ declare module "sap/chart/Chart" {
|
|
|
246
248
|
import UI5Element from "sap/ui/core/Element";
|
|
247
249
|
|
|
248
250
|
/**
|
|
249
|
-
* @since 1.32.0
|
|
250
|
-
*
|
|
251
251
|
* UI5 Chart control
|
|
252
|
+
*
|
|
253
|
+
* @since 1.32.0
|
|
252
254
|
*/
|
|
253
255
|
export default class Chart extends BaseControl {
|
|
254
256
|
/**
|
|
@@ -288,6 +290,7 @@ declare module "sap/chart/Chart" {
|
|
|
288
290
|
*
|
|
289
291
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.viz.ui5.controls.common.BaseControl.extend}.
|
|
290
292
|
*
|
|
293
|
+
*
|
|
291
294
|
* @returns Created class / constructor function
|
|
292
295
|
*/
|
|
293
296
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -308,6 +311,7 @@ declare module "sap/chart/Chart" {
|
|
|
308
311
|
/**
|
|
309
312
|
* Returns a metadata object for class sap.chart.Chart.
|
|
310
313
|
*
|
|
314
|
+
*
|
|
311
315
|
* @returns Metadata object describing this class
|
|
312
316
|
*/
|
|
313
317
|
static getMetadata(): ElementMetadata;
|
|
@@ -323,6 +327,7 @@ declare module "sap/chart/Chart" {
|
|
|
323
327
|
* be advised that time axis is supported with limited chart types (column, line, combination, stacked_column,
|
|
324
328
|
* bubble, scatter, dual_combination, vertical_bullet, waterfall).
|
|
325
329
|
*
|
|
330
|
+
*
|
|
326
331
|
* @returns Reference to this in order to allow method chaining
|
|
327
332
|
*/
|
|
328
333
|
addDimension(
|
|
@@ -334,6 +339,7 @@ declare module "sap/chart/Chart" {
|
|
|
334
339
|
/**
|
|
335
340
|
* Adds some measure to the aggregation {@link #getMeasures measures}.
|
|
336
341
|
*
|
|
342
|
+
*
|
|
337
343
|
* @returns Reference to `this` in order to allow method chaining
|
|
338
344
|
*/
|
|
339
345
|
addMeasure(
|
|
@@ -361,6 +367,7 @@ declare module "sap/chart/Chart" {
|
|
|
361
367
|
*
|
|
362
368
|
* Only works when selectionBehavior is "CATEGORY"
|
|
363
369
|
*
|
|
370
|
+
*
|
|
364
371
|
* @returns Reference to `this` in order to allow method chaining
|
|
365
372
|
*/
|
|
366
373
|
addSelectedCategories(
|
|
@@ -385,6 +392,7 @@ declare module "sap/chart/Chart" {
|
|
|
385
392
|
*
|
|
386
393
|
* Only works when selectionBehavior is "DATAPOINT"
|
|
387
394
|
*
|
|
395
|
+
*
|
|
388
396
|
* @returns Reference to `this` in order to allow method chaining
|
|
389
397
|
*/
|
|
390
398
|
addSelectedDataPoints(
|
|
@@ -412,6 +420,7 @@ declare module "sap/chart/Chart" {
|
|
|
412
420
|
*
|
|
413
421
|
* Only works when selectionBehavior is "SERIES"
|
|
414
422
|
*
|
|
423
|
+
*
|
|
415
424
|
* @returns Reference to `this` in order to allow method chaining
|
|
416
425
|
*/
|
|
417
426
|
addSelectedSeries(
|
|
@@ -429,6 +438,7 @@ declare module "sap/chart/Chart" {
|
|
|
429
438
|
* Event fires when certain data point(s) is(are) deselected, data context of deselected item(s) would be
|
|
430
439
|
* passed in
|
|
431
440
|
*
|
|
441
|
+
*
|
|
432
442
|
* @returns Reference to `this` in order to allow method chaining
|
|
433
443
|
*/
|
|
434
444
|
attachDeselectData(
|
|
@@ -455,6 +465,7 @@ declare module "sap/chart/Chart" {
|
|
|
455
465
|
* Event fires when certain data point(s) is(are) deselected, data context of deselected item(s) would be
|
|
456
466
|
* passed in
|
|
457
467
|
*
|
|
468
|
+
*
|
|
458
469
|
* @returns Reference to `this` in order to allow method chaining
|
|
459
470
|
*/
|
|
460
471
|
attachDeselectData(
|
|
@@ -475,6 +486,7 @@ declare module "sap/chart/Chart" {
|
|
|
475
486
|
*
|
|
476
487
|
* fired after a drill-down operation
|
|
477
488
|
*
|
|
489
|
+
*
|
|
478
490
|
* @returns Reference to `this` in order to allow method chaining
|
|
479
491
|
*/
|
|
480
492
|
attachDrilledDown(
|
|
@@ -500,6 +512,7 @@ declare module "sap/chart/Chart" {
|
|
|
500
512
|
*
|
|
501
513
|
* fired after a drill-down operation
|
|
502
514
|
*
|
|
515
|
+
*
|
|
503
516
|
* @returns Reference to `this` in order to allow method chaining
|
|
504
517
|
*/
|
|
505
518
|
attachDrilledDown(
|
|
@@ -520,6 +533,7 @@ declare module "sap/chart/Chart" {
|
|
|
520
533
|
*
|
|
521
534
|
* fired after a drill-up operation
|
|
522
535
|
*
|
|
536
|
+
*
|
|
523
537
|
* @returns Reference to `this` in order to allow method chaining
|
|
524
538
|
*/
|
|
525
539
|
attachDrilledUp(
|
|
@@ -545,6 +559,7 @@ declare module "sap/chart/Chart" {
|
|
|
545
559
|
*
|
|
546
560
|
* fired after a drill-up operation
|
|
547
561
|
*
|
|
562
|
+
*
|
|
548
563
|
* @returns Reference to `this` in order to allow method chaining
|
|
549
564
|
*/
|
|
550
565
|
attachDrilledUp(
|
|
@@ -567,6 +582,7 @@ declare module "sap/chart/Chart" {
|
|
|
567
582
|
* Event fires when drill stack changed. API that relies on drill stack like {@link #drillDown}, {@link #drillUp }
|
|
568
583
|
* shall be called in this event or after chart is rendered
|
|
569
584
|
*
|
|
585
|
+
*
|
|
570
586
|
* @returns Reference to `this` in order to allow method chaining
|
|
571
587
|
*/
|
|
572
588
|
attachDrillStackChanged(
|
|
@@ -594,6 +610,7 @@ declare module "sap/chart/Chart" {
|
|
|
594
610
|
* Event fires when drill stack changed. API that relies on drill stack like {@link #drillDown}, {@link #drillUp }
|
|
595
611
|
* shall be called in this event or after chart is rendered
|
|
596
612
|
*
|
|
613
|
+
*
|
|
597
614
|
* @returns Reference to `this` in order to allow method chaining
|
|
598
615
|
*/
|
|
599
616
|
attachDrillStackChanged(
|
|
@@ -615,6 +632,7 @@ declare module "sap/chart/Chart" {
|
|
|
615
632
|
*
|
|
616
633
|
* Event fires when the rendering ends.
|
|
617
634
|
*
|
|
635
|
+
*
|
|
618
636
|
* @returns Reference to `this` in order to allow method chaining
|
|
619
637
|
*/
|
|
620
638
|
attachRenderComplete(
|
|
@@ -641,6 +659,7 @@ declare module "sap/chart/Chart" {
|
|
|
641
659
|
*
|
|
642
660
|
* Event fires when the rendering ends.
|
|
643
661
|
*
|
|
662
|
+
*
|
|
644
663
|
* @returns Reference to `this` in order to allow method chaining
|
|
645
664
|
*/
|
|
646
665
|
attachRenderComplete(
|
|
@@ -662,6 +681,7 @@ declare module "sap/chart/Chart" {
|
|
|
662
681
|
* Event fires when certain data point(s) is(are) selected, data context of selected item(s) would be passed
|
|
663
682
|
* in.
|
|
664
683
|
*
|
|
684
|
+
*
|
|
665
685
|
* @returns Reference to `this` in order to allow method chaining
|
|
666
686
|
*/
|
|
667
687
|
attachSelectData(
|
|
@@ -688,6 +708,7 @@ declare module "sap/chart/Chart" {
|
|
|
688
708
|
* Event fires when certain data point(s) is(are) selected, data context of selected item(s) would be passed
|
|
689
709
|
* in.
|
|
690
710
|
*
|
|
711
|
+
*
|
|
691
712
|
* @returns Reference to `this` in order to allow method chaining
|
|
692
713
|
*/
|
|
693
714
|
attachSelectData(
|
|
@@ -709,6 +730,7 @@ declare module "sap/chart/Chart" {
|
|
|
709
730
|
*
|
|
710
731
|
* Event fires when fixed scale is turned off by adding or removing dimension
|
|
711
732
|
*
|
|
733
|
+
*
|
|
712
734
|
* @returns Reference to `this` in order to allow method chaining
|
|
713
735
|
*/
|
|
714
736
|
attachValueAxisFixedScaleTurnedOff(
|
|
@@ -735,6 +757,7 @@ declare module "sap/chart/Chart" {
|
|
|
735
757
|
*
|
|
736
758
|
* Event fires when fixed scale is turned off by adding or removing dimension
|
|
737
759
|
*
|
|
760
|
+
*
|
|
738
761
|
* @returns Reference to `this` in order to allow method chaining
|
|
739
762
|
*/
|
|
740
763
|
attachValueAxisFixedScaleTurnedOff(
|
|
@@ -756,6 +779,7 @@ declare module "sap/chart/Chart" {
|
|
|
756
779
|
* **NOTE:** If the {@link sap.ui.model.odata.v4.ODataListBinding list binding} is suspended, data related
|
|
757
780
|
* requests in Chart will be impacted, and the corresponding operations might not work as expected.
|
|
758
781
|
*
|
|
782
|
+
*
|
|
759
783
|
* @returns Reference to `this` in order to allow method chaining
|
|
760
784
|
*/
|
|
761
785
|
bindData(
|
|
@@ -773,12 +797,14 @@ declare module "sap/chart/Chart" {
|
|
|
773
797
|
* Destroys all the dimensions in the aggregation dimensions, only works when the property isAnalytical
|
|
774
798
|
* is true.
|
|
775
799
|
*
|
|
800
|
+
*
|
|
776
801
|
* @returns Reference to this in order to allow method chaining
|
|
777
802
|
*/
|
|
778
803
|
destroyDimensions(): this;
|
|
779
804
|
/**
|
|
780
805
|
* Destroys all the measures in the aggregation {@link #getMeasures measures}.
|
|
781
806
|
*
|
|
807
|
+
*
|
|
782
808
|
* @returns Reference to `this` in order to allow method chaining
|
|
783
809
|
*/
|
|
784
810
|
destroyMeasures(): this;
|
|
@@ -787,6 +813,7 @@ declare module "sap/chart/Chart" {
|
|
|
787
813
|
*
|
|
788
814
|
* The passed function and listener object must match the ones used for event registration.
|
|
789
815
|
*
|
|
816
|
+
*
|
|
790
817
|
* @returns Reference to `this` in order to allow method chaining
|
|
791
818
|
*/
|
|
792
819
|
detachDeselectData(
|
|
@@ -804,6 +831,7 @@ declare module "sap/chart/Chart" {
|
|
|
804
831
|
*
|
|
805
832
|
* The passed function and listener object must match the ones used for event registration.
|
|
806
833
|
*
|
|
834
|
+
*
|
|
807
835
|
* @returns Reference to `this` in order to allow method chaining
|
|
808
836
|
*/
|
|
809
837
|
detachDrilledDown(
|
|
@@ -821,6 +849,7 @@ declare module "sap/chart/Chart" {
|
|
|
821
849
|
*
|
|
822
850
|
* The passed function and listener object must match the ones used for event registration.
|
|
823
851
|
*
|
|
852
|
+
*
|
|
824
853
|
* @returns Reference to `this` in order to allow method chaining
|
|
825
854
|
*/
|
|
826
855
|
detachDrilledUp(
|
|
@@ -839,6 +868,7 @@ declare module "sap/chart/Chart" {
|
|
|
839
868
|
*
|
|
840
869
|
* The passed function and listener object must match the ones used for event registration.
|
|
841
870
|
*
|
|
871
|
+
*
|
|
842
872
|
* @returns Reference to `this` in order to allow method chaining
|
|
843
873
|
*/
|
|
844
874
|
detachDrillStackChanged(
|
|
@@ -857,6 +887,7 @@ declare module "sap/chart/Chart" {
|
|
|
857
887
|
*
|
|
858
888
|
* The passed function and listener object must match the ones used for event registration.
|
|
859
889
|
*
|
|
890
|
+
*
|
|
860
891
|
* @returns Reference to `this` in order to allow method chaining
|
|
861
892
|
*/
|
|
862
893
|
detachRenderComplete(
|
|
@@ -874,6 +905,7 @@ declare module "sap/chart/Chart" {
|
|
|
874
905
|
*
|
|
875
906
|
* The passed function and listener object must match the ones used for event registration.
|
|
876
907
|
*
|
|
908
|
+
*
|
|
877
909
|
* @returns Reference to `this` in order to allow method chaining
|
|
878
910
|
*/
|
|
879
911
|
detachSelectData(
|
|
@@ -892,6 +924,7 @@ declare module "sap/chart/Chart" {
|
|
|
892
924
|
*
|
|
893
925
|
* The passed function and listener object must match the ones used for event registration.
|
|
894
926
|
*
|
|
927
|
+
*
|
|
895
928
|
* @returns Reference to `this` in order to allow method chaining
|
|
896
929
|
*/
|
|
897
930
|
detachValueAxisFixedScaleTurnedOff(
|
|
@@ -935,6 +968,7 @@ declare module "sap/chart/Chart" {
|
|
|
935
968
|
* Export the current chart as SVG String. The chart is ready to be exported to SVG ONLY after the initialization
|
|
936
969
|
* is finished. Any attempt to export to SVG before that will result in an empty SVG string.
|
|
937
970
|
*
|
|
971
|
+
*
|
|
938
972
|
* @returns the SVG string of the current viz or empty svg if error occurs.
|
|
939
973
|
*/
|
|
940
974
|
exportToSVGString(
|
|
@@ -953,10 +987,10 @@ declare module "sap/chart/Chart" {
|
|
|
953
987
|
option?: Object
|
|
954
988
|
): string;
|
|
955
989
|
/**
|
|
956
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
957
|
-
*
|
|
958
990
|
* Fires event {@link #event:deselectData deselectData} to attached listeners.
|
|
959
991
|
*
|
|
992
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
993
|
+
*
|
|
960
994
|
* @returns Reference to `this` in order to allow method chaining
|
|
961
995
|
*/
|
|
962
996
|
fireDeselectData(
|
|
@@ -966,10 +1000,10 @@ declare module "sap/chart/Chart" {
|
|
|
966
1000
|
mParameters?: object
|
|
967
1001
|
): this;
|
|
968
1002
|
/**
|
|
969
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
970
|
-
*
|
|
971
1003
|
* Fires event {@link #event:drilledDown drilledDown} to attached listeners.
|
|
972
1004
|
*
|
|
1005
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1006
|
+
*
|
|
973
1007
|
* @returns Reference to `this` in order to allow method chaining
|
|
974
1008
|
*/
|
|
975
1009
|
fireDrilledDown(
|
|
@@ -979,10 +1013,10 @@ declare module "sap/chart/Chart" {
|
|
|
979
1013
|
mParameters?: Chart$DrilledDownEventParameters
|
|
980
1014
|
): this;
|
|
981
1015
|
/**
|
|
982
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
983
|
-
*
|
|
984
1016
|
* Fires event {@link #event:drilledUp drilledUp} to attached listeners.
|
|
985
1017
|
*
|
|
1018
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1019
|
+
*
|
|
986
1020
|
* @returns Reference to `this` in order to allow method chaining
|
|
987
1021
|
*/
|
|
988
1022
|
fireDrilledUp(
|
|
@@ -992,10 +1026,10 @@ declare module "sap/chart/Chart" {
|
|
|
992
1026
|
mParameters?: Chart$DrilledUpEventParameters
|
|
993
1027
|
): this;
|
|
994
1028
|
/**
|
|
995
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
996
|
-
*
|
|
997
1029
|
* Fires event {@link #event:drillStackChanged drillStackChanged} to attached listeners.
|
|
998
1030
|
*
|
|
1031
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1032
|
+
*
|
|
999
1033
|
* @returns Reference to `this` in order to allow method chaining
|
|
1000
1034
|
*/
|
|
1001
1035
|
fireDrillStackChanged(
|
|
@@ -1005,10 +1039,10 @@ declare module "sap/chart/Chart" {
|
|
|
1005
1039
|
mParameters?: object
|
|
1006
1040
|
): this;
|
|
1007
1041
|
/**
|
|
1008
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1009
|
-
*
|
|
1010
1042
|
* Fires event {@link #event:renderComplete renderComplete} to attached listeners.
|
|
1011
1043
|
*
|
|
1044
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1045
|
+
*
|
|
1012
1046
|
* @returns Reference to `this` in order to allow method chaining
|
|
1013
1047
|
*/
|
|
1014
1048
|
fireRenderComplete(
|
|
@@ -1018,10 +1052,10 @@ declare module "sap/chart/Chart" {
|
|
|
1018
1052
|
mParameters?: object
|
|
1019
1053
|
): this;
|
|
1020
1054
|
/**
|
|
1021
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1022
|
-
*
|
|
1023
1055
|
* Fires event {@link #event:selectData selectData} to attached listeners.
|
|
1024
1056
|
*
|
|
1057
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1058
|
+
*
|
|
1025
1059
|
* @returns Reference to `this` in order to allow method chaining
|
|
1026
1060
|
*/
|
|
1027
1061
|
fireSelectData(
|
|
@@ -1031,10 +1065,10 @@ declare module "sap/chart/Chart" {
|
|
|
1031
1065
|
mParameters?: object
|
|
1032
1066
|
): this;
|
|
1033
1067
|
/**
|
|
1034
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1035
|
-
*
|
|
1036
1068
|
* Fires event {@link #event:valueAxisFixedScaleTurnedOff valueAxisFixedScaleTurnedOff} to attached listeners.
|
|
1037
1069
|
*
|
|
1070
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1071
|
+
*
|
|
1038
1072
|
* @returns Reference to `this` in order to allow method chaining
|
|
1039
1073
|
*/
|
|
1040
1074
|
fireValueAxisFixedScaleTurnedOff(
|
|
@@ -1078,6 +1112,7 @@ declare module "sap/chart/Chart" {
|
|
|
1078
1112
|
* ```
|
|
1079
1113
|
*
|
|
1080
1114
|
*
|
|
1115
|
+
*
|
|
1081
1116
|
* @returns Value of property `activeColoring`
|
|
1082
1117
|
*/
|
|
1083
1118
|
getActiveColoring(): object;
|
|
@@ -1106,6 +1141,7 @@ declare module "sap/chart/Chart" {
|
|
|
1106
1141
|
* ```
|
|
1107
1142
|
*
|
|
1108
1143
|
*
|
|
1144
|
+
*
|
|
1109
1145
|
* @returns chart types and errors for unavailable chart types, grouped by availability
|
|
1110
1146
|
*/
|
|
1111
1147
|
getAvailableChartTypes(): object;
|
|
@@ -1116,6 +1152,7 @@ declare module "sap/chart/Chart" {
|
|
|
1116
1152
|
*
|
|
1117
1153
|
* Default value is `"bar"`.
|
|
1118
1154
|
*
|
|
1155
|
+
*
|
|
1119
1156
|
* @returns Value of property `chartType`
|
|
1120
1157
|
*/
|
|
1121
1158
|
getChartType(): string;
|
|
@@ -1148,6 +1185,7 @@ declare module "sap/chart/Chart" {
|
|
|
1148
1185
|
* {@link sap.chart.ColoringType.Emphasis}
|
|
1149
1186
|
* for detailed usage
|
|
1150
1187
|
*
|
|
1188
|
+
*
|
|
1151
1189
|
* @returns Value of property `colorings`
|
|
1152
1190
|
*/
|
|
1153
1191
|
getColorings(): object;
|
|
@@ -1156,6 +1194,7 @@ declare module "sap/chart/Chart" {
|
|
|
1156
1194
|
*
|
|
1157
1195
|
* Chart custom messages.
|
|
1158
1196
|
*
|
|
1197
|
+
*
|
|
1159
1198
|
* @returns Value of property `customMessages`
|
|
1160
1199
|
*/
|
|
1161
1200
|
getCustomMessages(): object;
|
|
@@ -1167,6 +1206,7 @@ declare module "sap/chart/Chart" {
|
|
|
1167
1206
|
/**
|
|
1168
1207
|
* Return Dimension with the given name.
|
|
1169
1208
|
*
|
|
1209
|
+
*
|
|
1170
1210
|
* @returns Dimension of the specified name.
|
|
1171
1211
|
*/
|
|
1172
1212
|
getDimensionByName(
|
|
@@ -1187,6 +1227,7 @@ declare module "sap/chart/Chart" {
|
|
|
1187
1227
|
* NOTE: If {@link sap.chart.data.HierarchyDimension} is used when calling {@link #setVisibleDimensions},
|
|
1188
1228
|
* drill stack could not be determined synchronously. Listen to `drillStackChanged` event instead.
|
|
1189
1229
|
*
|
|
1230
|
+
*
|
|
1190
1231
|
* @returns array of drill state objects
|
|
1191
1232
|
*/
|
|
1192
1233
|
getDrillStack(): Object[];
|
|
@@ -1208,6 +1249,7 @@ declare module "sap/chart/Chart" {
|
|
|
1208
1249
|
*
|
|
1209
1250
|
* Default value is `false`.
|
|
1210
1251
|
*
|
|
1252
|
+
*
|
|
1211
1253
|
* @returns Value of property `enablePagination`
|
|
1212
1254
|
*/
|
|
1213
1255
|
getEnablePagination(): boolean;
|
|
@@ -1218,6 +1260,7 @@ declare module "sap/chart/Chart" {
|
|
|
1218
1260
|
*
|
|
1219
1261
|
* Default value is `false`.
|
|
1220
1262
|
*
|
|
1263
|
+
*
|
|
1221
1264
|
* @returns Value of property `enableScalingFactor`
|
|
1222
1265
|
*/
|
|
1223
1266
|
getEnableScalingFactor(): boolean;
|
|
@@ -1228,6 +1271,7 @@ declare module "sap/chart/Chart" {
|
|
|
1228
1271
|
*
|
|
1229
1272
|
* Default value is `false`.
|
|
1230
1273
|
*
|
|
1274
|
+
*
|
|
1231
1275
|
* @returns Value of property `enableStableColor`
|
|
1232
1276
|
*/
|
|
1233
1277
|
getEnableStableColor(): boolean;
|
|
@@ -1239,6 +1283,7 @@ declare module "sap/chart/Chart" {
|
|
|
1239
1283
|
*
|
|
1240
1284
|
* Default value is `true`.
|
|
1241
1285
|
*
|
|
1286
|
+
*
|
|
1242
1287
|
* @returns Value of property `hideSharedInformation`
|
|
1243
1288
|
*/
|
|
1244
1289
|
getHideSharedInformation(): boolean;
|
|
@@ -1252,6 +1297,7 @@ declare module "sap/chart/Chart" {
|
|
|
1252
1297
|
*
|
|
1253
1298
|
* Default value is `[]`.
|
|
1254
1299
|
*
|
|
1300
|
+
*
|
|
1255
1301
|
* @returns Value of property `inResultDimensions`
|
|
1256
1302
|
*/
|
|
1257
1303
|
getInResultDimensions(): string[];
|
|
@@ -1263,12 +1309,14 @@ declare module "sap/chart/Chart" {
|
|
|
1263
1309
|
* The property isAnalytical will programmatically set according to data source. When the data source has
|
|
1264
1310
|
* an aggregated entity set, isAnalytical is true, otherwise it's false.
|
|
1265
1311
|
*
|
|
1312
|
+
*
|
|
1266
1313
|
* @returns Value of property isAnalytical
|
|
1267
1314
|
*/
|
|
1268
1315
|
getIsAnalytical(): boolean;
|
|
1269
1316
|
/**
|
|
1270
1317
|
* Return Measure with the given name.
|
|
1271
1318
|
*
|
|
1319
|
+
*
|
|
1272
1320
|
* @returns Measure of the specified name.
|
|
1273
1321
|
*/
|
|
1274
1322
|
getMeasureByName(
|
|
@@ -1286,6 +1334,7 @@ declare module "sap/chart/Chart" {
|
|
|
1286
1334
|
/**
|
|
1287
1335
|
* return the scaling factor. Or return null when scaling factor is disable.
|
|
1288
1336
|
*
|
|
1337
|
+
*
|
|
1289
1338
|
* @returns A scaling factor object or null
|
|
1290
1339
|
*/
|
|
1291
1340
|
getScalingFactor(): object;
|
|
@@ -1308,6 +1357,7 @@ declare module "sap/chart/Chart" {
|
|
|
1308
1357
|
*
|
|
1309
1358
|
* Return 0 and empty list if selectionBehavior is not "CATEGORY"
|
|
1310
1359
|
*
|
|
1360
|
+
*
|
|
1311
1361
|
* @returns a total number of selected data points, and an array of category objects for selected categories.
|
|
1312
1362
|
*/
|
|
1313
1363
|
getSelectedCategories(): object;
|
|
@@ -1335,6 +1385,7 @@ declare module "sap/chart/Chart" {
|
|
|
1335
1385
|
*
|
|
1336
1386
|
* Only works when selectionBehavior is "DATAPOINT"
|
|
1337
1387
|
*
|
|
1388
|
+
*
|
|
1338
1389
|
* @returns a total number of selected data points, and an array of datapoint objects.
|
|
1339
1390
|
*/
|
|
1340
1391
|
getSelectedDataPoints(): object;
|
|
@@ -1357,6 +1408,7 @@ declare module "sap/chart/Chart" {
|
|
|
1357
1408
|
*
|
|
1358
1409
|
* Return 0 and empty list if selectionBehavior is not "SERIES"
|
|
1359
1410
|
*
|
|
1411
|
+
*
|
|
1360
1412
|
* @returns object containing a total number of selected data points, and an array of series objects for
|
|
1361
1413
|
* selected series.
|
|
1362
1414
|
*/
|
|
@@ -1368,6 +1420,7 @@ declare module "sap/chart/Chart" {
|
|
|
1368
1420
|
*
|
|
1369
1421
|
* Default value is `DataPoint`.
|
|
1370
1422
|
*
|
|
1423
|
+
*
|
|
1371
1424
|
* @returns Value of property `selectionBehavior`
|
|
1372
1425
|
*/
|
|
1373
1426
|
getSelectionBehavior(): SelectionBehavior;
|
|
@@ -1378,12 +1431,14 @@ declare module "sap/chart/Chart" {
|
|
|
1378
1431
|
*
|
|
1379
1432
|
* Default value is `Multi`.
|
|
1380
1433
|
*
|
|
1434
|
+
*
|
|
1381
1435
|
* @returns Value of property `selectionMode`
|
|
1382
1436
|
*/
|
|
1383
1437
|
getSelectionMode(): SelectionMode;
|
|
1384
1438
|
/**
|
|
1385
1439
|
* Return all TimeDimensions from current Dimensions.
|
|
1386
1440
|
*
|
|
1441
|
+
*
|
|
1387
1442
|
* @returns Dimensions which are instance of TimeDimension.
|
|
1388
1443
|
*/
|
|
1389
1444
|
getTimeDimensions(): any[];
|
|
@@ -1393,6 +1448,7 @@ declare module "sap/chart/Chart" {
|
|
|
1393
1448
|
* Configuration for initialization to VizControl. This property could only set via settings parameter in
|
|
1394
1449
|
* Constructor.
|
|
1395
1450
|
*
|
|
1451
|
+
*
|
|
1396
1452
|
* @returns Value of property `uiConfig`
|
|
1397
1453
|
*/
|
|
1398
1454
|
getUiConfig(): object;
|
|
@@ -1473,6 +1529,7 @@ declare module "sap/chart/Chart" {
|
|
|
1473
1529
|
* {@link sap.chart.ScaleBehavior.FixedScale}
|
|
1474
1530
|
* for detailed usage
|
|
1475
1531
|
*
|
|
1532
|
+
*
|
|
1476
1533
|
* @returns Value of property `valueAxisScale`
|
|
1477
1534
|
*/
|
|
1478
1535
|
getValueAxisScale(): object;
|
|
@@ -1486,6 +1543,7 @@ declare module "sap/chart/Chart" {
|
|
|
1486
1543
|
*
|
|
1487
1544
|
* Default value is `[]`.
|
|
1488
1545
|
*
|
|
1546
|
+
*
|
|
1489
1547
|
* @returns Value of property `visibleDimensions`
|
|
1490
1548
|
*/
|
|
1491
1549
|
getVisibleDimensions(): string[];
|
|
@@ -1498,6 +1556,7 @@ declare module "sap/chart/Chart" {
|
|
|
1498
1556
|
*
|
|
1499
1557
|
* Default value is `[]`.
|
|
1500
1558
|
*
|
|
1559
|
+
*
|
|
1501
1560
|
* @returns Value of property `visibleMeasures`
|
|
1502
1561
|
*/
|
|
1503
1562
|
getVisibleMeasures(): string[];
|
|
@@ -1507,6 +1566,7 @@ declare module "sap/chart/Chart" {
|
|
|
1507
1566
|
* Refer to chart property documentation for more
|
|
1508
1567
|
* details.
|
|
1509
1568
|
*
|
|
1569
|
+
*
|
|
1510
1570
|
* @returns the Chart properties object
|
|
1511
1571
|
*/
|
|
1512
1572
|
getVizProperties(): object;
|
|
@@ -1516,18 +1576,18 @@ declare module "sap/chart/Chart" {
|
|
|
1516
1576
|
* Refer to chart property documentation for more
|
|
1517
1577
|
* details.
|
|
1518
1578
|
*
|
|
1579
|
+
*
|
|
1519
1580
|
* @returns an array of scale objects
|
|
1520
1581
|
*/
|
|
1521
1582
|
getVizScales(): object[];
|
|
1522
1583
|
/**
|
|
1523
1584
|
* Get the UID for Chart. It supports other controls to connect to a viz instance.
|
|
1524
1585
|
*
|
|
1586
|
+
*
|
|
1525
1587
|
* @returns Chart UID
|
|
1526
1588
|
*/
|
|
1527
1589
|
getVizUid(): string;
|
|
1528
1590
|
/**
|
|
1529
|
-
* @since 1.54
|
|
1530
|
-
*
|
|
1531
1591
|
* Get zoom information.
|
|
1532
1592
|
*
|
|
1533
1593
|
* Return the zooming enablement and current zooming level of chart.
|
|
@@ -1544,6 +1604,8 @@ declare module "sap/chart/Chart" {
|
|
|
1544
1604
|
* ```
|
|
1545
1605
|
*
|
|
1546
1606
|
*
|
|
1607
|
+
* @since 1.54
|
|
1608
|
+
*
|
|
1547
1609
|
* @returns The zooming enablement and current zooming level of chart.The zooming level is between 0 and
|
|
1548
1610
|
* 1, and null when zooming isn't applicable.
|
|
1549
1611
|
*/
|
|
@@ -1557,6 +1619,7 @@ declare module "sap/chart/Chart" {
|
|
|
1557
1619
|
* Checks for the provided `sap.chart.data.Dimension` in the aggregation {@link #getDimensions dimensions}.
|
|
1558
1620
|
* and returns its index if found or -1 otherwise.
|
|
1559
1621
|
*
|
|
1622
|
+
*
|
|
1560
1623
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
1561
1624
|
*/
|
|
1562
1625
|
indexOfDimension(
|
|
@@ -1569,6 +1632,7 @@ declare module "sap/chart/Chart" {
|
|
|
1569
1632
|
* Checks for the provided `sap.chart.data.Measure` in the aggregation {@link #getMeasures measures}. and
|
|
1570
1633
|
* returns its index if found or -1 otherwise.
|
|
1571
1634
|
*
|
|
1635
|
+
*
|
|
1572
1636
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
1573
1637
|
*/
|
|
1574
1638
|
indexOfMeasure(
|
|
@@ -1585,6 +1649,7 @@ declare module "sap/chart/Chart" {
|
|
|
1585
1649
|
/**
|
|
1586
1650
|
* Inserts a dimension into the aggregation {@link #getDimensions dimensions}.
|
|
1587
1651
|
*
|
|
1652
|
+
*
|
|
1588
1653
|
* @returns Reference to `this` in order to allow method chaining
|
|
1589
1654
|
*/
|
|
1590
1655
|
insertDimension(
|
|
@@ -1602,6 +1667,7 @@ declare module "sap/chart/Chart" {
|
|
|
1602
1667
|
/**
|
|
1603
1668
|
* Inserts a measure into the aggregation {@link #getMeasures measures}.
|
|
1604
1669
|
*
|
|
1670
|
+
*
|
|
1605
1671
|
* @returns Reference to `this` in order to allow method chaining
|
|
1606
1672
|
*/
|
|
1607
1673
|
insertMeasure(
|
|
@@ -1627,6 +1693,7 @@ declare module "sap/chart/Chart" {
|
|
|
1627
1693
|
*
|
|
1628
1694
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
1629
1695
|
*
|
|
1696
|
+
*
|
|
1630
1697
|
* @returns An array of the removed elements (might be empty)
|
|
1631
1698
|
*/
|
|
1632
1699
|
removeAllDimensions(): Dimension[];
|
|
@@ -1635,6 +1702,7 @@ declare module "sap/chart/Chart" {
|
|
|
1635
1702
|
*
|
|
1636
1703
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
1637
1704
|
*
|
|
1705
|
+
*
|
|
1638
1706
|
* @returns An array of the removed elements (might be empty)
|
|
1639
1707
|
*/
|
|
1640
1708
|
removeAllMeasures(): Measure[];
|
|
@@ -1647,6 +1715,7 @@ declare module "sap/chart/Chart" {
|
|
|
1647
1715
|
* Removes a dimension from the aggregation dimensions, remove a visible dimension is unsupported when the
|
|
1648
1716
|
* property isAnalytical is false.
|
|
1649
1717
|
*
|
|
1718
|
+
*
|
|
1650
1719
|
* @returns The removed dimension or null
|
|
1651
1720
|
*/
|
|
1652
1721
|
removeDimension(
|
|
@@ -1658,6 +1727,7 @@ declare module "sap/chart/Chart" {
|
|
|
1658
1727
|
/**
|
|
1659
1728
|
* Removes a measure from the aggregation {@link #getMeasures measures}.
|
|
1660
1729
|
*
|
|
1730
|
+
*
|
|
1661
1731
|
* @returns The removed measure or `null`
|
|
1662
1732
|
*/
|
|
1663
1733
|
removeMeasure(
|
|
@@ -1685,6 +1755,7 @@ declare module "sap/chart/Chart" {
|
|
|
1685
1755
|
*
|
|
1686
1756
|
* Only works when selectionBehavior is "CATEGORY"
|
|
1687
1757
|
*
|
|
1758
|
+
*
|
|
1688
1759
|
* @returns Reference to `this` in order to allow method chaining
|
|
1689
1760
|
*/
|
|
1690
1761
|
removeSelectedCategories(
|
|
@@ -1709,6 +1780,7 @@ declare module "sap/chart/Chart" {
|
|
|
1709
1780
|
*
|
|
1710
1781
|
* Only works when selectionBehavior is "DATAPOINT"
|
|
1711
1782
|
*
|
|
1783
|
+
*
|
|
1712
1784
|
* @returns Reference to `this` in order to allow method chaining
|
|
1713
1785
|
*/
|
|
1714
1786
|
removeSelectedDataPoints(
|
|
@@ -1736,6 +1808,7 @@ declare module "sap/chart/Chart" {
|
|
|
1736
1808
|
*
|
|
1737
1809
|
* Only works when selectionBehavior is "SERIES"
|
|
1738
1810
|
*
|
|
1811
|
+
*
|
|
1739
1812
|
* @returns Reference to `this` in order to allow method chaining
|
|
1740
1813
|
*/
|
|
1741
1814
|
removeSelectedSeries(
|
|
@@ -1747,6 +1820,7 @@ declare module "sap/chart/Chart" {
|
|
|
1747
1820
|
/**
|
|
1748
1821
|
* Reset to visible layout.
|
|
1749
1822
|
*
|
|
1823
|
+
*
|
|
1750
1824
|
* @returns Reference to `this` in order to allow method chaining
|
|
1751
1825
|
*/
|
|
1752
1826
|
resetLayout(): this;
|
|
@@ -1787,6 +1861,7 @@ declare module "sap/chart/Chart" {
|
|
|
1787
1861
|
*
|
|
1788
1862
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1789
1863
|
*
|
|
1864
|
+
*
|
|
1790
1865
|
* @returns Reference to `this` in order to allow method chaining
|
|
1791
1866
|
*/
|
|
1792
1867
|
setActiveColoring(
|
|
@@ -1804,6 +1879,7 @@ declare module "sap/chart/Chart" {
|
|
|
1804
1879
|
*
|
|
1805
1880
|
* Default value is `"bar"`.
|
|
1806
1881
|
*
|
|
1882
|
+
*
|
|
1807
1883
|
* @returns Reference to `this` in order to allow method chaining
|
|
1808
1884
|
*/
|
|
1809
1885
|
setChartType(
|
|
@@ -1843,6 +1919,7 @@ declare module "sap/chart/Chart" {
|
|
|
1843
1919
|
*
|
|
1844
1920
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1845
1921
|
*
|
|
1922
|
+
*
|
|
1846
1923
|
* @returns Reference to `this` in order to allow method chaining
|
|
1847
1924
|
*/
|
|
1848
1925
|
setColorings(
|
|
@@ -1898,6 +1975,7 @@ declare module "sap/chart/Chart" {
|
|
|
1898
1975
|
*
|
|
1899
1976
|
* Default value is false.
|
|
1900
1977
|
*
|
|
1978
|
+
*
|
|
1901
1979
|
* @returns Reference to this in order to allow method chaining
|
|
1902
1980
|
*/
|
|
1903
1981
|
setEnablePagination(
|
|
@@ -1915,6 +1993,7 @@ declare module "sap/chart/Chart" {
|
|
|
1915
1993
|
*
|
|
1916
1994
|
* Default value is `false`.
|
|
1917
1995
|
*
|
|
1996
|
+
*
|
|
1918
1997
|
* @returns Reference to `this` in order to allow method chaining
|
|
1919
1998
|
*/
|
|
1920
1999
|
setEnableScalingFactor(
|
|
@@ -1932,6 +2011,7 @@ declare module "sap/chart/Chart" {
|
|
|
1932
2011
|
*
|
|
1933
2012
|
* Default value is `false`.
|
|
1934
2013
|
*
|
|
2014
|
+
*
|
|
1935
2015
|
* @returns Reference to `this` in order to allow method chaining
|
|
1936
2016
|
*/
|
|
1937
2017
|
setEnableStableColor(
|
|
@@ -1950,6 +2030,7 @@ declare module "sap/chart/Chart" {
|
|
|
1950
2030
|
*
|
|
1951
2031
|
* Default value is `true`.
|
|
1952
2032
|
*
|
|
2033
|
+
*
|
|
1953
2034
|
* @returns Reference to `this` in order to allow method chaining
|
|
1954
2035
|
*/
|
|
1955
2036
|
setHideSharedInformation(
|
|
@@ -1970,6 +2051,7 @@ declare module "sap/chart/Chart" {
|
|
|
1970
2051
|
*
|
|
1971
2052
|
* Default value is `[]`.
|
|
1972
2053
|
*
|
|
2054
|
+
*
|
|
1973
2055
|
* @returns Reference to `this` in order to allow method chaining
|
|
1974
2056
|
*/
|
|
1975
2057
|
setInResultDimensions(
|
|
@@ -2001,6 +2083,7 @@ declare module "sap/chart/Chart" {
|
|
|
2001
2083
|
*
|
|
2002
2084
|
* Only works when selectionBehavior is "CATEGORY"
|
|
2003
2085
|
*
|
|
2086
|
+
*
|
|
2004
2087
|
* @returns Reference to `this` in order to allow method chaining
|
|
2005
2088
|
*/
|
|
2006
2089
|
setSelectedCategories(
|
|
@@ -2025,6 +2108,7 @@ declare module "sap/chart/Chart" {
|
|
|
2025
2108
|
*
|
|
2026
2109
|
* Only works when selectionBehavior is "DATAPOINT"
|
|
2027
2110
|
*
|
|
2111
|
+
*
|
|
2028
2112
|
* @returns Reference to `this` in order to allow method chaining
|
|
2029
2113
|
*/
|
|
2030
2114
|
setSelectedDataPoints(
|
|
@@ -2052,6 +2136,7 @@ declare module "sap/chart/Chart" {
|
|
|
2052
2136
|
*
|
|
2053
2137
|
* Only works when selectionBehavior is "SERIES"
|
|
2054
2138
|
*
|
|
2139
|
+
*
|
|
2055
2140
|
* @returns Reference to `this` in order to allow method chaining
|
|
2056
2141
|
*/
|
|
2057
2142
|
setSelectedSeries(
|
|
@@ -2069,6 +2154,7 @@ declare module "sap/chart/Chart" {
|
|
|
2069
2154
|
*
|
|
2070
2155
|
* Default value is `DataPoint`.
|
|
2071
2156
|
*
|
|
2157
|
+
*
|
|
2072
2158
|
* @returns Reference to `this` in order to allow method chaining
|
|
2073
2159
|
*/
|
|
2074
2160
|
setSelectionBehavior(
|
|
@@ -2086,6 +2172,7 @@ declare module "sap/chart/Chart" {
|
|
|
2086
2172
|
*
|
|
2087
2173
|
* Default value is `Multi`.
|
|
2088
2174
|
*
|
|
2175
|
+
*
|
|
2089
2176
|
* @returns Reference to `this` in order to allow method chaining
|
|
2090
2177
|
*/
|
|
2091
2178
|
setSelectionMode(
|
|
@@ -2198,6 +2285,7 @@ declare module "sap/chart/Chart" {
|
|
|
2198
2285
|
*
|
|
2199
2286
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2200
2287
|
*
|
|
2288
|
+
*
|
|
2201
2289
|
* @returns Reference to `this` in order to allow method chaining
|
|
2202
2290
|
*/
|
|
2203
2291
|
setValueAxisScale(
|
|
@@ -2218,6 +2306,7 @@ declare module "sap/chart/Chart" {
|
|
|
2218
2306
|
*
|
|
2219
2307
|
* Default value is [].
|
|
2220
2308
|
*
|
|
2309
|
+
*
|
|
2221
2310
|
* @returns Reference to this in order to allow method chaining
|
|
2222
2311
|
*/
|
|
2223
2312
|
setVisibleDimensions(
|
|
@@ -2237,6 +2326,7 @@ declare module "sap/chart/Chart" {
|
|
|
2237
2326
|
*
|
|
2238
2327
|
* Default value is `[]`.
|
|
2239
2328
|
*
|
|
2329
|
+
*
|
|
2240
2330
|
* @returns Reference to `this` in order to allow method chaining
|
|
2241
2331
|
*/
|
|
2242
2332
|
setVisibleMeasures(
|
|
@@ -2276,6 +2366,7 @@ declare module "sap/chart/Chart" {
|
|
|
2276
2366
|
/**
|
|
2277
2367
|
* Unbinds aggregation {@link #getData data} from model data.
|
|
2278
2368
|
*
|
|
2369
|
+
*
|
|
2279
2370
|
* @returns Reference to `this` in order to allow method chaining
|
|
2280
2371
|
*/
|
|
2281
2372
|
unbindData(): this;
|
|
@@ -3592,8 +3683,6 @@ declare module "sap/chart/data/Dimension" {
|
|
|
3592
3683
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
3593
3684
|
|
|
3594
3685
|
/**
|
|
3595
|
-
* @since 1.32.0
|
|
3596
|
-
*
|
|
3597
3686
|
* Definition of a single dimension in a chart
|
|
3598
3687
|
*
|
|
3599
3688
|
* chartType binding rules pie, donut All
|
|
@@ -3601,6 +3690,8 @@ declare module "sap/chart/data/Dimension" {
|
|
|
3601
3690
|
* with role category are assigned to feed uid “shape”. heatmap All dimensions
|
|
3602
3691
|
* with role “series” and “category2” are assigned to the feed uid “categoryAxis2”. treemap
|
|
3603
3692
|
* All dimensions are assigned to the feed uid “categoryAxis” in the default sequence.
|
|
3693
|
+
*
|
|
3694
|
+
* @since 1.32.0
|
|
3604
3695
|
*/
|
|
3605
3696
|
export default class Dimension extends UI5Element {
|
|
3606
3697
|
/**
|
|
@@ -3640,6 +3731,7 @@ declare module "sap/chart/data/Dimension" {
|
|
|
3640
3731
|
*
|
|
3641
3732
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
3642
3733
|
*
|
|
3734
|
+
*
|
|
3643
3735
|
* @returns Created class / constructor function
|
|
3644
3736
|
*/
|
|
3645
3737
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -3660,6 +3752,7 @@ declare module "sap/chart/data/Dimension" {
|
|
|
3660
3752
|
/**
|
|
3661
3753
|
* Returns a metadata object for class sap.chart.data.Dimension.
|
|
3662
3754
|
*
|
|
3755
|
+
*
|
|
3663
3756
|
* @returns Metadata object describing this class
|
|
3664
3757
|
*/
|
|
3665
3758
|
static getMetadata(): ElementMetadata;
|
|
@@ -3671,6 +3764,7 @@ declare module "sap/chart/data/Dimension" {
|
|
|
3671
3764
|
*
|
|
3672
3765
|
* Default value is `true`.
|
|
3673
3766
|
*
|
|
3767
|
+
*
|
|
3674
3768
|
* @returns Value of property `displayText`
|
|
3675
3769
|
*/
|
|
3676
3770
|
getDisplayText(): boolean;
|
|
@@ -3683,6 +3777,7 @@ declare module "sap/chart/data/Dimension" {
|
|
|
3683
3777
|
* **NOTE:** This property was bound internally if automatically created via metadata of oData service and
|
|
3684
3778
|
* please call "unbindProperty" before setting.
|
|
3685
3779
|
*
|
|
3780
|
+
*
|
|
3686
3781
|
* @returns Value of property `label`
|
|
3687
3782
|
*/
|
|
3688
3783
|
getLabel(): string;
|
|
@@ -3691,6 +3786,7 @@ declare module "sap/chart/data/Dimension" {
|
|
|
3691
3786
|
*
|
|
3692
3787
|
* Property in the "data" model holding the (always unique) Dimension key.
|
|
3693
3788
|
*
|
|
3789
|
+
*
|
|
3694
3790
|
* @returns Value of property `name`
|
|
3695
3791
|
*/
|
|
3696
3792
|
getName(): string;
|
|
@@ -3716,6 +3812,7 @@ declare module "sap/chart/data/Dimension" {
|
|
|
3716
3812
|
*
|
|
3717
3813
|
* Default value is `"category"`.
|
|
3718
3814
|
*
|
|
3815
|
+
*
|
|
3719
3816
|
* @returns Value of property `role`
|
|
3720
3817
|
*/
|
|
3721
3818
|
getRole(): string;
|
|
@@ -3726,6 +3823,7 @@ declare module "sap/chart/data/Dimension" {
|
|
|
3726
3823
|
* specified, this property takes precedence over the "textProperty" property of the Dimension. Dimension
|
|
3727
3824
|
* key value and the corresponding text will be passed to the supplied function as parameters.
|
|
3728
3825
|
*
|
|
3826
|
+
*
|
|
3729
3827
|
* @returns Value of property `textFormatter`
|
|
3730
3828
|
*/
|
|
3731
3829
|
getTextFormatter(): Function;
|
|
@@ -3738,6 +3836,7 @@ declare module "sap/chart/data/Dimension" {
|
|
|
3738
3836
|
* **NOTE:** This property was bound internally if automatically created via metadata of oData service and
|
|
3739
3837
|
* please call "unbindProperty" before setting.
|
|
3740
3838
|
*
|
|
3839
|
+
*
|
|
3741
3840
|
* @returns Value of property `textProperty`
|
|
3742
3841
|
*/
|
|
3743
3842
|
getTextProperty(): string;
|
|
@@ -3751,6 +3850,7 @@ declare module "sap/chart/data/Dimension" {
|
|
|
3751
3850
|
*
|
|
3752
3851
|
* Default value is `true`.
|
|
3753
3852
|
*
|
|
3853
|
+
*
|
|
3754
3854
|
* @returns Reference to `this` in order to allow method chaining
|
|
3755
3855
|
*/
|
|
3756
3856
|
setDisplayText(
|
|
@@ -3770,6 +3870,7 @@ declare module "sap/chart/data/Dimension" {
|
|
|
3770
3870
|
*
|
|
3771
3871
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3772
3872
|
*
|
|
3873
|
+
*
|
|
3773
3874
|
* @returns Reference to `this` in order to allow method chaining
|
|
3774
3875
|
*/
|
|
3775
3876
|
setLabel(
|
|
@@ -3785,6 +3886,7 @@ declare module "sap/chart/data/Dimension" {
|
|
|
3785
3886
|
*
|
|
3786
3887
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3787
3888
|
*
|
|
3889
|
+
*
|
|
3788
3890
|
* @returns Reference to `this` in order to allow method chaining
|
|
3789
3891
|
*/
|
|
3790
3892
|
setName(
|
|
@@ -3817,6 +3919,7 @@ declare module "sap/chart/data/Dimension" {
|
|
|
3817
3919
|
*
|
|
3818
3920
|
* Default value is `"category"`.
|
|
3819
3921
|
*
|
|
3922
|
+
*
|
|
3820
3923
|
* @returns Reference to `this` in order to allow method chaining
|
|
3821
3924
|
*/
|
|
3822
3925
|
setRole(
|
|
@@ -3834,6 +3937,7 @@ declare module "sap/chart/data/Dimension" {
|
|
|
3834
3937
|
*
|
|
3835
3938
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3836
3939
|
*
|
|
3940
|
+
*
|
|
3837
3941
|
* @returns Reference to `this` in order to allow method chaining
|
|
3838
3942
|
*/
|
|
3839
3943
|
setTextFormatter(
|
|
@@ -3853,6 +3957,7 @@ declare module "sap/chart/data/Dimension" {
|
|
|
3853
3957
|
*
|
|
3854
3958
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3855
3959
|
*
|
|
3960
|
+
*
|
|
3856
3961
|
* @returns Reference to `this` in order to allow method chaining
|
|
3857
3962
|
*/
|
|
3858
3963
|
setTextProperty(
|
|
@@ -3959,9 +4064,9 @@ declare module "sap/chart/data/HierarchyDimension" {
|
|
|
3959
4064
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
3960
4065
|
|
|
3961
4066
|
/**
|
|
3962
|
-
* @since 1.54.0
|
|
3963
|
-
*
|
|
3964
4067
|
* Definition of a single hierarchy dimension in a chart
|
|
4068
|
+
*
|
|
4069
|
+
* @since 1.54.0
|
|
3965
4070
|
*/
|
|
3966
4071
|
export default class HierarchyDimension extends Dimension {
|
|
3967
4072
|
/**
|
|
@@ -4001,6 +4106,7 @@ declare module "sap/chart/data/HierarchyDimension" {
|
|
|
4001
4106
|
*
|
|
4002
4107
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.chart.data.Dimension.extend}.
|
|
4003
4108
|
*
|
|
4109
|
+
*
|
|
4004
4110
|
* @returns Created class / constructor function
|
|
4005
4111
|
*/
|
|
4006
4112
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -4021,6 +4127,7 @@ declare module "sap/chart/data/HierarchyDimension" {
|
|
|
4021
4127
|
/**
|
|
4022
4128
|
* Returns a metadata object for class sap.chart.data.HierarchyDimension.
|
|
4023
4129
|
*
|
|
4130
|
+
*
|
|
4024
4131
|
* @returns Metadata object describing this class
|
|
4025
4132
|
*/
|
|
4026
4133
|
static getMetadata(): ElementMetadata;
|
|
@@ -4033,6 +4140,7 @@ declare module "sap/chart/data/HierarchyDimension" {
|
|
|
4033
4140
|
*
|
|
4034
4141
|
* Default value is `0`.
|
|
4035
4142
|
*
|
|
4143
|
+
*
|
|
4036
4144
|
* @returns Value of property `level`
|
|
4037
4145
|
*/
|
|
4038
4146
|
getLevel(): int;
|
|
@@ -4047,6 +4155,7 @@ declare module "sap/chart/data/HierarchyDimension" {
|
|
|
4047
4155
|
*
|
|
4048
4156
|
* Default value is `0`.
|
|
4049
4157
|
*
|
|
4158
|
+
*
|
|
4050
4159
|
* @returns Reference to `this` in order to allow method chaining
|
|
4051
4160
|
*/
|
|
4052
4161
|
setLevel(
|
|
@@ -4077,8 +4186,6 @@ declare module "sap/chart/data/Measure" {
|
|
|
4077
4186
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
4078
4187
|
|
|
4079
4188
|
/**
|
|
4080
|
-
* @since 1.32.0
|
|
4081
|
-
*
|
|
4082
4189
|
* Definition of a single measure in a chart
|
|
4083
4190
|
*
|
|
4084
4191
|
* chartType binding rules pie, donut The
|
|
@@ -4095,6 +4202,8 @@ declare module "sap/chart/data/Measure" {
|
|
|
4095
4202
|
* is assigned to the feed uid “color”. The other measure is assigned to feed uid “weight”.
|
|
4096
4203
|
* ..dual.. At least one measure is assigned to each of the feed uids “valueAxis” and “valueAxis2”,
|
|
4097
4204
|
* according to the general rule.
|
|
4205
|
+
*
|
|
4206
|
+
* @since 1.32.0
|
|
4098
4207
|
*/
|
|
4099
4208
|
export default class Measure extends UI5Element {
|
|
4100
4209
|
/**
|
|
@@ -4134,6 +4243,7 @@ declare module "sap/chart/data/Measure" {
|
|
|
4134
4243
|
*
|
|
4135
4244
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
4136
4245
|
*
|
|
4246
|
+
*
|
|
4137
4247
|
* @returns Created class / constructor function
|
|
4138
4248
|
*/
|
|
4139
4249
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -4154,17 +4264,18 @@ declare module "sap/chart/data/Measure" {
|
|
|
4154
4264
|
/**
|
|
4155
4265
|
* Returns a metadata object for class sap.chart.data.Measure.
|
|
4156
4266
|
*
|
|
4267
|
+
*
|
|
4157
4268
|
* @returns Metadata object describing this class
|
|
4158
4269
|
*/
|
|
4159
4270
|
static getMetadata(): ElementMetadata;
|
|
4160
4271
|
/**
|
|
4161
|
-
* @since 1.63
|
|
4162
|
-
* @experimental
|
|
4163
|
-
*
|
|
4164
4272
|
* Gets current value of property {@link #getAnalyticalInfo analyticalInfo}.
|
|
4165
4273
|
*
|
|
4166
4274
|
* The analytical extra information
|
|
4167
4275
|
*
|
|
4276
|
+
* @since 1.63
|
|
4277
|
+
* @experimental
|
|
4278
|
+
*
|
|
4168
4279
|
* @returns Value of property `analyticalInfo`
|
|
4169
4280
|
*/
|
|
4170
4281
|
getAnalyticalInfo(): object;
|
|
@@ -4174,6 +4285,7 @@ declare module "sap/chart/data/Measure" {
|
|
|
4174
4285
|
* Label for the Measure, either as a string literal or by a pointer using the binding syntax to some property
|
|
4175
4286
|
* containing the label.
|
|
4176
4287
|
*
|
|
4288
|
+
*
|
|
4177
4289
|
* @returns Value of property `label`
|
|
4178
4290
|
*/
|
|
4179
4291
|
getLabel(): string;
|
|
@@ -4182,6 +4294,7 @@ declare module "sap/chart/data/Measure" {
|
|
|
4182
4294
|
*
|
|
4183
4295
|
* Property in the "data" model holding the raw measure value.
|
|
4184
4296
|
*
|
|
4297
|
+
*
|
|
4185
4298
|
* @returns Value of property `name`
|
|
4186
4299
|
*/
|
|
4187
4300
|
getName(): string;
|
|
@@ -4210,6 +4323,7 @@ declare module "sap/chart/data/Measure" {
|
|
|
4210
4323
|
*
|
|
4211
4324
|
* Default value is `"axis1"`.
|
|
4212
4325
|
*
|
|
4326
|
+
*
|
|
4213
4327
|
* @returns Value of property `role`
|
|
4214
4328
|
*/
|
|
4215
4329
|
getRole(): string;
|
|
@@ -4221,6 +4335,7 @@ declare module "sap/chart/data/Measure" {
|
|
|
4221
4335
|
* - "projectedValueMeasure" identifing the projected value measure, and
|
|
4222
4336
|
* - "referenceValueMeasure" identifing the reference value measure.
|
|
4223
4337
|
*
|
|
4338
|
+
*
|
|
4224
4339
|
* @returns Value of property `semanticallyRelatedMeasures`
|
|
4225
4340
|
*/
|
|
4226
4341
|
getSemanticallyRelatedMeasures(): object;
|
|
@@ -4238,6 +4353,7 @@ declare module "sap/chart/data/Measure" {
|
|
|
4238
4353
|
*
|
|
4239
4354
|
* Default value is `Actual`.
|
|
4240
4355
|
*
|
|
4356
|
+
*
|
|
4241
4357
|
* @returns Value of property `semantics`
|
|
4242
4358
|
*/
|
|
4243
4359
|
getSemantics(): MeasureSemantics;
|
|
@@ -4249,29 +4365,30 @@ declare module "sap/chart/data/Measure" {
|
|
|
4249
4365
|
* tooltip and chart popover. NOTE: To work properly, the unit field must be set as visible dimension in
|
|
4250
4366
|
* chart, and only one unit value exists for any visible dimension value combination.
|
|
4251
4367
|
*
|
|
4368
|
+
*
|
|
4252
4369
|
* @returns Value of property `unitBinding`
|
|
4253
4370
|
*/
|
|
4254
4371
|
getUnitBinding(): string;
|
|
4255
4372
|
/**
|
|
4256
|
-
* @deprecated - Please use {@link sap.chart.Chart#setVizProperties} to set related formatStrings instead.
|
|
4257
|
-
*
|
|
4258
4373
|
* Gets current value of property {@link #getValueFormat valueFormat}.
|
|
4259
4374
|
*
|
|
4260
4375
|
* A (core UI5) format pattern to be used by the formatter to format the measure value.
|
|
4261
4376
|
*
|
|
4377
|
+
* @deprecated - Please use {@link sap.chart.Chart#setVizProperties} to set related formatStrings instead.
|
|
4378
|
+
*
|
|
4262
4379
|
* @returns Value of property `valueFormat`
|
|
4263
4380
|
*/
|
|
4264
4381
|
getValueFormat(): string;
|
|
4265
4382
|
/**
|
|
4266
|
-
* @since 1.63
|
|
4267
|
-
* @experimental
|
|
4268
|
-
*
|
|
4269
4383
|
* Sets a new value for property {@link #getAnalyticalInfo analyticalInfo}.
|
|
4270
4384
|
*
|
|
4271
4385
|
* The analytical extra information
|
|
4272
4386
|
*
|
|
4273
4387
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4274
4388
|
*
|
|
4389
|
+
* @since 1.63
|
|
4390
|
+
* @experimental
|
|
4391
|
+
*
|
|
4275
4392
|
* @returns Reference to `this` in order to allow method chaining
|
|
4276
4393
|
*/
|
|
4277
4394
|
setAnalyticalInfo(
|
|
@@ -4288,6 +4405,7 @@ declare module "sap/chart/data/Measure" {
|
|
|
4288
4405
|
*
|
|
4289
4406
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4290
4407
|
*
|
|
4408
|
+
*
|
|
4291
4409
|
* @returns Reference to `this` in order to allow method chaining
|
|
4292
4410
|
*/
|
|
4293
4411
|
setLabel(
|
|
@@ -4303,6 +4421,7 @@ declare module "sap/chart/data/Measure" {
|
|
|
4303
4421
|
*
|
|
4304
4422
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4305
4423
|
*
|
|
4424
|
+
*
|
|
4306
4425
|
* @returns Reference to `this` in order to allow method chaining
|
|
4307
4426
|
*/
|
|
4308
4427
|
setName(
|
|
@@ -4338,6 +4457,7 @@ declare module "sap/chart/data/Measure" {
|
|
|
4338
4457
|
*
|
|
4339
4458
|
* Default value is `"axis1"`.
|
|
4340
4459
|
*
|
|
4460
|
+
*
|
|
4341
4461
|
* @returns Reference to `this` in order to allow method chaining
|
|
4342
4462
|
*/
|
|
4343
4463
|
setRole(
|
|
@@ -4356,6 +4476,7 @@ declare module "sap/chart/data/Measure" {
|
|
|
4356
4476
|
*
|
|
4357
4477
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4358
4478
|
*
|
|
4479
|
+
*
|
|
4359
4480
|
* @returns Reference to `this` in order to allow method chaining
|
|
4360
4481
|
*/
|
|
4361
4482
|
setSemanticallyRelatedMeasures(
|
|
@@ -4380,6 +4501,7 @@ declare module "sap/chart/data/Measure" {
|
|
|
4380
4501
|
*
|
|
4381
4502
|
* Default value is `Actual`.
|
|
4382
4503
|
*
|
|
4504
|
+
*
|
|
4383
4505
|
* @returns Reference to `this` in order to allow method chaining
|
|
4384
4506
|
*/
|
|
4385
4507
|
setSemantics(
|
|
@@ -4398,6 +4520,7 @@ declare module "sap/chart/data/Measure" {
|
|
|
4398
4520
|
*
|
|
4399
4521
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4400
4522
|
*
|
|
4523
|
+
*
|
|
4401
4524
|
* @returns Reference to `this` in order to allow method chaining
|
|
4402
4525
|
*/
|
|
4403
4526
|
setUnitBinding(
|
|
@@ -4407,14 +4530,14 @@ declare module "sap/chart/data/Measure" {
|
|
|
4407
4530
|
sUnitBinding: string
|
|
4408
4531
|
): this;
|
|
4409
4532
|
/**
|
|
4410
|
-
* @deprecated - Please use {@link sap.chart.Chart#setVizProperties} to set related formatStrings instead.
|
|
4411
|
-
*
|
|
4412
4533
|
* Sets a new value for property {@link #getValueFormat valueFormat}.
|
|
4413
4534
|
*
|
|
4414
4535
|
* A (core UI5) format pattern to be used by the formatter to format the measure value.
|
|
4415
4536
|
*
|
|
4416
4537
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4417
4538
|
*
|
|
4539
|
+
* @deprecated - Please use {@link sap.chart.Chart#setVizProperties} to set related formatStrings instead.
|
|
4540
|
+
*
|
|
4418
4541
|
* @returns Reference to `this` in order to allow method chaining
|
|
4419
4542
|
*/
|
|
4420
4543
|
setValueFormat(
|
|
@@ -4446,9 +4569,9 @@ declare module "sap/chart/data/Measure" {
|
|
|
4446
4569
|
unitBinding?: string | PropertyBindingInfo;
|
|
4447
4570
|
|
|
4448
4571
|
/**
|
|
4449
|
-
* @deprecated - Please use {@link sap.chart.Chart#setVizProperties} to set related formatStrings instead.
|
|
4450
|
-
*
|
|
4451
4572
|
* A (core UI5) format pattern to be used by the formatter to format the measure value.
|
|
4573
|
+
*
|
|
4574
|
+
* @deprecated - Please use {@link sap.chart.Chart#setVizProperties} to set related formatStrings instead.
|
|
4452
4575
|
*/
|
|
4453
4576
|
valueFormat?: string | PropertyBindingInfo;
|
|
4454
4577
|
|
|
@@ -4496,10 +4619,10 @@ declare module "sap/chart/data/Measure" {
|
|
|
4496
4619
|
semanticallyRelatedMeasures?: object | PropertyBindingInfo | `{${string}}`;
|
|
4497
4620
|
|
|
4498
4621
|
/**
|
|
4622
|
+
* The analytical extra information
|
|
4623
|
+
*
|
|
4499
4624
|
* @since 1.63
|
|
4500
4625
|
* @experimental
|
|
4501
|
-
*
|
|
4502
|
-
* The analytical extra information
|
|
4503
4626
|
*/
|
|
4504
4627
|
analyticalInfo?: object | PropertyBindingInfo | `{${string}}`;
|
|
4505
4628
|
}
|
|
@@ -4536,10 +4659,10 @@ declare module "sap/chart/data/MeasureRoleType" {
|
|
|
4536
4659
|
*/
|
|
4537
4660
|
axis3 = "axis3",
|
|
4538
4661
|
/**
|
|
4539
|
-
* @deprecated - Please use other MeasureRoleType for specific usage.
|
|
4540
|
-
*
|
|
4541
4662
|
* Once used by Bullet Chart, but as this chart layout is configured via semantic patterns instead, "Asix4"
|
|
4542
4663
|
* has no special usage from now on.
|
|
4664
|
+
*
|
|
4665
|
+
* @deprecated - Please use other MeasureRoleType for specific usage.
|
|
4543
4666
|
*/
|
|
4544
4667
|
axis4 = "axis4",
|
|
4545
4668
|
}
|
|
@@ -4580,14 +4703,14 @@ declare module "sap/chart/data/TimeDimension" {
|
|
|
4580
4703
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
4581
4704
|
|
|
4582
4705
|
/**
|
|
4583
|
-
* @since 1.38.0
|
|
4584
|
-
*
|
|
4585
4706
|
* Definition of a single time dimension in a chart
|
|
4586
4707
|
*
|
|
4587
4708
|
* If there is exactly one dimension with time semantics, then instead of line, time_line shall be used
|
|
4588
4709
|
* (implicitly).
|
|
4589
4710
|
*
|
|
4590
4711
|
* TimeDmension is assigned to feed uid "timeAxis".
|
|
4712
|
+
*
|
|
4713
|
+
* @since 1.38.0
|
|
4591
4714
|
*/
|
|
4592
4715
|
export default class TimeDimension extends Dimension {
|
|
4593
4716
|
/**
|
|
@@ -4627,6 +4750,7 @@ declare module "sap/chart/data/TimeDimension" {
|
|
|
4627
4750
|
*
|
|
4628
4751
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.chart.data.Dimension.extend}.
|
|
4629
4752
|
*
|
|
4753
|
+
*
|
|
4630
4754
|
* @returns Created class / constructor function
|
|
4631
4755
|
*/
|
|
4632
4756
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -4647,6 +4771,7 @@ declare module "sap/chart/data/TimeDimension" {
|
|
|
4647
4771
|
/**
|
|
4648
4772
|
* Returns a metadata object for class sap.chart.data.TimeDimension.
|
|
4649
4773
|
*
|
|
4774
|
+
*
|
|
4650
4775
|
* @returns Metadata object describing this class
|
|
4651
4776
|
*/
|
|
4652
4777
|
static getMetadata(): ElementMetadata;
|
|
@@ -4666,12 +4791,14 @@ declare module "sap/chart/data/TimeDimension" {
|
|
|
4666
4791
|
* ```
|
|
4667
4792
|
*
|
|
4668
4793
|
*
|
|
4794
|
+
*
|
|
4669
4795
|
* @returns Value of property `fiscalYearPeriodCount`
|
|
4670
4796
|
*/
|
|
4671
4797
|
getFiscalYearPeriodCount(): object;
|
|
4672
4798
|
/**
|
|
4673
4799
|
* Returns if UTC is used for the time dimension
|
|
4674
4800
|
*
|
|
4801
|
+
*
|
|
4675
4802
|
* @returns true if the time dimension data is parsed in UTC, otherwise return false
|
|
4676
4803
|
*/
|
|
4677
4804
|
getIsUTC(): boolean;
|
|
@@ -4680,6 +4807,7 @@ declare module "sap/chart/data/TimeDimension" {
|
|
|
4680
4807
|
*
|
|
4681
4808
|
* A time value (aligned with 'timeUnit') to indicate the start point of projected values.
|
|
4682
4809
|
*
|
|
4810
|
+
*
|
|
4683
4811
|
* @returns Value of property `projectedValueStartTime`
|
|
4684
4812
|
*/
|
|
4685
4813
|
getProjectedValueStartTime(): any;
|
|
@@ -4688,6 +4816,7 @@ declare module "sap/chart/data/TimeDimension" {
|
|
|
4688
4816
|
*
|
|
4689
4817
|
* Detailed unit infomation of TimeDimension. Please refer to {@link sap.chart.TimeUnitType TimeUnitType}.
|
|
4690
4818
|
*
|
|
4819
|
+
*
|
|
4691
4820
|
* @returns Value of property `timeUnit`
|
|
4692
4821
|
*/
|
|
4693
4822
|
getTimeUnit(): TimeUnitType | keyof typeof TimeUnitType;
|
|
@@ -4709,6 +4838,7 @@ declare module "sap/chart/data/TimeDimension" {
|
|
|
4709
4838
|
*
|
|
4710
4839
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4711
4840
|
*
|
|
4841
|
+
*
|
|
4712
4842
|
* @returns Reference to `this` in order to allow method chaining
|
|
4713
4843
|
*/
|
|
4714
4844
|
setFiscalYearPeriodCount(
|
|
@@ -4733,6 +4863,7 @@ declare module "sap/chart/data/TimeDimension" {
|
|
|
4733
4863
|
*
|
|
4734
4864
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4735
4865
|
*
|
|
4866
|
+
*
|
|
4736
4867
|
* @returns Reference to `this` in order to allow method chaining
|
|
4737
4868
|
*/
|
|
4738
4869
|
setProjectedValueStartTime(
|
|
@@ -4748,6 +4879,7 @@ declare module "sap/chart/data/TimeDimension" {
|
|
|
4748
4879
|
*
|
|
4749
4880
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4750
4881
|
*
|
|
4882
|
+
*
|
|
4751
4883
|
* @returns Reference to `this` in order to allow method chaining
|
|
4752
4884
|
*/
|
|
4753
4885
|
setTimeUnit(
|