@sapui5/types 1.120.7 → 1.121.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +1 -0
  3. package/types/sap.apf.d.ts +50 -18
  4. package/types/sap.ca.ui.d.ts +1112 -544
  5. package/types/sap.chart.d.ts +191 -43
  6. package/types/sap.collaboration.d.ts +185 -64
  7. package/types/sap.esh.search.ui.d.ts +2 -1870
  8. package/types/sap.f.d.ts +1605 -885
  9. package/types/sap.fe.core.d.ts +221 -191
  10. package/types/sap.fe.macros.d.ts +461 -568
  11. package/types/sap.fe.navigation.d.ts +59 -26
  12. package/types/sap.fe.placeholder.d.ts +1 -1
  13. package/types/sap.fe.plugins.managecache.d.ts +9 -0
  14. package/types/sap.fe.templates.d.ts +16 -11
  15. package/types/sap.fe.test.d.ts +333 -33
  16. package/types/sap.fe.tools.d.ts +1 -1
  17. package/types/sap.feedback.ui.d.ts +1 -1
  18. package/types/sap.gantt.d.ts +3938 -1749
  19. package/types/sap.insights.d.ts +165 -43
  20. package/types/sap.m.d.ts +14948 -8390
  21. package/types/sap.makit.d.ts +377 -185
  22. package/types/sap.me.d.ts +235 -35
  23. package/types/sap.ndc.d.ts +40 -9
  24. package/types/sap.ovp.d.ts +9 -7
  25. package/types/sap.rules.ui.d.ts +134 -75
  26. package/types/sap.sac.df.d.ts +270 -47
  27. package/types/sap.suite.ui.commons.d.ts +4323 -1016
  28. package/types/sap.suite.ui.generic.template.d.ts +236 -171
  29. package/types/sap.suite.ui.microchart.d.ts +1024 -388
  30. package/types/sap.tnt.d.ts +904 -294
  31. package/types/sap.ui.codeeditor.d.ts +55 -22
  32. package/types/sap.ui.commons.d.ts +2084 -676
  33. package/types/sap.ui.comp.d.ts +3909 -2996
  34. package/types/sap.ui.core.d.ts +5771 -3523
  35. package/types/sap.ui.dt.d.ts +1 -1
  36. package/types/sap.ui.export.d.ts +88 -67
  37. package/types/sap.ui.fl.d.ts +184 -112
  38. package/types/sap.ui.generic.app.d.ts +250 -193
  39. package/types/sap.ui.generic.template.d.ts +1 -1
  40. package/types/sap.ui.integration.d.ts +496 -390
  41. package/types/sap.ui.layout.d.ts +1337 -668
  42. package/types/sap.ui.mdc.d.ts +3384 -2021
  43. package/types/sap.ui.richtexteditor.d.ts +115 -55
  44. package/types/sap.ui.rta.d.ts +7 -7
  45. package/types/sap.ui.suite.d.ts +44 -10
  46. package/types/sap.ui.support.d.ts +58 -26
  47. package/types/sap.ui.table.d.ts +962 -626
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +1976 -1246
  50. package/types/sap.ui.ux3.d.ts +1308 -488
  51. package/types/sap.ui.vbm.d.ts +6081 -3279
  52. package/types/sap.ui.vk.d.ts +2742 -837
  53. package/types/sap.ui.vtm.d.ts +681 -211
  54. package/types/sap.ui.webc.common.d.ts +7 -5
  55. package/types/sap.ui.webc.fiori.d.ts +884 -213
  56. package/types/sap.ui.webc.main.d.ts +2813 -599
  57. package/types/sap.uiext.inbox.d.ts +207 -36
  58. package/types/sap.ushell.d.ts +4972 -4262
  59. package/types/sap.ushell_abap.d.ts +1 -1
  60. package/types/sap.uxap.d.ts +621 -319
  61. package/types/sap.viz.d.ts +4118 -2318
  62. package/types/sap.webanalytics.core.d.ts +1 -1
  63. package/types/sap.zen.commons.d.ts +79 -18
  64. package/types/sap.zen.crosstab.d.ts +81 -13
  65. package/types/sap.zen.dsh.d.ts +194 -143
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.7
1
+ // For Library Version: 1.121.0
2
2
 
3
3
  declare module "sap/chart/library" {
4
4
  import Dimension from "sap/chart/data/Dimension";
@@ -7,6 +7,8 @@ declare module "sap/chart/library" {
7
7
 
8
8
  /**
9
9
  * Enumeration for supported message types in analytical chart.
10
+ *
11
+ * This enum is part of the 'sap/chart/library' module export and must be accessed by the property 'MessageId'.
10
12
  */
11
13
  export enum MessageId {
12
14
  /**
@@ -20,6 +22,8 @@ declare module "sap/chart/library" {
20
22
  }
21
23
  /**
22
24
  * Enumeration for supported selection behavior in analytical chart
25
+ *
26
+ * This enum is part of the 'sap/chart/library' module export and must be accessed by the property 'SelectionBehavior'.
23
27
  */
24
28
  export enum SelectionBehavior {
25
29
  /**
@@ -37,6 +41,8 @@ declare module "sap/chart/library" {
37
41
  }
38
42
  /**
39
43
  * Enumeration for supported selection mode in analytical chart
44
+ *
45
+ * This enum is part of the 'sap/chart/library' module export and must be accessed by the property 'SelectionMode'.
40
46
  */
41
47
  export enum SelectionMode {
42
48
  /**
@@ -57,6 +63,7 @@ declare module "sap/chart/library" {
57
63
  /**
58
64
  * Get the Dimensions and Measures layout for a certain ChartType with provided Dimensions and Measures.
59
65
  *
66
+ *
60
67
  * @returns the chart layout object of the following form:
61
68
  * ```javascript
62
69
  *
@@ -84,6 +91,7 @@ declare module "sap/chart/library" {
84
91
  /**
85
92
  * Returns all chart types currently supported by chart control (subset of viz types).
86
93
  *
94
+ *
87
95
  * @returns a map with chartType as key, localized chart name as value.
88
96
  */
89
97
  function getChartTypes(): object;
@@ -92,6 +100,8 @@ declare module "sap/chart/library" {
92
100
  export namespace coloring {
93
101
  /**
94
102
  * Enumeration for supported Gradation diverging color scheme in analytical chart
103
+ *
104
+ * This enum is part of the 'sap/chart/library' module export and must be accessed by the property 'coloring.GradationDivergingColorScheme'.
95
105
  */
96
106
  enum GradationDivergingColorScheme {
97
107
  /**
@@ -117,6 +127,8 @@ declare module "sap/chart/library" {
117
127
  }
118
128
  /**
119
129
  * Enumeration for supported Gradation color saturation in analytical chart
130
+ *
131
+ * This enum is part of the 'sap/chart/library' module export and must be accessed by the property 'coloring.GradationSaturation'.
120
132
  */
121
133
  enum GradationSaturation {
122
134
  /**
@@ -130,6 +142,8 @@ declare module "sap/chart/library" {
130
142
  }
131
143
  /**
132
144
  * Enumeration for supported Gradation single color scheme in analytical chart
145
+ *
146
+ * This enum is part of the 'sap/chart/library' module export and must be accessed by the property 'coloring.GradationSingleColorScheme'.
133
147
  */
134
148
  enum GradationSingleColorScheme {
135
149
  /**
@@ -147,6 +161,8 @@ declare module "sap/chart/library" {
147
161
  }
148
162
  /**
149
163
  * Enumeration for supported Gradation target color scheme in analytical chart
164
+ *
165
+ * This enum is part of the 'sap/chart/library' module export and must be accessed by the property 'coloring.GradationTargetColorScheme'.
150
166
  */
151
167
  enum GradationTargetColorScheme {
152
168
  /**
@@ -156,6 +172,8 @@ declare module "sap/chart/library" {
156
172
  }
157
173
  /**
158
174
  * Enumeration for supported ImprovementDirection types in analytical chart
175
+ *
176
+ * This enum is part of the 'sap/chart/library' module export and must be accessed by the property 'coloring.ImprovementDirectionType'.
159
177
  */
160
178
  enum ImprovementDirectionType {
161
179
  /**
@@ -246,9 +264,9 @@ declare module "sap/chart/Chart" {
246
264
  import UI5Element from "sap/ui/core/Element";
247
265
 
248
266
  /**
249
- * @since 1.32.0
250
- *
251
267
  * UI5 Chart control
268
+ *
269
+ * @since 1.32.0
252
270
  */
253
271
  export default class Chart extends BaseControl {
254
272
  /**
@@ -288,6 +306,7 @@ declare module "sap/chart/Chart" {
288
306
  *
289
307
  * `oClassInfo` might contain the same kind of information as described in {@link sap.viz.ui5.controls.common.BaseControl.extend}.
290
308
  *
309
+ *
291
310
  * @returns Created class / constructor function
292
311
  */
293
312
  static extend<T extends Record<string, unknown>>(
@@ -308,6 +327,7 @@ declare module "sap/chart/Chart" {
308
327
  /**
309
328
  * Returns a metadata object for class sap.chart.Chart.
310
329
  *
330
+ *
311
331
  * @returns Metadata object describing this class
312
332
  */
313
333
  static getMetadata(): ElementMetadata;
@@ -323,6 +343,7 @@ declare module "sap/chart/Chart" {
323
343
  * be advised that time axis is supported with limited chart types (column, line, combination, stacked_column,
324
344
  * bubble, scatter, dual_combination, vertical_bullet, waterfall).
325
345
  *
346
+ *
326
347
  * @returns Reference to this in order to allow method chaining
327
348
  */
328
349
  addDimension(
@@ -334,6 +355,7 @@ declare module "sap/chart/Chart" {
334
355
  /**
335
356
  * Adds some measure to the aggregation {@link #getMeasures measures}.
336
357
  *
358
+ *
337
359
  * @returns Reference to `this` in order to allow method chaining
338
360
  */
339
361
  addMeasure(
@@ -361,6 +383,7 @@ declare module "sap/chart/Chart" {
361
383
  *
362
384
  * Only works when selectionBehavior is "CATEGORY"
363
385
  *
386
+ *
364
387
  * @returns Reference to `this` in order to allow method chaining
365
388
  */
366
389
  addSelectedCategories(
@@ -385,6 +408,7 @@ declare module "sap/chart/Chart" {
385
408
  *
386
409
  * Only works when selectionBehavior is "DATAPOINT"
387
410
  *
411
+ *
388
412
  * @returns Reference to `this` in order to allow method chaining
389
413
  */
390
414
  addSelectedDataPoints(
@@ -412,6 +436,7 @@ declare module "sap/chart/Chart" {
412
436
  *
413
437
  * Only works when selectionBehavior is "SERIES"
414
438
  *
439
+ *
415
440
  * @returns Reference to `this` in order to allow method chaining
416
441
  */
417
442
  addSelectedSeries(
@@ -429,6 +454,7 @@ declare module "sap/chart/Chart" {
429
454
  * Event fires when certain data point(s) is(are) deselected, data context of deselected item(s) would be
430
455
  * passed in
431
456
  *
457
+ *
432
458
  * @returns Reference to `this` in order to allow method chaining
433
459
  */
434
460
  attachDeselectData(
@@ -455,6 +481,7 @@ declare module "sap/chart/Chart" {
455
481
  * Event fires when certain data point(s) is(are) deselected, data context of deselected item(s) would be
456
482
  * passed in
457
483
  *
484
+ *
458
485
  * @returns Reference to `this` in order to allow method chaining
459
486
  */
460
487
  attachDeselectData(
@@ -475,6 +502,7 @@ declare module "sap/chart/Chart" {
475
502
  *
476
503
  * fired after a drill-down operation
477
504
  *
505
+ *
478
506
  * @returns Reference to `this` in order to allow method chaining
479
507
  */
480
508
  attachDrilledDown(
@@ -500,6 +528,7 @@ declare module "sap/chart/Chart" {
500
528
  *
501
529
  * fired after a drill-down operation
502
530
  *
531
+ *
503
532
  * @returns Reference to `this` in order to allow method chaining
504
533
  */
505
534
  attachDrilledDown(
@@ -520,6 +549,7 @@ declare module "sap/chart/Chart" {
520
549
  *
521
550
  * fired after a drill-up operation
522
551
  *
552
+ *
523
553
  * @returns Reference to `this` in order to allow method chaining
524
554
  */
525
555
  attachDrilledUp(
@@ -545,6 +575,7 @@ declare module "sap/chart/Chart" {
545
575
  *
546
576
  * fired after a drill-up operation
547
577
  *
578
+ *
548
579
  * @returns Reference to `this` in order to allow method chaining
549
580
  */
550
581
  attachDrilledUp(
@@ -567,6 +598,7 @@ declare module "sap/chart/Chart" {
567
598
  * Event fires when drill stack changed. API that relies on drill stack like {@link #drillDown}, {@link #drillUp }
568
599
  * shall be called in this event or after chart is rendered
569
600
  *
601
+ *
570
602
  * @returns Reference to `this` in order to allow method chaining
571
603
  */
572
604
  attachDrillStackChanged(
@@ -594,6 +626,7 @@ declare module "sap/chart/Chart" {
594
626
  * Event fires when drill stack changed. API that relies on drill stack like {@link #drillDown}, {@link #drillUp }
595
627
  * shall be called in this event or after chart is rendered
596
628
  *
629
+ *
597
630
  * @returns Reference to `this` in order to allow method chaining
598
631
  */
599
632
  attachDrillStackChanged(
@@ -615,6 +648,7 @@ declare module "sap/chart/Chart" {
615
648
  *
616
649
  * Event fires when the rendering ends.
617
650
  *
651
+ *
618
652
  * @returns Reference to `this` in order to allow method chaining
619
653
  */
620
654
  attachRenderComplete(
@@ -641,6 +675,7 @@ declare module "sap/chart/Chart" {
641
675
  *
642
676
  * Event fires when the rendering ends.
643
677
  *
678
+ *
644
679
  * @returns Reference to `this` in order to allow method chaining
645
680
  */
646
681
  attachRenderComplete(
@@ -662,6 +697,7 @@ declare module "sap/chart/Chart" {
662
697
  * Event fires when certain data point(s) is(are) selected, data context of selected item(s) would be passed
663
698
  * in.
664
699
  *
700
+ *
665
701
  * @returns Reference to `this` in order to allow method chaining
666
702
  */
667
703
  attachSelectData(
@@ -688,6 +724,7 @@ declare module "sap/chart/Chart" {
688
724
  * Event fires when certain data point(s) is(are) selected, data context of selected item(s) would be passed
689
725
  * in.
690
726
  *
727
+ *
691
728
  * @returns Reference to `this` in order to allow method chaining
692
729
  */
693
730
  attachSelectData(
@@ -709,6 +746,7 @@ declare module "sap/chart/Chart" {
709
746
  *
710
747
  * Event fires when fixed scale is turned off by adding or removing dimension
711
748
  *
749
+ *
712
750
  * @returns Reference to `this` in order to allow method chaining
713
751
  */
714
752
  attachValueAxisFixedScaleTurnedOff(
@@ -735,6 +773,7 @@ declare module "sap/chart/Chart" {
735
773
  *
736
774
  * Event fires when fixed scale is turned off by adding or removing dimension
737
775
  *
776
+ *
738
777
  * @returns Reference to `this` in order to allow method chaining
739
778
  */
740
779
  attachValueAxisFixedScaleTurnedOff(
@@ -756,6 +795,7 @@ declare module "sap/chart/Chart" {
756
795
  * **NOTE:** If the {@link sap.ui.model.odata.v4.ODataListBinding list binding} is suspended, data related
757
796
  * requests in Chart will be impacted, and the corresponding operations might not work as expected.
758
797
  *
798
+ *
759
799
  * @returns Reference to `this` in order to allow method chaining
760
800
  */
761
801
  bindData(
@@ -773,12 +813,14 @@ declare module "sap/chart/Chart" {
773
813
  * Destroys all the dimensions in the aggregation dimensions, only works when the property isAnalytical
774
814
  * is true.
775
815
  *
816
+ *
776
817
  * @returns Reference to this in order to allow method chaining
777
818
  */
778
819
  destroyDimensions(): this;
779
820
  /**
780
821
  * Destroys all the measures in the aggregation {@link #getMeasures measures}.
781
822
  *
823
+ *
782
824
  * @returns Reference to `this` in order to allow method chaining
783
825
  */
784
826
  destroyMeasures(): this;
@@ -787,6 +829,7 @@ declare module "sap/chart/Chart" {
787
829
  *
788
830
  * The passed function and listener object must match the ones used for event registration.
789
831
  *
832
+ *
790
833
  * @returns Reference to `this` in order to allow method chaining
791
834
  */
792
835
  detachDeselectData(
@@ -804,6 +847,7 @@ declare module "sap/chart/Chart" {
804
847
  *
805
848
  * The passed function and listener object must match the ones used for event registration.
806
849
  *
850
+ *
807
851
  * @returns Reference to `this` in order to allow method chaining
808
852
  */
809
853
  detachDrilledDown(
@@ -821,6 +865,7 @@ declare module "sap/chart/Chart" {
821
865
  *
822
866
  * The passed function and listener object must match the ones used for event registration.
823
867
  *
868
+ *
824
869
  * @returns Reference to `this` in order to allow method chaining
825
870
  */
826
871
  detachDrilledUp(
@@ -839,6 +884,7 @@ declare module "sap/chart/Chart" {
839
884
  *
840
885
  * The passed function and listener object must match the ones used for event registration.
841
886
  *
887
+ *
842
888
  * @returns Reference to `this` in order to allow method chaining
843
889
  */
844
890
  detachDrillStackChanged(
@@ -857,6 +903,7 @@ declare module "sap/chart/Chart" {
857
903
  *
858
904
  * The passed function and listener object must match the ones used for event registration.
859
905
  *
906
+ *
860
907
  * @returns Reference to `this` in order to allow method chaining
861
908
  */
862
909
  detachRenderComplete(
@@ -874,6 +921,7 @@ declare module "sap/chart/Chart" {
874
921
  *
875
922
  * The passed function and listener object must match the ones used for event registration.
876
923
  *
924
+ *
877
925
  * @returns Reference to `this` in order to allow method chaining
878
926
  */
879
927
  detachSelectData(
@@ -892,6 +940,7 @@ declare module "sap/chart/Chart" {
892
940
  *
893
941
  * The passed function and listener object must match the ones used for event registration.
894
942
  *
943
+ *
895
944
  * @returns Reference to `this` in order to allow method chaining
896
945
  */
897
946
  detachValueAxisFixedScaleTurnedOff(
@@ -935,6 +984,7 @@ declare module "sap/chart/Chart" {
935
984
  * Export the current chart as SVG String. The chart is ready to be exported to SVG ONLY after the initialization
936
985
  * is finished. Any attempt to export to SVG before that will result in an empty SVG string.
937
986
  *
987
+ *
938
988
  * @returns the SVG string of the current viz or empty svg if error occurs.
939
989
  */
940
990
  exportToSVGString(
@@ -953,10 +1003,10 @@ declare module "sap/chart/Chart" {
953
1003
  option?: Object
954
1004
  ): string;
955
1005
  /**
956
- * @ui5-protected Do not call from applications (only from related classes in the framework)
957
- *
958
1006
  * Fires event {@link #event:deselectData deselectData} to attached listeners.
959
1007
  *
1008
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1009
+ *
960
1010
  * @returns Reference to `this` in order to allow method chaining
961
1011
  */
962
1012
  fireDeselectData(
@@ -966,10 +1016,10 @@ declare module "sap/chart/Chart" {
966
1016
  mParameters?: object
967
1017
  ): this;
968
1018
  /**
969
- * @ui5-protected Do not call from applications (only from related classes in the framework)
970
- *
971
1019
  * Fires event {@link #event:drilledDown drilledDown} to attached listeners.
972
1020
  *
1021
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1022
+ *
973
1023
  * @returns Reference to `this` in order to allow method chaining
974
1024
  */
975
1025
  fireDrilledDown(
@@ -979,10 +1029,10 @@ declare module "sap/chart/Chart" {
979
1029
  mParameters?: Chart$DrilledDownEventParameters
980
1030
  ): this;
981
1031
  /**
982
- * @ui5-protected Do not call from applications (only from related classes in the framework)
983
- *
984
1032
  * Fires event {@link #event:drilledUp drilledUp} to attached listeners.
985
1033
  *
1034
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1035
+ *
986
1036
  * @returns Reference to `this` in order to allow method chaining
987
1037
  */
988
1038
  fireDrilledUp(
@@ -992,10 +1042,10 @@ declare module "sap/chart/Chart" {
992
1042
  mParameters?: Chart$DrilledUpEventParameters
993
1043
  ): this;
994
1044
  /**
995
- * @ui5-protected Do not call from applications (only from related classes in the framework)
996
- *
997
1045
  * Fires event {@link #event:drillStackChanged drillStackChanged} to attached listeners.
998
1046
  *
1047
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1048
+ *
999
1049
  * @returns Reference to `this` in order to allow method chaining
1000
1050
  */
1001
1051
  fireDrillStackChanged(
@@ -1005,10 +1055,10 @@ declare module "sap/chart/Chart" {
1005
1055
  mParameters?: object
1006
1056
  ): this;
1007
1057
  /**
1008
- * @ui5-protected Do not call from applications (only from related classes in the framework)
1009
- *
1010
1058
  * Fires event {@link #event:renderComplete renderComplete} to attached listeners.
1011
1059
  *
1060
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1061
+ *
1012
1062
  * @returns Reference to `this` in order to allow method chaining
1013
1063
  */
1014
1064
  fireRenderComplete(
@@ -1018,10 +1068,10 @@ declare module "sap/chart/Chart" {
1018
1068
  mParameters?: object
1019
1069
  ): this;
1020
1070
  /**
1021
- * @ui5-protected Do not call from applications (only from related classes in the framework)
1022
- *
1023
1071
  * Fires event {@link #event:selectData selectData} to attached listeners.
1024
1072
  *
1073
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1074
+ *
1025
1075
  * @returns Reference to `this` in order to allow method chaining
1026
1076
  */
1027
1077
  fireSelectData(
@@ -1031,10 +1081,10 @@ declare module "sap/chart/Chart" {
1031
1081
  mParameters?: object
1032
1082
  ): this;
1033
1083
  /**
1034
- * @ui5-protected Do not call from applications (only from related classes in the framework)
1035
- *
1036
1084
  * Fires event {@link #event:valueAxisFixedScaleTurnedOff valueAxisFixedScaleTurnedOff} to attached listeners.
1037
1085
  *
1086
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1087
+ *
1038
1088
  * @returns Reference to `this` in order to allow method chaining
1039
1089
  */
1040
1090
  fireValueAxisFixedScaleTurnedOff(
@@ -1078,6 +1128,7 @@ declare module "sap/chart/Chart" {
1078
1128
  * ```
1079
1129
  *
1080
1130
  *
1131
+ *
1081
1132
  * @returns Value of property `activeColoring`
1082
1133
  */
1083
1134
  getActiveColoring(): object;
@@ -1106,6 +1157,7 @@ declare module "sap/chart/Chart" {
1106
1157
  * ```
1107
1158
  *
1108
1159
  *
1160
+ *
1109
1161
  * @returns chart types and errors for unavailable chart types, grouped by availability
1110
1162
  */
1111
1163
  getAvailableChartTypes(): object;
@@ -1116,6 +1168,7 @@ declare module "sap/chart/Chart" {
1116
1168
  *
1117
1169
  * Default value is `"bar"`.
1118
1170
  *
1171
+ *
1119
1172
  * @returns Value of property `chartType`
1120
1173
  */
1121
1174
  getChartType(): string;
@@ -1148,6 +1201,7 @@ declare module "sap/chart/Chart" {
1148
1201
  * {@link sap.chart.ColoringType.Emphasis}
1149
1202
  * for detailed usage
1150
1203
  *
1204
+ *
1151
1205
  * @returns Value of property `colorings`
1152
1206
  */
1153
1207
  getColorings(): object;
@@ -1156,6 +1210,7 @@ declare module "sap/chart/Chart" {
1156
1210
  *
1157
1211
  * Chart custom messages.
1158
1212
  *
1213
+ *
1159
1214
  * @returns Value of property `customMessages`
1160
1215
  */
1161
1216
  getCustomMessages(): object;
@@ -1167,6 +1222,7 @@ declare module "sap/chart/Chart" {
1167
1222
  /**
1168
1223
  * Return Dimension with the given name.
1169
1224
  *
1225
+ *
1170
1226
  * @returns Dimension of the specified name.
1171
1227
  */
1172
1228
  getDimensionByName(
@@ -1187,6 +1243,7 @@ declare module "sap/chart/Chart" {
1187
1243
  * NOTE: If {@link sap.chart.data.HierarchyDimension} is used when calling {@link #setVisibleDimensions},
1188
1244
  * drill stack could not be determined synchronously. Listen to `drillStackChanged` event instead.
1189
1245
  *
1246
+ *
1190
1247
  * @returns array of drill state objects
1191
1248
  */
1192
1249
  getDrillStack(): Object[];
@@ -1208,6 +1265,7 @@ declare module "sap/chart/Chart" {
1208
1265
  *
1209
1266
  * Default value is `false`.
1210
1267
  *
1268
+ *
1211
1269
  * @returns Value of property `enablePagination`
1212
1270
  */
1213
1271
  getEnablePagination(): boolean;
@@ -1218,6 +1276,7 @@ declare module "sap/chart/Chart" {
1218
1276
  *
1219
1277
  * Default value is `false`.
1220
1278
  *
1279
+ *
1221
1280
  * @returns Value of property `enableScalingFactor`
1222
1281
  */
1223
1282
  getEnableScalingFactor(): boolean;
@@ -1228,6 +1287,7 @@ declare module "sap/chart/Chart" {
1228
1287
  *
1229
1288
  * Default value is `false`.
1230
1289
  *
1290
+ *
1231
1291
  * @returns Value of property `enableStableColor`
1232
1292
  */
1233
1293
  getEnableStableColor(): boolean;
@@ -1239,6 +1299,7 @@ declare module "sap/chart/Chart" {
1239
1299
  *
1240
1300
  * Default value is `true`.
1241
1301
  *
1302
+ *
1242
1303
  * @returns Value of property `hideSharedInformation`
1243
1304
  */
1244
1305
  getHideSharedInformation(): boolean;
@@ -1252,6 +1313,7 @@ declare module "sap/chart/Chart" {
1252
1313
  *
1253
1314
  * Default value is `[]`.
1254
1315
  *
1316
+ *
1255
1317
  * @returns Value of property `inResultDimensions`
1256
1318
  */
1257
1319
  getInResultDimensions(): string[];
@@ -1263,12 +1325,14 @@ declare module "sap/chart/Chart" {
1263
1325
  * The property isAnalytical will programmatically set according to data source. When the data source has
1264
1326
  * an aggregated entity set, isAnalytical is true, otherwise it's false.
1265
1327
  *
1328
+ *
1266
1329
  * @returns Value of property isAnalytical
1267
1330
  */
1268
1331
  getIsAnalytical(): boolean;
1269
1332
  /**
1270
1333
  * Return Measure with the given name.
1271
1334
  *
1335
+ *
1272
1336
  * @returns Measure of the specified name.
1273
1337
  */
1274
1338
  getMeasureByName(
@@ -1286,6 +1350,7 @@ declare module "sap/chart/Chart" {
1286
1350
  /**
1287
1351
  * return the scaling factor. Or return null when scaling factor is disable.
1288
1352
  *
1353
+ *
1289
1354
  * @returns A scaling factor object or null
1290
1355
  */
1291
1356
  getScalingFactor(): object;
@@ -1308,6 +1373,7 @@ declare module "sap/chart/Chart" {
1308
1373
  *
1309
1374
  * Return 0 and empty list if selectionBehavior is not "CATEGORY"
1310
1375
  *
1376
+ *
1311
1377
  * @returns a total number of selected data points, and an array of category objects for selected categories.
1312
1378
  */
1313
1379
  getSelectedCategories(): object;
@@ -1335,6 +1401,7 @@ declare module "sap/chart/Chart" {
1335
1401
  *
1336
1402
  * Only works when selectionBehavior is "DATAPOINT"
1337
1403
  *
1404
+ *
1338
1405
  * @returns a total number of selected data points, and an array of datapoint objects.
1339
1406
  */
1340
1407
  getSelectedDataPoints(): object;
@@ -1357,6 +1424,7 @@ declare module "sap/chart/Chart" {
1357
1424
  *
1358
1425
  * Return 0 and empty list if selectionBehavior is not "SERIES"
1359
1426
  *
1427
+ *
1360
1428
  * @returns object containing a total number of selected data points, and an array of series objects for
1361
1429
  * selected series.
1362
1430
  */
@@ -1368,6 +1436,7 @@ declare module "sap/chart/Chart" {
1368
1436
  *
1369
1437
  * Default value is `DataPoint`.
1370
1438
  *
1439
+ *
1371
1440
  * @returns Value of property `selectionBehavior`
1372
1441
  */
1373
1442
  getSelectionBehavior(): SelectionBehavior;
@@ -1378,12 +1447,14 @@ declare module "sap/chart/Chart" {
1378
1447
  *
1379
1448
  * Default value is `Multi`.
1380
1449
  *
1450
+ *
1381
1451
  * @returns Value of property `selectionMode`
1382
1452
  */
1383
1453
  getSelectionMode(): SelectionMode;
1384
1454
  /**
1385
1455
  * Return all TimeDimensions from current Dimensions.
1386
1456
  *
1457
+ *
1387
1458
  * @returns Dimensions which are instance of TimeDimension.
1388
1459
  */
1389
1460
  getTimeDimensions(): any[];
@@ -1393,6 +1464,7 @@ declare module "sap/chart/Chart" {
1393
1464
  * Configuration for initialization to VizControl. This property could only set via settings parameter in
1394
1465
  * Constructor.
1395
1466
  *
1467
+ *
1396
1468
  * @returns Value of property `uiConfig`
1397
1469
  */
1398
1470
  getUiConfig(): object;
@@ -1473,6 +1545,7 @@ declare module "sap/chart/Chart" {
1473
1545
  * {@link sap.chart.ScaleBehavior.FixedScale}
1474
1546
  * for detailed usage
1475
1547
  *
1548
+ *
1476
1549
  * @returns Value of property `valueAxisScale`
1477
1550
  */
1478
1551
  getValueAxisScale(): object;
@@ -1486,6 +1559,7 @@ declare module "sap/chart/Chart" {
1486
1559
  *
1487
1560
  * Default value is `[]`.
1488
1561
  *
1562
+ *
1489
1563
  * @returns Value of property `visibleDimensions`
1490
1564
  */
1491
1565
  getVisibleDimensions(): string[];
@@ -1498,6 +1572,7 @@ declare module "sap/chart/Chart" {
1498
1572
  *
1499
1573
  * Default value is `[]`.
1500
1574
  *
1575
+ *
1501
1576
  * @returns Value of property `visibleMeasures`
1502
1577
  */
1503
1578
  getVisibleMeasures(): string[];
@@ -1507,6 +1582,7 @@ declare module "sap/chart/Chart" {
1507
1582
  * Refer to chart property documentation for more
1508
1583
  * details.
1509
1584
  *
1585
+ *
1510
1586
  * @returns the Chart properties object
1511
1587
  */
1512
1588
  getVizProperties(): object;
@@ -1516,18 +1592,18 @@ declare module "sap/chart/Chart" {
1516
1592
  * Refer to chart property documentation for more
1517
1593
  * details.
1518
1594
  *
1595
+ *
1519
1596
  * @returns an array of scale objects
1520
1597
  */
1521
1598
  getVizScales(): object[];
1522
1599
  /**
1523
1600
  * Get the UID for Chart. It supports other controls to connect to a viz instance.
1524
1601
  *
1602
+ *
1525
1603
  * @returns Chart UID
1526
1604
  */
1527
1605
  getVizUid(): string;
1528
1606
  /**
1529
- * @since 1.54
1530
- *
1531
1607
  * Get zoom information.
1532
1608
  *
1533
1609
  * Return the zooming enablement and current zooming level of chart.
@@ -1544,6 +1620,8 @@ declare module "sap/chart/Chart" {
1544
1620
  * ```
1545
1621
  *
1546
1622
  *
1623
+ * @since 1.54
1624
+ *
1547
1625
  * @returns The zooming enablement and current zooming level of chart.The zooming level is between 0 and
1548
1626
  * 1, and null when zooming isn't applicable.
1549
1627
  */
@@ -1557,6 +1635,7 @@ declare module "sap/chart/Chart" {
1557
1635
  * Checks for the provided `sap.chart.data.Dimension` in the aggregation {@link #getDimensions dimensions}.
1558
1636
  * and returns its index if found or -1 otherwise.
1559
1637
  *
1638
+ *
1560
1639
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
1561
1640
  */
1562
1641
  indexOfDimension(
@@ -1569,6 +1648,7 @@ declare module "sap/chart/Chart" {
1569
1648
  * Checks for the provided `sap.chart.data.Measure` in the aggregation {@link #getMeasures measures}. and
1570
1649
  * returns its index if found or -1 otherwise.
1571
1650
  *
1651
+ *
1572
1652
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
1573
1653
  */
1574
1654
  indexOfMeasure(
@@ -1585,6 +1665,7 @@ declare module "sap/chart/Chart" {
1585
1665
  /**
1586
1666
  * Inserts a dimension into the aggregation {@link #getDimensions dimensions}.
1587
1667
  *
1668
+ *
1588
1669
  * @returns Reference to `this` in order to allow method chaining
1589
1670
  */
1590
1671
  insertDimension(
@@ -1602,6 +1683,7 @@ declare module "sap/chart/Chart" {
1602
1683
  /**
1603
1684
  * Inserts a measure into the aggregation {@link #getMeasures measures}.
1604
1685
  *
1686
+ *
1605
1687
  * @returns Reference to `this` in order to allow method chaining
1606
1688
  */
1607
1689
  insertMeasure(
@@ -1627,6 +1709,7 @@ declare module "sap/chart/Chart" {
1627
1709
  *
1628
1710
  * Additionally, it unregisters them from the hosting UIArea.
1629
1711
  *
1712
+ *
1630
1713
  * @returns An array of the removed elements (might be empty)
1631
1714
  */
1632
1715
  removeAllDimensions(): Dimension[];
@@ -1635,6 +1718,7 @@ declare module "sap/chart/Chart" {
1635
1718
  *
1636
1719
  * Additionally, it unregisters them from the hosting UIArea.
1637
1720
  *
1721
+ *
1638
1722
  * @returns An array of the removed elements (might be empty)
1639
1723
  */
1640
1724
  removeAllMeasures(): Measure[];
@@ -1647,6 +1731,7 @@ declare module "sap/chart/Chart" {
1647
1731
  * Removes a dimension from the aggregation dimensions, remove a visible dimension is unsupported when the
1648
1732
  * property isAnalytical is false.
1649
1733
  *
1734
+ *
1650
1735
  * @returns The removed dimension or null
1651
1736
  */
1652
1737
  removeDimension(
@@ -1658,6 +1743,7 @@ declare module "sap/chart/Chart" {
1658
1743
  /**
1659
1744
  * Removes a measure from the aggregation {@link #getMeasures measures}.
1660
1745
  *
1746
+ *
1661
1747
  * @returns The removed measure or `null`
1662
1748
  */
1663
1749
  removeMeasure(
@@ -1685,6 +1771,7 @@ declare module "sap/chart/Chart" {
1685
1771
  *
1686
1772
  * Only works when selectionBehavior is "CATEGORY"
1687
1773
  *
1774
+ *
1688
1775
  * @returns Reference to `this` in order to allow method chaining
1689
1776
  */
1690
1777
  removeSelectedCategories(
@@ -1709,6 +1796,7 @@ declare module "sap/chart/Chart" {
1709
1796
  *
1710
1797
  * Only works when selectionBehavior is "DATAPOINT"
1711
1798
  *
1799
+ *
1712
1800
  * @returns Reference to `this` in order to allow method chaining
1713
1801
  */
1714
1802
  removeSelectedDataPoints(
@@ -1736,6 +1824,7 @@ declare module "sap/chart/Chart" {
1736
1824
  *
1737
1825
  * Only works when selectionBehavior is "SERIES"
1738
1826
  *
1827
+ *
1739
1828
  * @returns Reference to `this` in order to allow method chaining
1740
1829
  */
1741
1830
  removeSelectedSeries(
@@ -1747,6 +1836,7 @@ declare module "sap/chart/Chart" {
1747
1836
  /**
1748
1837
  * Reset to visible layout.
1749
1838
  *
1839
+ *
1750
1840
  * @returns Reference to `this` in order to allow method chaining
1751
1841
  */
1752
1842
  resetLayout(): this;
@@ -1787,6 +1877,7 @@ declare module "sap/chart/Chart" {
1787
1877
  *
1788
1878
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1789
1879
  *
1880
+ *
1790
1881
  * @returns Reference to `this` in order to allow method chaining
1791
1882
  */
1792
1883
  setActiveColoring(
@@ -1804,6 +1895,7 @@ declare module "sap/chart/Chart" {
1804
1895
  *
1805
1896
  * Default value is `"bar"`.
1806
1897
  *
1898
+ *
1807
1899
  * @returns Reference to `this` in order to allow method chaining
1808
1900
  */
1809
1901
  setChartType(
@@ -1843,6 +1935,7 @@ declare module "sap/chart/Chart" {
1843
1935
  *
1844
1936
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1845
1937
  *
1938
+ *
1846
1939
  * @returns Reference to `this` in order to allow method chaining
1847
1940
  */
1848
1941
  setColorings(
@@ -1898,6 +1991,7 @@ declare module "sap/chart/Chart" {
1898
1991
  *
1899
1992
  * Default value is false.
1900
1993
  *
1994
+ *
1901
1995
  * @returns Reference to this in order to allow method chaining
1902
1996
  */
1903
1997
  setEnablePagination(
@@ -1915,6 +2009,7 @@ declare module "sap/chart/Chart" {
1915
2009
  *
1916
2010
  * Default value is `false`.
1917
2011
  *
2012
+ *
1918
2013
  * @returns Reference to `this` in order to allow method chaining
1919
2014
  */
1920
2015
  setEnableScalingFactor(
@@ -1932,6 +2027,7 @@ declare module "sap/chart/Chart" {
1932
2027
  *
1933
2028
  * Default value is `false`.
1934
2029
  *
2030
+ *
1935
2031
  * @returns Reference to `this` in order to allow method chaining
1936
2032
  */
1937
2033
  setEnableStableColor(
@@ -1950,6 +2046,7 @@ declare module "sap/chart/Chart" {
1950
2046
  *
1951
2047
  * Default value is `true`.
1952
2048
  *
2049
+ *
1953
2050
  * @returns Reference to `this` in order to allow method chaining
1954
2051
  */
1955
2052
  setHideSharedInformation(
@@ -1970,6 +2067,7 @@ declare module "sap/chart/Chart" {
1970
2067
  *
1971
2068
  * Default value is `[]`.
1972
2069
  *
2070
+ *
1973
2071
  * @returns Reference to `this` in order to allow method chaining
1974
2072
  */
1975
2073
  setInResultDimensions(
@@ -2001,6 +2099,7 @@ declare module "sap/chart/Chart" {
2001
2099
  *
2002
2100
  * Only works when selectionBehavior is "CATEGORY"
2003
2101
  *
2102
+ *
2004
2103
  * @returns Reference to `this` in order to allow method chaining
2005
2104
  */
2006
2105
  setSelectedCategories(
@@ -2025,6 +2124,7 @@ declare module "sap/chart/Chart" {
2025
2124
  *
2026
2125
  * Only works when selectionBehavior is "DATAPOINT"
2027
2126
  *
2127
+ *
2028
2128
  * @returns Reference to `this` in order to allow method chaining
2029
2129
  */
2030
2130
  setSelectedDataPoints(
@@ -2052,6 +2152,7 @@ declare module "sap/chart/Chart" {
2052
2152
  *
2053
2153
  * Only works when selectionBehavior is "SERIES"
2054
2154
  *
2155
+ *
2055
2156
  * @returns Reference to `this` in order to allow method chaining
2056
2157
  */
2057
2158
  setSelectedSeries(
@@ -2069,6 +2170,7 @@ declare module "sap/chart/Chart" {
2069
2170
  *
2070
2171
  * Default value is `DataPoint`.
2071
2172
  *
2173
+ *
2072
2174
  * @returns Reference to `this` in order to allow method chaining
2073
2175
  */
2074
2176
  setSelectionBehavior(
@@ -2086,6 +2188,7 @@ declare module "sap/chart/Chart" {
2086
2188
  *
2087
2189
  * Default value is `Multi`.
2088
2190
  *
2191
+ *
2089
2192
  * @returns Reference to `this` in order to allow method chaining
2090
2193
  */
2091
2194
  setSelectionMode(
@@ -2198,6 +2301,7 @@ declare module "sap/chart/Chart" {
2198
2301
  *
2199
2302
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2200
2303
  *
2304
+ *
2201
2305
  * @returns Reference to `this` in order to allow method chaining
2202
2306
  */
2203
2307
  setValueAxisScale(
@@ -2218,6 +2322,7 @@ declare module "sap/chart/Chart" {
2218
2322
  *
2219
2323
  * Default value is [].
2220
2324
  *
2325
+ *
2221
2326
  * @returns Reference to this in order to allow method chaining
2222
2327
  */
2223
2328
  setVisibleDimensions(
@@ -2237,6 +2342,7 @@ declare module "sap/chart/Chart" {
2237
2342
  *
2238
2343
  * Default value is `[]`.
2239
2344
  *
2345
+ *
2240
2346
  * @returns Reference to `this` in order to allow method chaining
2241
2347
  */
2242
2348
  setVisibleMeasures(
@@ -2276,6 +2382,7 @@ declare module "sap/chart/Chart" {
2276
2382
  /**
2277
2383
  * Unbinds aggregation {@link #getData data} from model data.
2278
2384
  *
2385
+ *
2279
2386
  * @returns Reference to `this` in order to allow method chaining
2280
2387
  */
2281
2388
  unbindData(): this;
@@ -3592,8 +3699,6 @@ declare module "sap/chart/data/Dimension" {
3592
3699
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
3593
3700
 
3594
3701
  /**
3595
- * @since 1.32.0
3596
- *
3597
3702
  * Definition of a single dimension in a chart
3598
3703
  *
3599
3704
  * chartType binding rules pie, donut All
@@ -3601,6 +3706,8 @@ declare module "sap/chart/data/Dimension" {
3601
3706
  * with role category are assigned to feed uid “shape”. heatmap All dimensions
3602
3707
  * with role “series” and “category2” are assigned to the feed uid “categoryAxis2”. treemap
3603
3708
  * All dimensions are assigned to the feed uid “categoryAxis” in the default sequence.
3709
+ *
3710
+ * @since 1.32.0
3604
3711
  */
3605
3712
  export default class Dimension extends UI5Element {
3606
3713
  /**
@@ -3640,6 +3747,7 @@ declare module "sap/chart/data/Dimension" {
3640
3747
  *
3641
3748
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
3642
3749
  *
3750
+ *
3643
3751
  * @returns Created class / constructor function
3644
3752
  */
3645
3753
  static extend<T extends Record<string, unknown>>(
@@ -3660,6 +3768,7 @@ declare module "sap/chart/data/Dimension" {
3660
3768
  /**
3661
3769
  * Returns a metadata object for class sap.chart.data.Dimension.
3662
3770
  *
3771
+ *
3663
3772
  * @returns Metadata object describing this class
3664
3773
  */
3665
3774
  static getMetadata(): ElementMetadata;
@@ -3671,6 +3780,7 @@ declare module "sap/chart/data/Dimension" {
3671
3780
  *
3672
3781
  * Default value is `true`.
3673
3782
  *
3783
+ *
3674
3784
  * @returns Value of property `displayText`
3675
3785
  */
3676
3786
  getDisplayText(): boolean;
@@ -3683,6 +3793,7 @@ declare module "sap/chart/data/Dimension" {
3683
3793
  * **NOTE:** This property was bound internally if automatically created via metadata of oData service and
3684
3794
  * please call "unbindProperty" before setting.
3685
3795
  *
3796
+ *
3686
3797
  * @returns Value of property `label`
3687
3798
  */
3688
3799
  getLabel(): string;
@@ -3691,6 +3802,7 @@ declare module "sap/chart/data/Dimension" {
3691
3802
  *
3692
3803
  * Property in the "data" model holding the (always unique) Dimension key.
3693
3804
  *
3805
+ *
3694
3806
  * @returns Value of property `name`
3695
3807
  */
3696
3808
  getName(): string;
@@ -3716,6 +3828,7 @@ declare module "sap/chart/data/Dimension" {
3716
3828
  *
3717
3829
  * Default value is `"category"`.
3718
3830
  *
3831
+ *
3719
3832
  * @returns Value of property `role`
3720
3833
  */
3721
3834
  getRole(): string;
@@ -3726,6 +3839,7 @@ declare module "sap/chart/data/Dimension" {
3726
3839
  * specified, this property takes precedence over the "textProperty" property of the Dimension. Dimension
3727
3840
  * key value and the corresponding text will be passed to the supplied function as parameters.
3728
3841
  *
3842
+ *
3729
3843
  * @returns Value of property `textFormatter`
3730
3844
  */
3731
3845
  getTextFormatter(): Function;
@@ -3738,6 +3852,7 @@ declare module "sap/chart/data/Dimension" {
3738
3852
  * **NOTE:** This property was bound internally if automatically created via metadata of oData service and
3739
3853
  * please call "unbindProperty" before setting.
3740
3854
  *
3855
+ *
3741
3856
  * @returns Value of property `textProperty`
3742
3857
  */
3743
3858
  getTextProperty(): string;
@@ -3751,6 +3866,7 @@ declare module "sap/chart/data/Dimension" {
3751
3866
  *
3752
3867
  * Default value is `true`.
3753
3868
  *
3869
+ *
3754
3870
  * @returns Reference to `this` in order to allow method chaining
3755
3871
  */
3756
3872
  setDisplayText(
@@ -3770,6 +3886,7 @@ declare module "sap/chart/data/Dimension" {
3770
3886
  *
3771
3887
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3772
3888
  *
3889
+ *
3773
3890
  * @returns Reference to `this` in order to allow method chaining
3774
3891
  */
3775
3892
  setLabel(
@@ -3785,6 +3902,7 @@ declare module "sap/chart/data/Dimension" {
3785
3902
  *
3786
3903
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3787
3904
  *
3905
+ *
3788
3906
  * @returns Reference to `this` in order to allow method chaining
3789
3907
  */
3790
3908
  setName(
@@ -3817,6 +3935,7 @@ declare module "sap/chart/data/Dimension" {
3817
3935
  *
3818
3936
  * Default value is `"category"`.
3819
3937
  *
3938
+ *
3820
3939
  * @returns Reference to `this` in order to allow method chaining
3821
3940
  */
3822
3941
  setRole(
@@ -3834,6 +3953,7 @@ declare module "sap/chart/data/Dimension" {
3834
3953
  *
3835
3954
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3836
3955
  *
3956
+ *
3837
3957
  * @returns Reference to `this` in order to allow method chaining
3838
3958
  */
3839
3959
  setTextFormatter(
@@ -3853,6 +3973,7 @@ declare module "sap/chart/data/Dimension" {
3853
3973
  *
3854
3974
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3855
3975
  *
3976
+ *
3856
3977
  * @returns Reference to `this` in order to allow method chaining
3857
3978
  */
3858
3979
  setTextProperty(
@@ -3959,9 +4080,9 @@ declare module "sap/chart/data/HierarchyDimension" {
3959
4080
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
3960
4081
 
3961
4082
  /**
3962
- * @since 1.54.0
3963
- *
3964
4083
  * Definition of a single hierarchy dimension in a chart
4084
+ *
4085
+ * @since 1.54.0
3965
4086
  */
3966
4087
  export default class HierarchyDimension extends Dimension {
3967
4088
  /**
@@ -4001,6 +4122,7 @@ declare module "sap/chart/data/HierarchyDimension" {
4001
4122
  *
4002
4123
  * `oClassInfo` might contain the same kind of information as described in {@link sap.chart.data.Dimension.extend}.
4003
4124
  *
4125
+ *
4004
4126
  * @returns Created class / constructor function
4005
4127
  */
4006
4128
  static extend<T extends Record<string, unknown>>(
@@ -4021,6 +4143,7 @@ declare module "sap/chart/data/HierarchyDimension" {
4021
4143
  /**
4022
4144
  * Returns a metadata object for class sap.chart.data.HierarchyDimension.
4023
4145
  *
4146
+ *
4024
4147
  * @returns Metadata object describing this class
4025
4148
  */
4026
4149
  static getMetadata(): ElementMetadata;
@@ -4033,6 +4156,7 @@ declare module "sap/chart/data/HierarchyDimension" {
4033
4156
  *
4034
4157
  * Default value is `0`.
4035
4158
  *
4159
+ *
4036
4160
  * @returns Value of property `level`
4037
4161
  */
4038
4162
  getLevel(): int;
@@ -4047,6 +4171,7 @@ declare module "sap/chart/data/HierarchyDimension" {
4047
4171
  *
4048
4172
  * Default value is `0`.
4049
4173
  *
4174
+ *
4050
4175
  * @returns Reference to `this` in order to allow method chaining
4051
4176
  */
4052
4177
  setLevel(
@@ -4077,8 +4202,6 @@ declare module "sap/chart/data/Measure" {
4077
4202
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
4078
4203
 
4079
4204
  /**
4080
- * @since 1.32.0
4081
- *
4082
4205
  * Definition of a single measure in a chart
4083
4206
  *
4084
4207
  * chartType binding rules pie, donut The
@@ -4095,6 +4218,8 @@ declare module "sap/chart/data/Measure" {
4095
4218
  * is assigned to the feed uid “color”. The other measure is assigned to feed uid “weight”.
4096
4219
  * ..dual.. At least one measure is assigned to each of the feed uids “valueAxis” and “valueAxis2”,
4097
4220
  * according to the general rule.
4221
+ *
4222
+ * @since 1.32.0
4098
4223
  */
4099
4224
  export default class Measure extends UI5Element {
4100
4225
  /**
@@ -4134,6 +4259,7 @@ declare module "sap/chart/data/Measure" {
4134
4259
  *
4135
4260
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
4136
4261
  *
4262
+ *
4137
4263
  * @returns Created class / constructor function
4138
4264
  */
4139
4265
  static extend<T extends Record<string, unknown>>(
@@ -4154,17 +4280,18 @@ declare module "sap/chart/data/Measure" {
4154
4280
  /**
4155
4281
  * Returns a metadata object for class sap.chart.data.Measure.
4156
4282
  *
4283
+ *
4157
4284
  * @returns Metadata object describing this class
4158
4285
  */
4159
4286
  static getMetadata(): ElementMetadata;
4160
4287
  /**
4161
- * @since 1.63
4162
- * @experimental
4163
- *
4164
4288
  * Gets current value of property {@link #getAnalyticalInfo analyticalInfo}.
4165
4289
  *
4166
4290
  * The analytical extra information
4167
4291
  *
4292
+ * @since 1.63
4293
+ * @experimental
4294
+ *
4168
4295
  * @returns Value of property `analyticalInfo`
4169
4296
  */
4170
4297
  getAnalyticalInfo(): object;
@@ -4174,6 +4301,7 @@ declare module "sap/chart/data/Measure" {
4174
4301
  * Label for the Measure, either as a string literal or by a pointer using the binding syntax to some property
4175
4302
  * containing the label.
4176
4303
  *
4304
+ *
4177
4305
  * @returns Value of property `label`
4178
4306
  */
4179
4307
  getLabel(): string;
@@ -4182,6 +4310,7 @@ declare module "sap/chart/data/Measure" {
4182
4310
  *
4183
4311
  * Property in the "data" model holding the raw measure value.
4184
4312
  *
4313
+ *
4185
4314
  * @returns Value of property `name`
4186
4315
  */
4187
4316
  getName(): string;
@@ -4210,6 +4339,7 @@ declare module "sap/chart/data/Measure" {
4210
4339
  *
4211
4340
  * Default value is `"axis1"`.
4212
4341
  *
4342
+ *
4213
4343
  * @returns Value of property `role`
4214
4344
  */
4215
4345
  getRole(): string;
@@ -4221,6 +4351,7 @@ declare module "sap/chart/data/Measure" {
4221
4351
  * - "projectedValueMeasure" identifing the projected value measure, and
4222
4352
  * - "referenceValueMeasure" identifing the reference value measure.
4223
4353
  *
4354
+ *
4224
4355
  * @returns Value of property `semanticallyRelatedMeasures`
4225
4356
  */
4226
4357
  getSemanticallyRelatedMeasures(): object;
@@ -4238,6 +4369,7 @@ declare module "sap/chart/data/Measure" {
4238
4369
  *
4239
4370
  * Default value is `Actual`.
4240
4371
  *
4372
+ *
4241
4373
  * @returns Value of property `semantics`
4242
4374
  */
4243
4375
  getSemantics(): MeasureSemantics;
@@ -4249,29 +4381,30 @@ declare module "sap/chart/data/Measure" {
4249
4381
  * tooltip and chart popover. NOTE: To work properly, the unit field must be set as visible dimension in
4250
4382
  * chart, and only one unit value exists for any visible dimension value combination.
4251
4383
  *
4384
+ *
4252
4385
  * @returns Value of property `unitBinding`
4253
4386
  */
4254
4387
  getUnitBinding(): string;
4255
4388
  /**
4256
- * @deprecated - Please use {@link sap.chart.Chart#setVizProperties} to set related formatStrings instead.
4257
- *
4258
4389
  * Gets current value of property {@link #getValueFormat valueFormat}.
4259
4390
  *
4260
4391
  * A (core UI5) format pattern to be used by the formatter to format the measure value.
4261
4392
  *
4393
+ * @deprecated - Please use {@link sap.chart.Chart#setVizProperties} to set related formatStrings instead.
4394
+ *
4262
4395
  * @returns Value of property `valueFormat`
4263
4396
  */
4264
4397
  getValueFormat(): string;
4265
4398
  /**
4266
- * @since 1.63
4267
- * @experimental
4268
- *
4269
4399
  * Sets a new value for property {@link #getAnalyticalInfo analyticalInfo}.
4270
4400
  *
4271
4401
  * The analytical extra information
4272
4402
  *
4273
4403
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4274
4404
  *
4405
+ * @since 1.63
4406
+ * @experimental
4407
+ *
4275
4408
  * @returns Reference to `this` in order to allow method chaining
4276
4409
  */
4277
4410
  setAnalyticalInfo(
@@ -4288,6 +4421,7 @@ declare module "sap/chart/data/Measure" {
4288
4421
  *
4289
4422
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4290
4423
  *
4424
+ *
4291
4425
  * @returns Reference to `this` in order to allow method chaining
4292
4426
  */
4293
4427
  setLabel(
@@ -4303,6 +4437,7 @@ declare module "sap/chart/data/Measure" {
4303
4437
  *
4304
4438
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4305
4439
  *
4440
+ *
4306
4441
  * @returns Reference to `this` in order to allow method chaining
4307
4442
  */
4308
4443
  setName(
@@ -4338,6 +4473,7 @@ declare module "sap/chart/data/Measure" {
4338
4473
  *
4339
4474
  * Default value is `"axis1"`.
4340
4475
  *
4476
+ *
4341
4477
  * @returns Reference to `this` in order to allow method chaining
4342
4478
  */
4343
4479
  setRole(
@@ -4356,6 +4492,7 @@ declare module "sap/chart/data/Measure" {
4356
4492
  *
4357
4493
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4358
4494
  *
4495
+ *
4359
4496
  * @returns Reference to `this` in order to allow method chaining
4360
4497
  */
4361
4498
  setSemanticallyRelatedMeasures(
@@ -4380,6 +4517,7 @@ declare module "sap/chart/data/Measure" {
4380
4517
  *
4381
4518
  * Default value is `Actual`.
4382
4519
  *
4520
+ *
4383
4521
  * @returns Reference to `this` in order to allow method chaining
4384
4522
  */
4385
4523
  setSemantics(
@@ -4398,6 +4536,7 @@ declare module "sap/chart/data/Measure" {
4398
4536
  *
4399
4537
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4400
4538
  *
4539
+ *
4401
4540
  * @returns Reference to `this` in order to allow method chaining
4402
4541
  */
4403
4542
  setUnitBinding(
@@ -4407,14 +4546,14 @@ declare module "sap/chart/data/Measure" {
4407
4546
  sUnitBinding: string
4408
4547
  ): this;
4409
4548
  /**
4410
- * @deprecated - Please use {@link sap.chart.Chart#setVizProperties} to set related formatStrings instead.
4411
- *
4412
4549
  * Sets a new value for property {@link #getValueFormat valueFormat}.
4413
4550
  *
4414
4551
  * A (core UI5) format pattern to be used by the formatter to format the measure value.
4415
4552
  *
4416
4553
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4417
4554
  *
4555
+ * @deprecated - Please use {@link sap.chart.Chart#setVizProperties} to set related formatStrings instead.
4556
+ *
4418
4557
  * @returns Reference to `this` in order to allow method chaining
4419
4558
  */
4420
4559
  setValueFormat(
@@ -4446,9 +4585,9 @@ declare module "sap/chart/data/Measure" {
4446
4585
  unitBinding?: string | PropertyBindingInfo;
4447
4586
 
4448
4587
  /**
4449
- * @deprecated - Please use {@link sap.chart.Chart#setVizProperties} to set related formatStrings instead.
4450
- *
4451
4588
  * A (core UI5) format pattern to be used by the formatter to format the measure value.
4589
+ *
4590
+ * @deprecated - Please use {@link sap.chart.Chart#setVizProperties} to set related formatStrings instead.
4452
4591
  */
4453
4592
  valueFormat?: string | PropertyBindingInfo;
4454
4593
 
@@ -4496,10 +4635,10 @@ declare module "sap/chart/data/Measure" {
4496
4635
  semanticallyRelatedMeasures?: object | PropertyBindingInfo | `{${string}}`;
4497
4636
 
4498
4637
  /**
4638
+ * The analytical extra information
4639
+ *
4499
4640
  * @since 1.63
4500
4641
  * @experimental
4501
- *
4502
- * The analytical extra information
4503
4642
  */
4504
4643
  analyticalInfo?: object | PropertyBindingInfo | `{${string}}`;
4505
4644
  }
@@ -4536,10 +4675,10 @@ declare module "sap/chart/data/MeasureRoleType" {
4536
4675
  */
4537
4676
  axis3 = "axis3",
4538
4677
  /**
4539
- * @deprecated - Please use other MeasureRoleType for specific usage.
4540
- *
4541
4678
  * Once used by Bullet Chart, but as this chart layout is configured via semantic patterns instead, "Asix4"
4542
4679
  * has no special usage from now on.
4680
+ *
4681
+ * @deprecated - Please use other MeasureRoleType for specific usage.
4543
4682
  */
4544
4683
  axis4 = "axis4",
4545
4684
  }
@@ -4580,14 +4719,14 @@ declare module "sap/chart/data/TimeDimension" {
4580
4719
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
4581
4720
 
4582
4721
  /**
4583
- * @since 1.38.0
4584
- *
4585
4722
  * Definition of a single time dimension in a chart
4586
4723
  *
4587
4724
  * If there is exactly one dimension with time semantics, then instead of line, time_line shall be used
4588
4725
  * (implicitly).
4589
4726
  *
4590
4727
  * TimeDmension is assigned to feed uid "timeAxis".
4728
+ *
4729
+ * @since 1.38.0
4591
4730
  */
4592
4731
  export default class TimeDimension extends Dimension {
4593
4732
  /**
@@ -4627,6 +4766,7 @@ declare module "sap/chart/data/TimeDimension" {
4627
4766
  *
4628
4767
  * `oClassInfo` might contain the same kind of information as described in {@link sap.chart.data.Dimension.extend}.
4629
4768
  *
4769
+ *
4630
4770
  * @returns Created class / constructor function
4631
4771
  */
4632
4772
  static extend<T extends Record<string, unknown>>(
@@ -4647,6 +4787,7 @@ declare module "sap/chart/data/TimeDimension" {
4647
4787
  /**
4648
4788
  * Returns a metadata object for class sap.chart.data.TimeDimension.
4649
4789
  *
4790
+ *
4650
4791
  * @returns Metadata object describing this class
4651
4792
  */
4652
4793
  static getMetadata(): ElementMetadata;
@@ -4666,12 +4807,14 @@ declare module "sap/chart/data/TimeDimension" {
4666
4807
  * ```
4667
4808
  *
4668
4809
  *
4810
+ *
4669
4811
  * @returns Value of property `fiscalYearPeriodCount`
4670
4812
  */
4671
4813
  getFiscalYearPeriodCount(): object;
4672
4814
  /**
4673
4815
  * Returns if UTC is used for the time dimension
4674
4816
  *
4817
+ *
4675
4818
  * @returns true if the time dimension data is parsed in UTC, otherwise return false
4676
4819
  */
4677
4820
  getIsUTC(): boolean;
@@ -4680,6 +4823,7 @@ declare module "sap/chart/data/TimeDimension" {
4680
4823
  *
4681
4824
  * A time value (aligned with 'timeUnit') to indicate the start point of projected values.
4682
4825
  *
4826
+ *
4683
4827
  * @returns Value of property `projectedValueStartTime`
4684
4828
  */
4685
4829
  getProjectedValueStartTime(): any;
@@ -4688,6 +4832,7 @@ declare module "sap/chart/data/TimeDimension" {
4688
4832
  *
4689
4833
  * Detailed unit infomation of TimeDimension. Please refer to {@link sap.chart.TimeUnitType TimeUnitType}.
4690
4834
  *
4835
+ *
4691
4836
  * @returns Value of property `timeUnit`
4692
4837
  */
4693
4838
  getTimeUnit(): TimeUnitType | keyof typeof TimeUnitType;
@@ -4709,6 +4854,7 @@ declare module "sap/chart/data/TimeDimension" {
4709
4854
  *
4710
4855
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4711
4856
  *
4857
+ *
4712
4858
  * @returns Reference to `this` in order to allow method chaining
4713
4859
  */
4714
4860
  setFiscalYearPeriodCount(
@@ -4733,6 +4879,7 @@ declare module "sap/chart/data/TimeDimension" {
4733
4879
  *
4734
4880
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4735
4881
  *
4882
+ *
4736
4883
  * @returns Reference to `this` in order to allow method chaining
4737
4884
  */
4738
4885
  setProjectedValueStartTime(
@@ -4748,6 +4895,7 @@ declare module "sap/chart/data/TimeDimension" {
4748
4895
  *
4749
4896
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4750
4897
  *
4898
+ *
4751
4899
  * @returns Reference to `this` in order to allow method chaining
4752
4900
  */
4753
4901
  setTimeUnit(