@sapui5/ts-types 1.100.2 → 1.102.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 (62) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +2 -0
  3. package/types/sap.apf.d.ts +89 -1
  4. package/types/sap.ca.ui.d.ts +1747 -124
  5. package/types/sap.chart.d.ts +376 -30
  6. package/types/sap.collaboration.d.ts +320 -40
  7. package/types/sap.esh.search.ui.d.ts +6 -2
  8. package/types/sap.f.d.ts +2015 -119
  9. package/types/sap.fe.common.d.ts +1 -1
  10. package/types/sap.fe.core.d.ts +77 -64
  11. package/types/sap.fe.macros.d.ts +92 -40
  12. package/types/sap.fe.navigation.d.ts +148 -74
  13. package/types/sap.fe.templates.d.ts +115 -187
  14. package/types/sap.fe.test.d.ts +539 -25
  15. package/types/sap.feedback.ui.d.ts +1 -1
  16. package/types/sap.gantt.d.ts +7242 -516
  17. package/types/sap.insights.d.ts +80 -0
  18. package/types/sap.landvisz.d.ts +1015 -66
  19. package/types/sap.m.d.ts +16699 -1186
  20. package/types/sap.makit.d.ts +575 -54
  21. package/types/sap.me.d.ts +578 -51
  22. package/types/sap.ndc.d.ts +63 -5
  23. package/types/sap.ovp.d.ts +5 -6
  24. package/types/sap.rules.ui.d.ts +209 -18
  25. package/types/sap.sac.df.d.ts +2196 -0
  26. package/types/sap.sac.grid.d.ts +115 -8
  27. package/types/sap.suite.ui.commons.d.ts +5532 -396
  28. package/types/sap.suite.ui.generic.template.d.ts +226 -31
  29. package/types/sap.suite.ui.microchart.d.ts +1801 -160
  30. package/types/sap.tnt.d.ts +279 -19
  31. package/types/sap.ui.codeeditor.d.ts +89 -8
  32. package/types/sap.ui.commons.d.ts +3784 -313
  33. package/types/sap.ui.comp.d.ts +4005 -289
  34. package/types/sap.ui.core.d.ts +6317 -336
  35. package/types/sap.ui.dt.d.ts +1 -1
  36. package/types/sap.ui.export.d.ts +61 -6
  37. package/types/sap.ui.fl.d.ts +1 -1
  38. package/types/sap.ui.generic.app.d.ts +247 -73
  39. package/types/sap.ui.generic.template.d.ts +1 -1
  40. package/types/sap.ui.integration.d.ts +316 -23
  41. package/types/sap.ui.layout.d.ts +1851 -199
  42. package/types/sap.ui.mdc.d.ts +9 -1
  43. package/types/sap.ui.richtexteditor.d.ts +340 -49
  44. package/types/sap.ui.rta.d.ts +5 -1
  45. package/types/sap.ui.suite.d.ts +87 -6
  46. package/types/sap.ui.support.d.ts +39 -6
  47. package/types/sap.ui.table.d.ts +1060 -113
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +2704 -202
  50. package/types/sap.ui.ux3.d.ts +2379 -181
  51. package/types/sap.ui.vbm.d.ts +2002 -197
  52. package/types/sap.ui.vk.d.ts +6027 -327
  53. package/types/sap.ui.vtm.d.ts +1130 -41
  54. package/types/sap.uiext.inbox.d.ts +423 -22
  55. package/types/sap.ushell.d.ts +2036 -161
  56. package/types/sap.ushell_abap.d.ts +4 -1
  57. package/types/sap.uxap.d.ts +903 -88
  58. package/types/sap.viz.d.ts +5514 -380
  59. package/types/sap.webanalytics.core.d.ts +1 -1
  60. package/types/sap.zen.commons.d.ts +249 -1688
  61. package/types/sap.zen.crosstab.d.ts +217 -21
  62. package/types/sap.zen.dsh.d.ts +1505 -4036
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.100.0
1
+ // For Library Version: 1.102.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -12,22 +12,34 @@ declare namespace sap {
12
12
  /**
13
13
  * Indicates whether to show label of the Axis by the primary line
14
14
  */
15
- showLabel?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
15
+ showLabel?:
16
+ | boolean
17
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
18
+ | `{${string}}`;
16
19
 
17
20
  /**
18
21
  * Indicates whether to show the primary line of the Axis on the chart area
19
22
  */
20
- showPrimaryLine?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
23
+ showPrimaryLine?:
24
+ | boolean
25
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
26
+ | `{${string}}`;
21
27
 
22
28
  /**
23
29
  * Indicates whether to show grid of the Axis in the chart area
24
30
  */
25
- showGrid?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
31
+ showGrid?:
32
+ | boolean
33
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
34
+ | `{${string}}`;
26
35
 
27
36
  /**
28
37
  * The line thickness of the primary line
29
38
  */
30
- thickness?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
39
+ thickness?:
40
+ | float
41
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
42
+ | `{${string}}`;
31
43
 
32
44
  /**
33
45
  * Color of the primary line. Accept the following format: standard name format: gray, red, black, etc hex
@@ -60,19 +72,24 @@ declare namespace sap {
60
72
  */
61
73
  sortOrder?:
62
74
  | sap.makit.SortOrder
63
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
75
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
76
+ | `{${string}}`;
64
77
 
65
78
  /**
66
79
  * Whether to always display the last label on the axis regardless of the automatic resize
67
80
  */
68
81
  displayLastLabel?:
69
82
  | boolean
70
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
83
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
84
+ | `{${string}}`;
71
85
 
72
86
  /**
73
87
  * Specify whether to display all the category values when there are multiple category data regions.
74
88
  */
75
- displayAll?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
89
+ displayAll?:
90
+ | boolean
91
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
92
+ | `{${string}}`;
76
93
  }
77
94
 
78
95
  interface $ChartSettings extends sap.ui.core.$ControlSettings {
@@ -81,33 +98,40 @@ declare namespace sap {
81
98
  */
82
99
  width?:
83
100
  | sap.ui.core.CSSSize
84
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
101
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
102
+ | `{${string}}`;
85
103
 
86
104
  /**
87
105
  * The height of the Chart
88
106
  */
89
107
  height?:
90
108
  | sap.ui.core.CSSSize
91
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
109
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
110
+ | `{${string}}`;
92
111
 
93
112
  /**
94
113
  * Chart type
95
114
  */
96
115
  type?:
97
116
  | sap.makit.ChartType
98
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
117
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
118
+ | `{${string}}`;
99
119
 
100
120
  /**
101
121
  * Specify whether the range selector should be visible.
102
122
  */
103
123
  showRangeSelector?:
104
124
  | boolean
105
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
125
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
126
+ | `{${string}}`;
106
127
 
107
128
  /**
108
129
  * Toggle to display table view
109
130
  */
110
- showTableView?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
131
+ showTableView?:
132
+ | boolean
133
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
134
+ | `{${string}}`;
111
135
 
112
136
  /**
113
137
  * Legend position all chart types except Bar chart. Default position for Pie/Donut chart is Left. All other
@@ -117,36 +141,52 @@ declare namespace sap {
117
141
  */
118
142
  legendPosition?:
119
143
  | sap.makit.LegendPosition
120
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
144
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
145
+ | `{${string}}`;
121
146
 
122
147
  /**
123
148
  * Specify the line thickness of the line graph. Only applies to Line chart type.
124
149
  */
125
- lineThickness?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
150
+ lineThickness?:
151
+ | float
152
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
153
+ | `{${string}}`;
126
154
 
127
155
  /**
128
156
  * Toggle to display the table value on a Bar chart. Only applies to Bar chart.
129
157
  */
130
- showTableValue?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
158
+ showTableValue?:
159
+ | boolean
160
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
161
+ | `{${string}}`;
131
162
 
132
163
  /**
133
164
  * Set the maximum number of slices in a Pie/Donut chart. If exceeding the specified value, the rest will
134
165
  * be categorised into a single slice. Only applies to Pie/Donut.
135
166
  */
136
- maxSliceCount?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
167
+ maxSliceCount?:
168
+ | int
169
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
170
+ | `{${string}}`;
137
171
 
138
172
  /**
139
173
  * Allow a chart’s color palette to be modified without affecting the other charts' color palette. If not
140
174
  * set, the chart will use the default color palette defined in the theme. Accept an array of color in string
141
175
  * format or hex format. e.g. 0xff0000 "red" "rgb(255,0,0)"
142
176
  */
143
- primaryColorPalette?: any | sap.ui.base.ManagedObject.PropertyBindingInfo;
177
+ primaryColorPalette?:
178
+ | any
179
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
180
+ | `{${string}}`;
144
181
 
145
182
  /**
146
183
  * Specify whether to show the sum of the value for Waterfall/Waterfall Bar chart. Only applies to Waterfall/WaterfallBar
147
184
  * chart.
148
185
  */
149
- showTotalValue?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
186
+ showTotalValue?:
187
+ | boolean
188
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
189
+ | `{${string}}`;
150
190
 
151
191
  /**
152
192
  * The number of categories that will be visible on the chart at any time. The minimum value is 2. If not
@@ -154,14 +194,16 @@ declare namespace sap {
154
194
  */
155
195
  numberOfVisibleCategories?:
156
196
  | int
157
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
197
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
198
+ | `{${string}}`;
158
199
 
159
200
  /**
160
201
  * Specify the range selector start position, default value is 0.
161
202
  */
162
203
  rangeSelectorStartPosition?:
163
204
  | int
164
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
205
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
206
+ | `{${string}}`;
165
207
 
166
208
  /**
167
209
  * @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
@@ -172,7 +214,8 @@ declare namespace sap {
172
214
  rows?:
173
215
  | sap.makit.Row[]
174
216
  | sap.makit.Row
175
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
217
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
218
+ | `{${string}}`;
176
219
 
177
220
  /**
178
221
  * @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
@@ -183,7 +226,8 @@ declare namespace sap {
183
226
  columns?:
184
227
  | sap.makit.Column[]
185
228
  | sap.makit.Column
186
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
229
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
230
+ | `{${string}}`;
187
231
 
188
232
  /**
189
233
  * @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
@@ -202,7 +246,8 @@ declare namespace sap {
202
246
  values?:
203
247
  | sap.makit.Value[]
204
248
  | sap.makit.Value
205
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
249
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
250
+ | `{${string}}`;
206
251
 
207
252
  /**
208
253
  * @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
@@ -213,7 +258,8 @@ declare namespace sap {
213
258
  categoryRegions?:
214
259
  | sap.makit.Category[]
215
260
  | sap.makit.Category
216
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
261
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
262
+ | `{${string}}`;
217
263
 
218
264
  /**
219
265
  * @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
@@ -272,7 +318,10 @@ declare namespace sap {
272
318
  /**
273
319
  * The value mapped to this Column (User should map this using data binding)
274
320
  */
275
- value?: any | sap.ui.base.ManagedObject.PropertyBindingInfo;
321
+ value?:
322
+ | any
323
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
324
+ | `{${string}}`;
276
325
 
277
326
  /**
278
327
  * The data type of the Column: number string datetime
@@ -286,35 +335,42 @@ declare namespace sap {
286
335
  */
287
336
  width?:
288
337
  | sap.ui.core.CSSSize
289
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
338
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
339
+ | `{${string}}`;
290
340
 
291
341
  /**
292
342
  * The height of the Chart
293
343
  */
294
344
  height?:
295
345
  | sap.ui.core.CSSSize
296
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
346
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
347
+ | `{${string}}`;
297
348
 
298
349
  /**
299
350
  * Specify whether the range selector should be visible.
300
351
  */
301
352
  showRangeSelector?:
302
353
  | boolean
303
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
354
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
355
+ | `{${string}}`;
304
356
 
305
357
  /**
306
358
  * Legend position for Pie /Donut chart only.
307
359
  */
308
360
  legendPosition?:
309
361
  | sap.makit.LegendPosition
310
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
362
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
363
+ | `{${string}}`;
311
364
 
312
365
  /**
313
366
  * Allow a combination chart’s primary axis color palette to be modified without affecting other charts'
314
367
  * color palette. If not set, the chart will use the default color palette defined in the theme. Accept
315
368
  * an array of color in string format or hex format. e.g. 0xff0000 "red" "rgb(255,0,0)"
316
369
  */
317
- primaryColorPalette?: any | sap.ui.base.ManagedObject.PropertyBindingInfo;
370
+ primaryColorPalette?:
371
+ | any
372
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
373
+ | `{${string}}`;
318
374
 
319
375
  /**
320
376
  * Allow a combination chart’s secondary axis color palette to be modified without affecting other charts'
@@ -323,12 +379,16 @@ declare namespace sap {
323
379
  */
324
380
  secondaryColorPalette?:
325
381
  | any
326
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
382
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
383
+ | `{${string}}`;
327
384
 
328
385
  /**
329
386
  * Toggle to display the table value on a Bar chart. Only applies to Bar chart.
330
387
  */
331
- showTableValue?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
388
+ showTableValue?:
389
+ | boolean
390
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
391
+ | `{${string}}`;
332
392
 
333
393
  /**
334
394
  * The number of categories that will be visible on the chart at any time. The minimum value is 2. If not
@@ -336,14 +396,16 @@ declare namespace sap {
336
396
  */
337
397
  numberOfVisibleCategories?:
338
398
  | int
339
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
399
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
400
+ | `{${string}}`;
340
401
 
341
402
  /**
342
403
  * Specify the range selector start position, default value is 0.
343
404
  */
344
405
  rangeSelectorStartPosition?:
345
406
  | int
346
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
407
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
408
+ | `{${string}}`;
347
409
 
348
410
  /**
349
411
  * @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
@@ -354,7 +416,8 @@ declare namespace sap {
354
416
  categoryRegions?:
355
417
  | sap.makit.Category[]
356
418
  | sap.makit.Category
357
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
419
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
420
+ | `{${string}}`;
358
421
 
359
422
  /**
360
423
  * @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
@@ -365,7 +428,8 @@ declare namespace sap {
365
428
  layers?:
366
429
  | sap.makit.Layer[]
367
430
  | sap.makit.Layer
368
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
431
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
432
+ | `{${string}}`;
369
433
 
370
434
  /**
371
435
  * @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
@@ -421,12 +485,16 @@ declare namespace sap {
421
485
  */
422
486
  type?:
423
487
  | sap.makit.ChartType
424
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
488
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
489
+ | `{${string}}`;
425
490
 
426
491
  /**
427
492
  * Specify the line thickness of the line graph. Only applies to Line chart type.
428
493
  */
429
- lineThickness?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
494
+ lineThickness?:
495
+ | float
496
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
497
+ | `{${string}}`;
430
498
 
431
499
  /**
432
500
  * Allow a layer’s primary axis color palette to be modified without affecting other charts in the same
@@ -434,14 +502,18 @@ declare namespace sap {
434
502
  * will take precedence over other CombinationChart's color palette properties. Accept an array of color
435
503
  * in string format or hex format. e.g. 0xff0000 "red" "rgb(255,0,0)"
436
504
  */
437
- primaryColorPalette?: any | sap.ui.base.ManagedObject.PropertyBindingInfo;
505
+ primaryColorPalette?:
506
+ | any
507
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
508
+ | `{${string}}`;
438
509
 
439
510
  /**
440
511
  * Specifiy whether this layer should be drawn on the secondary axis.
441
512
  */
442
513
  drawOnSecondaryAxis?:
443
514
  | boolean
444
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
515
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
516
+ | `{${string}}`;
445
517
 
446
518
  /**
447
519
  * The data rows of the chart. User should bind these to their data source
@@ -449,7 +521,8 @@ declare namespace sap {
449
521
  rows?:
450
522
  | sap.makit.Row[]
451
523
  | sap.makit.Row
452
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
524
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
525
+ | `{${string}}`;
453
526
 
454
527
  /**
455
528
  * The data column map of the chart.
@@ -457,7 +530,8 @@ declare namespace sap {
457
530
  columns?:
458
531
  | sap.makit.Column[]
459
532
  | sap.makit.Column
460
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
533
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
534
+ | `{${string}}`;
461
535
 
462
536
  /**
463
537
  * Data region property of the chart's Series
@@ -470,7 +544,8 @@ declare namespace sap {
470
544
  values?:
471
545
  | sap.makit.Value[]
472
546
  | sap.makit.Value
473
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
547
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
548
+ | `{${string}}`;
474
549
  }
475
550
 
476
551
  interface $MakitLibSettings extends sap.ui.core.$ElementSettings {}
@@ -483,7 +558,8 @@ declare namespace sap {
483
558
  cells?:
484
559
  | sap.makit.Column[]
485
560
  | sap.makit.Column
486
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
561
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
562
+ | `{${string}}`;
487
563
  }
488
564
 
489
565
  interface $SeriesSettings extends sap.ui.core.$ElementSettings {
@@ -555,57 +631,72 @@ declare namespace sap {
555
631
  */
556
632
  showCategoryText?:
557
633
  | boolean
558
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
634
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
635
+ | `{${string}}`;
559
636
 
560
637
  /**
561
638
  * Whether to display category's display name on the Value Bubble
562
639
  */
563
640
  showCategoryDisplayName?:
564
641
  | boolean
565
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
642
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
643
+ | `{${string}}`;
566
644
 
567
645
  /**
568
646
  * Whether to display value's display name on the Value Bubble
569
647
  */
570
648
  showValueDisplayName?:
571
649
  | boolean
572
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
650
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
651
+ | `{${string}}`;
573
652
 
574
653
  /**
575
654
  * Whether to display value on Pie or Donut chart
576
655
  */
577
656
  showValueOnPieChart?:
578
657
  | boolean
579
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
658
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
659
+ | `{${string}}`;
580
660
 
581
661
  /**
582
662
  * Whether to display legend's label (Pie or Donut chart only)
583
663
  */
584
- showLegendLabel?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
664
+ showLegendLabel?:
665
+ | boolean
666
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
667
+ | `{${string}}`;
585
668
 
586
669
  /**
587
670
  * Whether to render null item on the Value Bubble
588
671
  */
589
- showNullValue?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
672
+ showNullValue?:
673
+ | boolean
674
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
675
+ | `{${string}}`;
590
676
 
591
677
  /**
592
678
  * The position of the Value Bubble (Pie or Donut chart only)
593
679
  */
594
680
  position?:
595
681
  | sap.makit.ValueBubblePosition
596
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
682
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
683
+ | `{${string}}`;
597
684
 
598
685
  /**
599
686
  * Value Bubble positioning style (All the chart types except: Pie/Donut/HBar chart)
600
687
  */
601
688
  style?:
602
689
  | sap.makit.ValueBubbleStyle
603
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
690
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
691
+ | `{${string}}`;
604
692
 
605
693
  /**
606
694
  * Whether the Value Bubble is visible
607
695
  */
608
- visible?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
696
+ visible?:
697
+ | boolean
698
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
699
+ | `{${string}}`;
609
700
  }
610
701
 
611
702
  /**
@@ -652,6 +743,8 @@ declare namespace sap {
652
743
  * contained in `oClassInfo`.
653
744
  *
654
745
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
746
+ *
747
+ * @returns Created class / constructor function
655
748
  */
656
749
  static extend<T extends Record<string, unknown>>(
657
750
  /**
@@ -670,6 +763,8 @@ declare namespace sap {
670
763
  ): Function;
671
764
  /**
672
765
  * Returns a metadata object for class sap.makit.Axis.
766
+ *
767
+ * @returns Metadata object describing this class
673
768
  */
674
769
  static getMetadata(): sap.ui.core.ElementMetadata;
675
770
  /**
@@ -679,6 +774,8 @@ declare namespace sap {
679
774
  * format: #ff00ff rgb format: rgb(256, 0, 256)
680
775
  *
681
776
  * Default value is `'gray'`.
777
+ *
778
+ * @returns Value of property `color`
682
779
  */
683
780
  getColor(): string;
684
781
  /**
@@ -687,6 +784,8 @@ declare namespace sap {
687
784
  * Indicates whether to show grid of the Axis in the chart area
688
785
  *
689
786
  * Default value is `false`.
787
+ *
788
+ * @returns Value of property `showGrid`
690
789
  */
691
790
  getShowGrid(): boolean;
692
791
  /**
@@ -695,6 +794,8 @@ declare namespace sap {
695
794
  * Indicates whether to show label of the Axis by the primary line
696
795
  *
697
796
  * Default value is `true`.
797
+ *
798
+ * @returns Value of property `showLabel`
698
799
  */
699
800
  getShowLabel(): boolean;
700
801
  /**
@@ -703,6 +804,8 @@ declare namespace sap {
703
804
  * Indicates whether to show the primary line of the Axis on the chart area
704
805
  *
705
806
  * Default value is `true`.
807
+ *
808
+ * @returns Value of property `showPrimaryLine`
706
809
  */
707
810
  getShowPrimaryLine(): boolean;
708
811
  /**
@@ -711,6 +814,8 @@ declare namespace sap {
711
814
  * The line thickness of the primary line
712
815
  *
713
816
  * Default value is `1`.
817
+ *
818
+ * @returns Value of property `thickness`
714
819
  */
715
820
  getThickness(): float;
716
821
  /**
@@ -722,6 +827,8 @@ declare namespace sap {
722
827
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
723
828
  *
724
829
  * Default value is `'gray'`.
830
+ *
831
+ * @returns Reference to `this` in order to allow method chaining
725
832
  */
726
833
  setColor(
727
834
  /**
@@ -737,6 +844,8 @@ declare namespace sap {
737
844
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
738
845
  *
739
846
  * Default value is `false`.
847
+ *
848
+ * @returns Reference to `this` in order to allow method chaining
740
849
  */
741
850
  setShowGrid(
742
851
  /**
@@ -752,6 +861,8 @@ declare namespace sap {
752
861
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
753
862
  *
754
863
  * Default value is `true`.
864
+ *
865
+ * @returns Reference to `this` in order to allow method chaining
755
866
  */
756
867
  setShowLabel(
757
868
  /**
@@ -767,6 +878,8 @@ declare namespace sap {
767
878
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
768
879
  *
769
880
  * Default value is `true`.
881
+ *
882
+ * @returns Reference to `this` in order to allow method chaining
770
883
  */
771
884
  setShowPrimaryLine(
772
885
  /**
@@ -782,6 +895,8 @@ declare namespace sap {
782
895
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
783
896
  *
784
897
  * Default value is `1`.
898
+ *
899
+ * @returns Reference to `this` in order to allow method chaining
785
900
  */
786
901
  setThickness(
787
902
  /**
@@ -834,6 +949,8 @@ declare namespace sap {
834
949
  * contained in `oClassInfo`.
835
950
  *
836
951
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
952
+ *
953
+ * @returns Created class / constructor function
837
954
  */
838
955
  static extend<T extends Record<string, unknown>>(
839
956
  /**
@@ -852,18 +969,24 @@ declare namespace sap {
852
969
  ): Function;
853
970
  /**
854
971
  * Returns a metadata object for class sap.makit.Category.
972
+ *
973
+ * @returns Metadata object describing this class
855
974
  */
856
975
  static getMetadata(): sap.ui.core.ElementMetadata;
857
976
  /**
858
977
  * Gets current value of property {@link #getColumn column}.
859
978
  *
860
979
  * Specify the name of the column to be mapped to the Category Axis's value.
980
+ *
981
+ * @returns Value of property `column`
861
982
  */
862
983
  getColumn(): string;
863
984
  /**
864
985
  * Gets current value of property {@link #getDisplayName displayName}.
865
986
  *
866
987
  * The text label representing this Category(on value bubble or table's header)
988
+ *
989
+ * @returns Value of property `displayName`
867
990
  */
868
991
  getDisplayName(): string;
869
992
  /**
@@ -871,6 +994,8 @@ declare namespace sap {
871
994
  *
872
995
  * Number formatting for the value. Accepted values: number currency percent roundedN - where N represents
873
996
  * number of decimal places e.g. rounded4
997
+ *
998
+ * @returns Value of property `format`
874
999
  */
875
1000
  getFormat(): string;
876
1001
  /**
@@ -879,6 +1004,8 @@ declare namespace sap {
879
1004
  * Specify the name of the column to be mapped to the Category Axis's value.
880
1005
  *
881
1006
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1007
+ *
1008
+ * @returns Reference to `this` in order to allow method chaining
882
1009
  */
883
1010
  setColumn(
884
1011
  /**
@@ -892,6 +1019,8 @@ declare namespace sap {
892
1019
  * The text label representing this Category(on value bubble or table's header)
893
1020
  *
894
1021
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1022
+ *
1023
+ * @returns Reference to `this` in order to allow method chaining
895
1024
  */
896
1025
  setDisplayName(
897
1026
  /**
@@ -906,6 +1035,8 @@ declare namespace sap {
906
1035
  * number of decimal places e.g. rounded4
907
1036
  *
908
1037
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1038
+ *
1039
+ * @returns Reference to `this` in order to allow method chaining
909
1040
  */
910
1041
  setFormat(
911
1042
  /**
@@ -958,6 +1089,8 @@ declare namespace sap {
958
1089
  * information contained in `oClassInfo`.
959
1090
  *
960
1091
  * `oClassInfo` might contain the same kind of information as described in {@link sap.makit.Axis.extend}.
1092
+ *
1093
+ * @returns Created class / constructor function
961
1094
  */
962
1095
  static extend<T extends Record<string, unknown>>(
963
1096
  /**
@@ -976,6 +1109,8 @@ declare namespace sap {
976
1109
  ): Function;
977
1110
  /**
978
1111
  * Returns a metadata object for class sap.makit.CategoryAxis.
1112
+ *
1113
+ * @returns Metadata object describing this class
979
1114
  */
980
1115
  static getMetadata(): sap.ui.core.ElementMetadata;
981
1116
  /**
@@ -984,6 +1119,8 @@ declare namespace sap {
984
1119
  * Specify whether to display all the category values when there are multiple category data regions.
985
1120
  *
986
1121
  * Default value is `true`.
1122
+ *
1123
+ * @returns Value of property `displayAll`
987
1124
  */
988
1125
  getDisplayAll(): boolean;
989
1126
  /**
@@ -992,6 +1129,8 @@ declare namespace sap {
992
1129
  * Whether to always display the last label on the axis regardless of the automatic resize
993
1130
  *
994
1131
  * Default value is `false`.
1132
+ *
1133
+ * @returns Value of property `displayLastLabel`
995
1134
  */
996
1135
  getDisplayLastLabel(): boolean;
997
1136
  /**
@@ -1000,6 +1139,8 @@ declare namespace sap {
1000
1139
  * Sort order of the chart
1001
1140
  *
1002
1141
  * Default value is `None`.
1142
+ *
1143
+ * @returns Value of property `sortOrder`
1003
1144
  */
1004
1145
  getSortOrder(): sap.makit.SortOrder;
1005
1146
  /**
@@ -1010,6 +1151,8 @@ declare namespace sap {
1010
1151
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1011
1152
  *
1012
1153
  * Default value is `true`.
1154
+ *
1155
+ * @returns Reference to `this` in order to allow method chaining
1013
1156
  */
1014
1157
  setDisplayAll(
1015
1158
  /**
@@ -1025,6 +1168,8 @@ declare namespace sap {
1025
1168
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1026
1169
  *
1027
1170
  * Default value is `false`.
1171
+ *
1172
+ * @returns Reference to `this` in order to allow method chaining
1028
1173
  */
1029
1174
  setDisplayLastLabel(
1030
1175
  /**
@@ -1040,6 +1185,8 @@ declare namespace sap {
1040
1185
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1041
1186
  *
1042
1187
  * Default value is `None`.
1188
+ *
1189
+ * @returns Reference to `this` in order to allow method chaining
1043
1190
  */
1044
1191
  setSortOrder(
1045
1192
  /**
@@ -1092,6 +1239,8 @@ declare namespace sap {
1092
1239
  * contained in `oClassInfo`.
1093
1240
  *
1094
1241
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1242
+ *
1243
+ * @returns Created class / constructor function
1095
1244
  */
1096
1245
  static extend<T extends Record<string, unknown>>(
1097
1246
  /**
@@ -1110,6 +1259,8 @@ declare namespace sap {
1110
1259
  ): Function;
1111
1260
  /**
1112
1261
  * Returns a metadata object for class sap.makit.Chart.
1262
+ *
1263
+ * @returns Metadata object describing this class
1113
1264
  */
1114
1265
  static getMetadata(): sap.ui.core.ElementMetadata;
1115
1266
  /**
@@ -1117,6 +1268,8 @@ declare namespace sap {
1117
1268
  * will not be supported anymore from 1.38.
1118
1269
  *
1119
1270
  * Adds some column to the aggregation {@link #getColumns columns}.
1271
+ *
1272
+ * @returns Reference to `this` in order to allow method chaining
1120
1273
  */
1121
1274
  addColumn(
1122
1275
  /**
@@ -1131,6 +1284,8 @@ declare namespace sap {
1131
1284
  * otherwise it will be bound to this `sap.makit.Chart` itself.
1132
1285
  *
1133
1286
  * Double tap event on the chart
1287
+ *
1288
+ * @returns Reference to `this` in order to allow method chaining
1134
1289
  */
1135
1290
  attachDoubletap(
1136
1291
  /**
@@ -1154,6 +1309,8 @@ declare namespace sap {
1154
1309
  * otherwise it will be bound to this `sap.makit.Chart` itself.
1155
1310
  *
1156
1311
  * Double tap event on the chart
1312
+ *
1313
+ * @returns Reference to `this` in order to allow method chaining
1157
1314
  */
1158
1315
  attachDoubletap(
1159
1316
  /**
@@ -1172,6 +1329,8 @@ declare namespace sap {
1172
1329
  * otherwise it will be bound to this `sap.makit.Chart` itself.
1173
1330
  *
1174
1331
  * Long press event on the chart
1332
+ *
1333
+ * @returns Reference to `this` in order to allow method chaining
1175
1334
  */
1176
1335
  attachLongpress(
1177
1336
  /**
@@ -1195,6 +1354,8 @@ declare namespace sap {
1195
1354
  * otherwise it will be bound to this `sap.makit.Chart` itself.
1196
1355
  *
1197
1356
  * Long press event on the chart
1357
+ *
1358
+ * @returns Reference to `this` in order to allow method chaining
1198
1359
  */
1199
1360
  attachLongpress(
1200
1361
  /**
@@ -1213,6 +1374,8 @@ declare namespace sap {
1213
1374
  * otherwise it will be bound to this `sap.makit.Chart` itself.
1214
1375
  *
1215
1376
  * Single tap event on the chart
1377
+ *
1378
+ * @returns Reference to `this` in order to allow method chaining
1216
1379
  */
1217
1380
  attachTap(
1218
1381
  /**
@@ -1236,6 +1399,8 @@ declare namespace sap {
1236
1399
  * otherwise it will be bound to this `sap.makit.Chart` itself.
1237
1400
  *
1238
1401
  * Single tap event on the chart
1402
+ *
1403
+ * @returns Reference to `this` in order to allow method chaining
1239
1404
  */
1240
1405
  attachTap(
1241
1406
  /**
@@ -1255,6 +1420,8 @@ declare namespace sap {
1255
1420
  *
1256
1421
  * See {@link sap.ui.base.ManagedObject#bindAggregation ManagedObject.bindAggregation} for a detailed description
1257
1422
  * of the possible properties of `oBindingInfo`.
1423
+ *
1424
+ * @returns Reference to `this` in order to allow method chaining
1258
1425
  */
1259
1426
  bindColumns(
1260
1427
  /**
@@ -1270,6 +1437,8 @@ declare namespace sap {
1270
1437
  *
1271
1438
  * See {@link sap.ui.base.ManagedObject#bindAggregation ManagedObject.bindAggregation} for a detailed description
1272
1439
  * of the possible properties of `oBindingInfo`.
1440
+ *
1441
+ * @returns Reference to `this` in order to allow method chaining
1273
1442
  */
1274
1443
  bindRows(
1275
1444
  /**
@@ -1282,6 +1451,8 @@ declare namespace sap {
1282
1451
  * will not be supported anymore from 1.38.
1283
1452
  *
1284
1453
  * Destroys the categoryAxis in the aggregation {@link #getCategoryAxis categoryAxis}.
1454
+ *
1455
+ * @returns Reference to `this` in order to allow method chaining
1285
1456
  */
1286
1457
  destroyCategoryAxis(): this;
1287
1458
  /**
@@ -1289,6 +1460,8 @@ declare namespace sap {
1289
1460
  * will not be supported anymore from 1.38.
1290
1461
  *
1291
1462
  * Destroys all the categoryRegions in the aggregation {@link #getCategoryRegions categoryRegions}.
1463
+ *
1464
+ * @returns Reference to `this` in order to allow method chaining
1292
1465
  */
1293
1466
  destroyCategoryRegions(): this;
1294
1467
  /**
@@ -1296,6 +1469,8 @@ declare namespace sap {
1296
1469
  * will not be supported anymore from 1.38.
1297
1470
  *
1298
1471
  * Destroys all the columns in the aggregation {@link #getColumns columns}.
1472
+ *
1473
+ * @returns Reference to `this` in order to allow method chaining
1299
1474
  */
1300
1475
  destroyColumns(): this;
1301
1476
  /**
@@ -1303,6 +1478,8 @@ declare namespace sap {
1303
1478
  * will not be supported anymore from 1.38.
1304
1479
  *
1305
1480
  * Destroys the series in the aggregation {@link #getSeries series}.
1481
+ *
1482
+ * @returns Reference to `this` in order to allow method chaining
1306
1483
  */
1307
1484
  destroySeries(): this;
1308
1485
  /**
@@ -1310,6 +1487,8 @@ declare namespace sap {
1310
1487
  * will not be supported anymore from 1.38.
1311
1488
  *
1312
1489
  * Destroys the valueAxis in the aggregation {@link #getValueAxis valueAxis}.
1490
+ *
1491
+ * @returns Reference to `this` in order to allow method chaining
1313
1492
  */
1314
1493
  destroyValueAxis(): this;
1315
1494
  /**
@@ -1317,6 +1496,8 @@ declare namespace sap {
1317
1496
  * will not be supported anymore from 1.38.
1318
1497
  *
1319
1498
  * Destroys the valueBubble in the aggregation {@link #getValueBubble valueBubble}.
1499
+ *
1500
+ * @returns Reference to `this` in order to allow method chaining
1320
1501
  */
1321
1502
  destroyValueBubble(): this;
1322
1503
  /**
@@ -1324,12 +1505,16 @@ declare namespace sap {
1324
1505
  * will not be supported anymore from 1.38.
1325
1506
  *
1326
1507
  * Destroys all the values in the aggregation {@link #getValues values}.
1508
+ *
1509
+ * @returns Reference to `this` in order to allow method chaining
1327
1510
  */
1328
1511
  destroyValues(): this;
1329
1512
  /**
1330
1513
  * Detaches event handler `fnFunction` from the {@link #event:doubletap doubletap} event of this `sap.makit.Chart`.
1331
1514
  *
1332
1515
  * The passed function and listener object must match the ones used for event registration.
1516
+ *
1517
+ * @returns Reference to `this` in order to allow method chaining
1333
1518
  */
1334
1519
  detachDoubletap(
1335
1520
  /**
@@ -1345,6 +1530,8 @@ declare namespace sap {
1345
1530
  * Detaches event handler `fnFunction` from the {@link #event:longpress longpress} event of this `sap.makit.Chart`.
1346
1531
  *
1347
1532
  * The passed function and listener object must match the ones used for event registration.
1533
+ *
1534
+ * @returns Reference to `this` in order to allow method chaining
1348
1535
  */
1349
1536
  detachLongpress(
1350
1537
  /**
@@ -1360,6 +1547,8 @@ declare namespace sap {
1360
1547
  * Detaches event handler `fnFunction` from the {@link #event:tap tap} event of this `sap.makit.Chart`.
1361
1548
  *
1362
1549
  * The passed function and listener object must match the ones used for event registration.
1550
+ *
1551
+ * @returns Reference to `this` in order to allow method chaining
1363
1552
  */
1364
1553
  detachTap(
1365
1554
  /**
@@ -1373,6 +1562,8 @@ declare namespace sap {
1373
1562
  ): this;
1374
1563
  /**
1375
1564
  * Fires event {@link #event:doubletap doubletap} to attached listeners.
1565
+ *
1566
+ * @returns Reference to `this` in order to allow method chaining
1376
1567
  */
1377
1568
  fireDoubletap(
1378
1569
  /**
@@ -1382,6 +1573,8 @@ declare namespace sap {
1382
1573
  ): this;
1383
1574
  /**
1384
1575
  * Fires event {@link #event:longpress longpress} to attached listeners.
1576
+ *
1577
+ * @returns Reference to `this` in order to allow method chaining
1385
1578
  */
1386
1579
  fireLongpress(
1387
1580
  /**
@@ -1391,6 +1584,8 @@ declare namespace sap {
1391
1584
  ): this;
1392
1585
  /**
1393
1586
  * Fires event {@link #event:tap tap} to attached listeners.
1587
+ *
1588
+ * @returns Reference to `this` in order to allow method chaining
1394
1589
  */
1395
1590
  fireTap(
1396
1591
  /**
@@ -1431,6 +1626,8 @@ declare namespace sap {
1431
1626
  * The height of the Chart
1432
1627
  *
1433
1628
  * Default value is `'100%'`.
1629
+ *
1630
+ * @returns Value of property `height`
1434
1631
  */
1435
1632
  getHeight(): sap.ui.core.CSSSize;
1436
1633
  /**
@@ -1440,6 +1637,8 @@ declare namespace sap {
1440
1637
  * chart's default position is None. Note: the default legend position is set when the chart type is set
1441
1638
  * first time, subsequent change to the chart type will keep using initial legend position unless it is
1442
1639
  * changed explicitly by user.
1640
+ *
1641
+ * @returns Value of property `legendPosition`
1443
1642
  */
1444
1643
  getLegendPosition(): sap.makit.LegendPosition;
1445
1644
  /**
@@ -1448,6 +1647,8 @@ declare namespace sap {
1448
1647
  * Specify the line thickness of the line graph. Only applies to Line chart type.
1449
1648
  *
1450
1649
  * Default value is `1`.
1650
+ *
1651
+ * @returns Value of property `lineThickness`
1451
1652
  */
1452
1653
  getLineThickness(): float;
1453
1654
  /**
@@ -1457,6 +1658,8 @@ declare namespace sap {
1457
1658
  * be categorised into a single slice. Only applies to Pie/Donut.
1458
1659
  *
1459
1660
  * Default value is `12`.
1661
+ *
1662
+ * @returns Value of property `maxSliceCount`
1460
1663
  */
1461
1664
  getMaxSliceCount(): int;
1462
1665
  /**
@@ -1468,6 +1671,8 @@ declare namespace sap {
1468
1671
  *
1469
1672
  * The number of categories that will be visible on the chart at any time. The minimum value is 2. If not
1470
1673
  * set, the number of visible categories will be automatically adjusted depending on the screen size
1674
+ *
1675
+ * @returns Value of property `numberOfVisibleCategories`
1471
1676
  */
1472
1677
  getNumberOfVisibleCategories(): int;
1473
1678
  /**
@@ -1476,6 +1681,8 @@ declare namespace sap {
1476
1681
  * Allow a chart’s color palette to be modified without affecting the other charts' color palette. If not
1477
1682
  * set, the chart will use the default color palette defined in the theme. Accept an array of color in string
1478
1683
  * format or hex format. e.g. 0xff0000 "red" "rgb(255,0,0)"
1684
+ *
1685
+ * @returns Value of property `primaryColorPalette`
1479
1686
  */
1480
1687
  getPrimaryColorPalette(): any;
1481
1688
  /**
@@ -1484,6 +1691,8 @@ declare namespace sap {
1484
1691
  * Specify the range selector start position, default value is 0.
1485
1692
  *
1486
1693
  * Default value is `0`.
1694
+ *
1695
+ * @returns Value of property `rangeSelectorStartPosition`
1487
1696
  */
1488
1697
  getRangeSelectorStartPosition(): int;
1489
1698
  /**
@@ -1522,6 +1731,8 @@ declare namespace sap {
1522
1731
  * Specify whether the range selector should be visible.
1523
1732
  *
1524
1733
  * Default value is `true`.
1734
+ *
1735
+ * @returns Value of property `showRangeSelector`
1525
1736
  */
1526
1737
  getShowRangeSelector(): boolean;
1527
1738
  /**
@@ -1530,6 +1741,8 @@ declare namespace sap {
1530
1741
  * Toggle to display the table value on a Bar chart. Only applies to Bar chart.
1531
1742
  *
1532
1743
  * Default value is `true`.
1744
+ *
1745
+ * @returns Value of property `showTableValue`
1533
1746
  */
1534
1747
  getShowTableValue(): boolean;
1535
1748
  /**
@@ -1538,6 +1751,8 @@ declare namespace sap {
1538
1751
  * Toggle to display table view
1539
1752
  *
1540
1753
  * Default value is `false`.
1754
+ *
1755
+ * @returns Value of property `showTableView`
1541
1756
  */
1542
1757
  getShowTableView(): boolean;
1543
1758
  /**
@@ -1547,6 +1762,8 @@ declare namespace sap {
1547
1762
  * chart.
1548
1763
  *
1549
1764
  * Default value is `false`.
1765
+ *
1766
+ * @returns Value of property `showTotalValue`
1550
1767
  */
1551
1768
  getShowTotalValue(): boolean;
1552
1769
  /**
@@ -1555,6 +1772,8 @@ declare namespace sap {
1555
1772
  * Chart type
1556
1773
  *
1557
1774
  * Default value is `Column`.
1775
+ *
1776
+ * @returns Value of property `type`
1558
1777
  */
1559
1778
  getType(): sap.makit.ChartType;
1560
1779
  /**
@@ -1590,6 +1809,8 @@ declare namespace sap {
1590
1809
  * The width of the Chart
1591
1810
  *
1592
1811
  * Default value is `'100%'`.
1812
+ *
1813
+ * @returns Value of property `width`
1593
1814
  */
1594
1815
  getWidth(): sap.ui.core.CSSSize;
1595
1816
  /**
@@ -1598,6 +1819,8 @@ declare namespace sap {
1598
1819
  *
1599
1820
  * Checks for the provided `sap.makit.Category` in the aggregation {@link #getCategoryRegions categoryRegions}.
1600
1821
  * and returns its index if found or -1 otherwise.
1822
+ *
1823
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
1601
1824
  */
1602
1825
  indexOfCategoryRegion(
1603
1826
  /**
@@ -1611,6 +1834,8 @@ declare namespace sap {
1611
1834
  *
1612
1835
  * Checks for the provided `sap.makit.Column` in the aggregation {@link #getColumns columns}. and returns
1613
1836
  * its index if found or -1 otherwise.
1837
+ *
1838
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
1614
1839
  */
1615
1840
  indexOfColumn(
1616
1841
  /**
@@ -1624,6 +1849,8 @@ declare namespace sap {
1624
1849
  *
1625
1850
  * Checks for the provided `sap.makit.Row` in the aggregation {@link #getRows rows}. and returns its index
1626
1851
  * if found or -1 otherwise.
1852
+ *
1853
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
1627
1854
  */
1628
1855
  indexOfRow(
1629
1856
  /**
@@ -1637,6 +1864,8 @@ declare namespace sap {
1637
1864
  *
1638
1865
  * Checks for the provided `sap.makit.Value` in the aggregation {@link #getValues values}. and returns its
1639
1866
  * index if found or -1 otherwise.
1867
+ *
1868
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
1640
1869
  */
1641
1870
  indexOfValue(
1642
1871
  /**
@@ -1649,6 +1878,8 @@ declare namespace sap {
1649
1878
  * will not be supported anymore from 1.38.
1650
1879
  *
1651
1880
  * Inserts a column into the aggregation {@link #getColumns columns}.
1881
+ *
1882
+ * @returns Reference to `this` in order to allow method chaining
1652
1883
  */
1653
1884
  insertColumn(
1654
1885
  /**
@@ -1669,6 +1900,8 @@ declare namespace sap {
1669
1900
  * Removes all the controls from the aggregation {@link #getColumns columns}.
1670
1901
  *
1671
1902
  * Additionally, it unregisters them from the hosting UIArea.
1903
+ *
1904
+ * @returns An array of the removed elements (might be empty)
1672
1905
  */
1673
1906
  removeAllColumns(): sap.makit.Column[];
1674
1907
  /**
@@ -1676,6 +1909,8 @@ declare namespace sap {
1676
1909
  * will not be supported anymore from 1.38.
1677
1910
  *
1678
1911
  * Removes a column from the aggregation {@link #getColumns columns}.
1912
+ *
1913
+ * @returns The removed column or `null`
1679
1914
  */
1680
1915
  removeColumn(
1681
1916
  /**
@@ -1691,6 +1926,8 @@ declare namespace sap {
1691
1926
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1692
1927
  *
1693
1928
  * Default value is `'100%'`.
1929
+ *
1930
+ * @returns Reference to `this` in order to allow method chaining
1694
1931
  */
1695
1932
  setHeight(
1696
1933
  /**
@@ -1707,6 +1944,8 @@ declare namespace sap {
1707
1944
  * changed explicitly by user.
1708
1945
  *
1709
1946
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1947
+ *
1948
+ * @returns Reference to `this` in order to allow method chaining
1710
1949
  */
1711
1950
  setLegendPosition(
1712
1951
  /**
@@ -1722,6 +1961,8 @@ declare namespace sap {
1722
1961
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1723
1962
  *
1724
1963
  * Default value is `1`.
1964
+ *
1965
+ * @returns Reference to `this` in order to allow method chaining
1725
1966
  */
1726
1967
  setLineThickness(
1727
1968
  /**
@@ -1738,6 +1979,8 @@ declare namespace sap {
1738
1979
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1739
1980
  *
1740
1981
  * Default value is `12`.
1982
+ *
1983
+ * @returns Reference to `this` in order to allow method chaining
1741
1984
  */
1742
1985
  setMaxSliceCount(
1743
1986
  /**
@@ -1752,6 +1995,8 @@ declare namespace sap {
1752
1995
  * set, the number of visible categories will be automatically adjusted depending on the screen size
1753
1996
  *
1754
1997
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1998
+ *
1999
+ * @returns Reference to `this` in order to allow method chaining
1755
2000
  */
1756
2001
  setNumberOfVisibleCategories(
1757
2002
  /**
@@ -1767,6 +2012,8 @@ declare namespace sap {
1767
2012
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1768
2013
  *
1769
2014
  * Default value is `0`.
2015
+ *
2016
+ * @returns Reference to `this` in order to allow method chaining
1770
2017
  */
1771
2018
  setRangeSelectorStartPosition(
1772
2019
  /**
@@ -1782,6 +2029,8 @@ declare namespace sap {
1782
2029
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1783
2030
  *
1784
2031
  * Default value is `true`.
2032
+ *
2033
+ * @returns Reference to `this` in order to allow method chaining
1785
2034
  */
1786
2035
  setShowRangeSelector(
1787
2036
  /**
@@ -1797,6 +2046,8 @@ declare namespace sap {
1797
2046
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1798
2047
  *
1799
2048
  * Default value is `true`.
2049
+ *
2050
+ * @returns Reference to `this` in order to allow method chaining
1800
2051
  */
1801
2052
  setShowTableValue(
1802
2053
  /**
@@ -1812,6 +2063,8 @@ declare namespace sap {
1812
2063
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1813
2064
  *
1814
2065
  * Default value is `false`.
2066
+ *
2067
+ * @returns Reference to `this` in order to allow method chaining
1815
2068
  */
1816
2069
  setShowTableView(
1817
2070
  /**
@@ -1828,6 +2081,8 @@ declare namespace sap {
1828
2081
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1829
2082
  *
1830
2083
  * Default value is `false`.
2084
+ *
2085
+ * @returns Reference to `this` in order to allow method chaining
1831
2086
  */
1832
2087
  setShowTotalValue(
1833
2088
  /**
@@ -1843,6 +2098,8 @@ declare namespace sap {
1843
2098
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1844
2099
  *
1845
2100
  * Default value is `Column`.
2101
+ *
2102
+ * @returns Reference to `this` in order to allow method chaining
1846
2103
  */
1847
2104
  setType(
1848
2105
  /**
@@ -1858,6 +2115,8 @@ declare namespace sap {
1858
2115
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1859
2116
  *
1860
2117
  * Default value is `'100%'`.
2118
+ *
2119
+ * @returns Reference to `this` in order to allow method chaining
1861
2120
  */
1862
2121
  setWidth(
1863
2122
  /**
@@ -1870,6 +2129,8 @@ declare namespace sap {
1870
2129
  * will not be supported anymore from 1.38.
1871
2130
  *
1872
2131
  * Unbinds aggregation {@link #getColumns columns} from model data.
2132
+ *
2133
+ * @returns Reference to `this` in order to allow method chaining
1873
2134
  */
1874
2135
  unbindColumns(): this;
1875
2136
  /**
@@ -1877,6 +2138,8 @@ declare namespace sap {
1877
2138
  * will not be supported anymore from 1.38.
1878
2139
  *
1879
2140
  * Unbinds aggregation {@link #getRows rows} from model data.
2141
+ *
2142
+ * @returns Reference to `this` in order to allow method chaining
1880
2143
  */
1881
2144
  unbindRows(): this;
1882
2145
  }
@@ -1924,6 +2187,8 @@ declare namespace sap {
1924
2187
  * contained in `oClassInfo`.
1925
2188
  *
1926
2189
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
2190
+ *
2191
+ * @returns Created class / constructor function
1927
2192
  */
1928
2193
  static extend<T extends Record<string, unknown>>(
1929
2194
  /**
@@ -1942,12 +2207,16 @@ declare namespace sap {
1942
2207
  ): Function;
1943
2208
  /**
1944
2209
  * Returns a metadata object for class sap.makit.Column.
2210
+ *
2211
+ * @returns Metadata object describing this class
1945
2212
  */
1946
2213
  static getMetadata(): sap.ui.core.ElementMetadata;
1947
2214
  /**
1948
2215
  * Gets current value of property {@link #getName name}.
1949
2216
  *
1950
2217
  * The name representing the Column
2218
+ *
2219
+ * @returns Value of property `name`
1951
2220
  */
1952
2221
  getName(): string;
1953
2222
  /**
@@ -1956,12 +2225,16 @@ declare namespace sap {
1956
2225
  * The data type of the Column: number string datetime
1957
2226
  *
1958
2227
  * Default value is `'string'`.
2228
+ *
2229
+ * @returns Value of property `type`
1959
2230
  */
1960
2231
  getType(): string;
1961
2232
  /**
1962
2233
  * Gets current value of property {@link #getValue value}.
1963
2234
  *
1964
2235
  * The value mapped to this Column (User should map this using data binding)
2236
+ *
2237
+ * @returns Value of property `value`
1965
2238
  */
1966
2239
  getValue(): any;
1967
2240
  /**
@@ -1970,6 +2243,8 @@ declare namespace sap {
1970
2243
  * The name representing the Column
1971
2244
  *
1972
2245
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2246
+ *
2247
+ * @returns Reference to `this` in order to allow method chaining
1973
2248
  */
1974
2249
  setName(
1975
2250
  /**
@@ -1985,6 +2260,8 @@ declare namespace sap {
1985
2260
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1986
2261
  *
1987
2262
  * Default value is `'string'`.
2263
+ *
2264
+ * @returns Reference to `this` in order to allow method chaining
1988
2265
  */
1989
2266
  setType(
1990
2267
  /**
@@ -1998,6 +2275,8 @@ declare namespace sap {
1998
2275
  * The value mapped to this Column (User should map this using data binding)
1999
2276
  *
2000
2277
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2278
+ *
2279
+ * @returns Reference to `this` in order to allow method chaining
2001
2280
  */
2002
2281
  setValue(
2003
2282
  /**
@@ -2050,6 +2329,8 @@ declare namespace sap {
2050
2329
  * the information contained in `oClassInfo`.
2051
2330
  *
2052
2331
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
2332
+ *
2333
+ * @returns Created class / constructor function
2053
2334
  */
2054
2335
  static extend<T extends Record<string, unknown>>(
2055
2336
  /**
@@ -2068,6 +2349,8 @@ declare namespace sap {
2068
2349
  ): Function;
2069
2350
  /**
2070
2351
  * Returns a metadata object for class sap.makit.CombinationChart.
2352
+ *
2353
+ * @returns Metadata object describing this class
2071
2354
  */
2072
2355
  static getMetadata(): sap.ui.core.ElementMetadata;
2073
2356
  /**
@@ -2077,6 +2360,8 @@ declare namespace sap {
2077
2360
  * otherwise it will be bound to this `sap.makit.CombinationChart` itself.
2078
2361
  *
2079
2362
  * Double tap event on the chart
2363
+ *
2364
+ * @returns Reference to `this` in order to allow method chaining
2080
2365
  */
2081
2366
  attachDoubletap(
2082
2367
  /**
@@ -2100,6 +2385,8 @@ declare namespace sap {
2100
2385
  * otherwise it will be bound to this `sap.makit.CombinationChart` itself.
2101
2386
  *
2102
2387
  * Double tap event on the chart
2388
+ *
2389
+ * @returns Reference to `this` in order to allow method chaining
2103
2390
  */
2104
2391
  attachDoubletap(
2105
2392
  /**
@@ -2118,6 +2405,8 @@ declare namespace sap {
2118
2405
  * otherwise it will be bound to this `sap.makit.CombinationChart` itself.
2119
2406
  *
2120
2407
  * Long press event on the chart
2408
+ *
2409
+ * @returns Reference to `this` in order to allow method chaining
2121
2410
  */
2122
2411
  attachLongpress(
2123
2412
  /**
@@ -2141,6 +2430,8 @@ declare namespace sap {
2141
2430
  * otherwise it will be bound to this `sap.makit.CombinationChart` itself.
2142
2431
  *
2143
2432
  * Long press event on the chart
2433
+ *
2434
+ * @returns Reference to `this` in order to allow method chaining
2144
2435
  */
2145
2436
  attachLongpress(
2146
2437
  /**
@@ -2159,6 +2450,8 @@ declare namespace sap {
2159
2450
  * otherwise it will be bound to this `sap.makit.CombinationChart` itself.
2160
2451
  *
2161
2452
  * Single tap event on the chart
2453
+ *
2454
+ * @returns Reference to `this` in order to allow method chaining
2162
2455
  */
2163
2456
  attachTap(
2164
2457
  /**
@@ -2182,6 +2475,8 @@ declare namespace sap {
2182
2475
  * otherwise it will be bound to this `sap.makit.CombinationChart` itself.
2183
2476
  *
2184
2477
  * Single tap event on the chart
2478
+ *
2479
+ * @returns Reference to `this` in order to allow method chaining
2185
2480
  */
2186
2481
  attachTap(
2187
2482
  /**
@@ -2198,6 +2493,8 @@ declare namespace sap {
2198
2493
  * will not be supported anymore from 1.38.
2199
2494
  *
2200
2495
  * Destroys the categoryAxis in the aggregation {@link #getCategoryAxis categoryAxis}.
2496
+ *
2497
+ * @returns Reference to `this` in order to allow method chaining
2201
2498
  */
2202
2499
  destroyCategoryAxis(): this;
2203
2500
  /**
@@ -2205,6 +2502,8 @@ declare namespace sap {
2205
2502
  * will not be supported anymore from 1.38.
2206
2503
  *
2207
2504
  * Destroys all the categoryRegions in the aggregation {@link #getCategoryRegions categoryRegions}.
2505
+ *
2506
+ * @returns Reference to `this` in order to allow method chaining
2208
2507
  */
2209
2508
  destroyCategoryRegions(): this;
2210
2509
  /**
@@ -2212,6 +2511,8 @@ declare namespace sap {
2212
2511
  * will not be supported anymore from 1.38.
2213
2512
  *
2214
2513
  * Destroys all the layers in the aggregation {@link #getLayers layers}.
2514
+ *
2515
+ * @returns Reference to `this` in order to allow method chaining
2215
2516
  */
2216
2517
  destroyLayers(): this;
2217
2518
  /**
@@ -2219,6 +2520,8 @@ declare namespace sap {
2219
2520
  * will not be supported anymore from 1.38.
2220
2521
  *
2221
2522
  * Destroys the primaryValueAxis in the aggregation {@link #getPrimaryValueAxis primaryValueAxis}.
2523
+ *
2524
+ * @returns Reference to `this` in order to allow method chaining
2222
2525
  */
2223
2526
  destroyPrimaryValueAxis(): this;
2224
2527
  /**
@@ -2226,6 +2529,8 @@ declare namespace sap {
2226
2529
  * will not be supported anymore from 1.38.
2227
2530
  *
2228
2531
  * Destroys the secondaryValueAxis in the aggregation {@link #getSecondaryValueAxis secondaryValueAxis}.
2532
+ *
2533
+ * @returns Reference to `this` in order to allow method chaining
2229
2534
  */
2230
2535
  destroySecondaryValueAxis(): this;
2231
2536
  /**
@@ -2233,12 +2538,16 @@ declare namespace sap {
2233
2538
  * will not be supported anymore from 1.38.
2234
2539
  *
2235
2540
  * Destroys the valueBubble in the aggregation {@link #getValueBubble valueBubble}.
2541
+ *
2542
+ * @returns Reference to `this` in order to allow method chaining
2236
2543
  */
2237
2544
  destroyValueBubble(): this;
2238
2545
  /**
2239
2546
  * Detaches event handler `fnFunction` from the {@link #event:doubletap doubletap} event of this `sap.makit.CombinationChart`.
2240
2547
  *
2241
2548
  * The passed function and listener object must match the ones used for event registration.
2549
+ *
2550
+ * @returns Reference to `this` in order to allow method chaining
2242
2551
  */
2243
2552
  detachDoubletap(
2244
2553
  /**
@@ -2254,6 +2563,8 @@ declare namespace sap {
2254
2563
  * Detaches event handler `fnFunction` from the {@link #event:longpress longpress} event of this `sap.makit.CombinationChart`.
2255
2564
  *
2256
2565
  * The passed function and listener object must match the ones used for event registration.
2566
+ *
2567
+ * @returns Reference to `this` in order to allow method chaining
2257
2568
  */
2258
2569
  detachLongpress(
2259
2570
  /**
@@ -2269,6 +2580,8 @@ declare namespace sap {
2269
2580
  * Detaches event handler `fnFunction` from the {@link #event:tap tap} event of this `sap.makit.CombinationChart`.
2270
2581
  *
2271
2582
  * The passed function and listener object must match the ones used for event registration.
2583
+ *
2584
+ * @returns Reference to `this` in order to allow method chaining
2272
2585
  */
2273
2586
  detachTap(
2274
2587
  /**
@@ -2282,6 +2595,8 @@ declare namespace sap {
2282
2595
  ): this;
2283
2596
  /**
2284
2597
  * Fires event {@link #event:doubletap doubletap} to attached listeners.
2598
+ *
2599
+ * @returns Reference to `this` in order to allow method chaining
2285
2600
  */
2286
2601
  fireDoubletap(
2287
2602
  /**
@@ -2291,6 +2606,8 @@ declare namespace sap {
2291
2606
  ): this;
2292
2607
  /**
2293
2608
  * Fires event {@link #event:longpress longpress} to attached listeners.
2609
+ *
2610
+ * @returns Reference to `this` in order to allow method chaining
2294
2611
  */
2295
2612
  fireLongpress(
2296
2613
  /**
@@ -2300,6 +2617,8 @@ declare namespace sap {
2300
2617
  ): this;
2301
2618
  /**
2302
2619
  * Fires event {@link #event:tap tap} to attached listeners.
2620
+ *
2621
+ * @returns Reference to `this` in order to allow method chaining
2303
2622
  */
2304
2623
  fireTap(
2305
2624
  /**
@@ -2331,6 +2650,8 @@ declare namespace sap {
2331
2650
  * The height of the Chart
2332
2651
  *
2333
2652
  * Default value is `'100%'`.
2653
+ *
2654
+ * @returns Value of property `height`
2334
2655
  */
2335
2656
  getHeight(): sap.ui.core.CSSSize;
2336
2657
  /**
@@ -2348,6 +2669,8 @@ declare namespace sap {
2348
2669
  * Legend position for Pie /Donut chart only.
2349
2670
  *
2350
2671
  * Default value is `Left`.
2672
+ *
2673
+ * @returns Value of property `legendPosition`
2351
2674
  */
2352
2675
  getLegendPosition(): sap.makit.LegendPosition;
2353
2676
  /**
@@ -2359,6 +2682,8 @@ declare namespace sap {
2359
2682
  *
2360
2683
  * The number of categories that will be visible on the chart at any time. The minimum value is 2. If not
2361
2684
  * set, the number of visible categories will be automatically adjusted depending on the screen size
2685
+ *
2686
+ * @returns Value of property `numberOfVisibleCategories`
2362
2687
  */
2363
2688
  getNumberOfVisibleCategories(): int;
2364
2689
  /**
@@ -2367,6 +2692,8 @@ declare namespace sap {
2367
2692
  * Allow a combination chart’s primary axis color palette to be modified without affecting other charts'
2368
2693
  * color palette. If not set, the chart will use the default color palette defined in the theme. Accept
2369
2694
  * an array of color in string format or hex format. e.g. 0xff0000 "red" "rgb(255,0,0)"
2695
+ *
2696
+ * @returns Value of property `primaryColorPalette`
2370
2697
  */
2371
2698
  getPrimaryColorPalette(): any;
2372
2699
  /**
@@ -2384,6 +2711,8 @@ declare namespace sap {
2384
2711
  * Specify the range selector start position, default value is 0.
2385
2712
  *
2386
2713
  * Default value is `0`.
2714
+ *
2715
+ * @returns Value of property `rangeSelectorStartPosition`
2387
2716
  */
2388
2717
  getRangeSelectorStartPosition(): int;
2389
2718
  /**
@@ -2392,6 +2721,8 @@ declare namespace sap {
2392
2721
  * Allow a combination chart’s secondary axis color palette to be modified without affecting other charts'
2393
2722
  * color palette. If not set, the chart will use the default color palette defined in the theme. Accept
2394
2723
  * an array of color in string format or hex format. e.g. 0xff0000 "red" "rgb(255,0,0)"
2724
+ *
2725
+ * @returns Value of property `secondaryColorPalette`
2395
2726
  */
2396
2727
  getSecondaryColorPalette(): any;
2397
2728
  /**
@@ -2417,6 +2748,8 @@ declare namespace sap {
2417
2748
  * Specify whether the range selector should be visible.
2418
2749
  *
2419
2750
  * Default value is `true`.
2751
+ *
2752
+ * @returns Value of property `showRangeSelector`
2420
2753
  */
2421
2754
  getShowRangeSelector(): boolean;
2422
2755
  /**
@@ -2425,6 +2758,8 @@ declare namespace sap {
2425
2758
  * Toggle to display the table value on a Bar chart. Only applies to Bar chart.
2426
2759
  *
2427
2760
  * Default value is `true`.
2761
+ *
2762
+ * @returns Value of property `showTableValue`
2428
2763
  */
2429
2764
  getShowTableValue(): boolean;
2430
2765
  /**
@@ -2442,6 +2777,8 @@ declare namespace sap {
2442
2777
  * The width of the Chart
2443
2778
  *
2444
2779
  * Default value is `'100%'`.
2780
+ *
2781
+ * @returns Value of property `width`
2445
2782
  */
2446
2783
  getWidth(): sap.ui.core.CSSSize;
2447
2784
  /**
@@ -2450,6 +2787,8 @@ declare namespace sap {
2450
2787
  *
2451
2788
  * Checks for the provided `sap.makit.Category` in the aggregation {@link #getCategoryRegions categoryRegions}.
2452
2789
  * and returns its index if found or -1 otherwise.
2790
+ *
2791
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
2453
2792
  */
2454
2793
  indexOfCategoryRegion(
2455
2794
  /**
@@ -2463,6 +2802,8 @@ declare namespace sap {
2463
2802
  *
2464
2803
  * Checks for the provided `sap.makit.Layer` in the aggregation {@link #getLayers layers}. and returns its
2465
2804
  * index if found or -1 otherwise.
2805
+ *
2806
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
2466
2807
  */
2467
2808
  indexOfLayer(
2468
2809
  /**
@@ -2478,6 +2819,8 @@ declare namespace sap {
2478
2819
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2479
2820
  *
2480
2821
  * Default value is `'100%'`.
2822
+ *
2823
+ * @returns Reference to `this` in order to allow method chaining
2481
2824
  */
2482
2825
  setHeight(
2483
2826
  /**
@@ -2493,6 +2836,8 @@ declare namespace sap {
2493
2836
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2494
2837
  *
2495
2838
  * Default value is `Left`.
2839
+ *
2840
+ * @returns Reference to `this` in order to allow method chaining
2496
2841
  */
2497
2842
  setLegendPosition(
2498
2843
  /**
@@ -2507,6 +2852,8 @@ declare namespace sap {
2507
2852
  * set, the number of visible categories will be automatically adjusted depending on the screen size
2508
2853
  *
2509
2854
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2855
+ *
2856
+ * @returns Reference to `this` in order to allow method chaining
2510
2857
  */
2511
2858
  setNumberOfVisibleCategories(
2512
2859
  /**
@@ -2522,6 +2869,8 @@ declare namespace sap {
2522
2869
  * an array of color in string format or hex format. e.g. 0xff0000 "red" "rgb(255,0,0)"
2523
2870
  *
2524
2871
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2872
+ *
2873
+ * @returns Reference to `this` in order to allow method chaining
2525
2874
  */
2526
2875
  setPrimaryColorPalette(
2527
2876
  /**
@@ -2537,6 +2886,8 @@ declare namespace sap {
2537
2886
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2538
2887
  *
2539
2888
  * Default value is `0`.
2889
+ *
2890
+ * @returns Reference to `this` in order to allow method chaining
2540
2891
  */
2541
2892
  setRangeSelectorStartPosition(
2542
2893
  /**
@@ -2552,6 +2903,8 @@ declare namespace sap {
2552
2903
  * an array of color in string format or hex format. e.g. 0xff0000 "red" "rgb(255,0,0)"
2553
2904
  *
2554
2905
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2906
+ *
2907
+ * @returns Reference to `this` in order to allow method chaining
2555
2908
  */
2556
2909
  setSecondaryColorPalette(
2557
2910
  /**
@@ -2567,6 +2920,8 @@ declare namespace sap {
2567
2920
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2568
2921
  *
2569
2922
  * Default value is `true`.
2923
+ *
2924
+ * @returns Reference to `this` in order to allow method chaining
2570
2925
  */
2571
2926
  setShowRangeSelector(
2572
2927
  /**
@@ -2582,6 +2937,8 @@ declare namespace sap {
2582
2937
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2583
2938
  *
2584
2939
  * Default value is `true`.
2940
+ *
2941
+ * @returns Reference to `this` in order to allow method chaining
2585
2942
  */
2586
2943
  setShowTableValue(
2587
2944
  /**
@@ -2597,6 +2954,8 @@ declare namespace sap {
2597
2954
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2598
2955
  *
2599
2956
  * Default value is `'100%'`.
2957
+ *
2958
+ * @returns Reference to `this` in order to allow method chaining
2600
2959
  */
2601
2960
  setWidth(
2602
2961
  /**
@@ -2649,6 +3008,8 @@ declare namespace sap {
2649
3008
  * contained in `oClassInfo`.
2650
3009
  *
2651
3010
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
3011
+ *
3012
+ * @returns Created class / constructor function
2652
3013
  */
2653
3014
  static extend<T extends Record<string, unknown>>(
2654
3015
  /**
@@ -2667,10 +3028,14 @@ declare namespace sap {
2667
3028
  ): Function;
2668
3029
  /**
2669
3030
  * Returns a metadata object for class sap.makit.Layer.
3031
+ *
3032
+ * @returns Metadata object describing this class
2670
3033
  */
2671
3034
  static getMetadata(): sap.ui.core.ElementMetadata;
2672
3035
  /**
2673
3036
  * Adds some column to the aggregation {@link #getColumns columns}.
3037
+ *
3038
+ * @returns Reference to `this` in order to allow method chaining
2674
3039
  */
2675
3040
  addColumn(
2676
3041
  /**
@@ -2683,6 +3048,8 @@ declare namespace sap {
2683
3048
  *
2684
3049
  * See {@link sap.ui.base.ManagedObject#bindAggregation ManagedObject.bindAggregation} for a detailed description
2685
3050
  * of the possible properties of `oBindingInfo`.
3051
+ *
3052
+ * @returns Reference to `this` in order to allow method chaining
2686
3053
  */
2687
3054
  bindColumns(
2688
3055
  /**
@@ -2695,6 +3062,8 @@ declare namespace sap {
2695
3062
  *
2696
3063
  * See {@link sap.ui.base.ManagedObject#bindAggregation ManagedObject.bindAggregation} for a detailed description
2697
3064
  * of the possible properties of `oBindingInfo`.
3065
+ *
3066
+ * @returns Reference to `this` in order to allow method chaining
2698
3067
  */
2699
3068
  bindRows(
2700
3069
  /**
@@ -2704,14 +3073,20 @@ declare namespace sap {
2704
3073
  ): this;
2705
3074
  /**
2706
3075
  * Destroys all the columns in the aggregation {@link #getColumns columns}.
3076
+ *
3077
+ * @returns Reference to `this` in order to allow method chaining
2707
3078
  */
2708
3079
  destroyColumns(): this;
2709
3080
  /**
2710
3081
  * Destroys the series in the aggregation {@link #getSeries series}.
3082
+ *
3083
+ * @returns Reference to `this` in order to allow method chaining
2711
3084
  */
2712
3085
  destroySeries(): this;
2713
3086
  /**
2714
3087
  * Destroys all the values in the aggregation {@link #getValues values}.
3088
+ *
3089
+ * @returns Reference to `this` in order to allow method chaining
2715
3090
  */
2716
3091
  destroyValues(): this;
2717
3092
  /**
@@ -2726,6 +3101,8 @@ declare namespace sap {
2726
3101
  * Specifiy whether this layer should be drawn on the secondary axis.
2727
3102
  *
2728
3103
  * Default value is `false`.
3104
+ *
3105
+ * @returns Value of property `drawOnSecondaryAxis`
2729
3106
  */
2730
3107
  getDrawOnSecondaryAxis(): boolean;
2731
3108
  /**
@@ -2734,6 +3111,8 @@ declare namespace sap {
2734
3111
  * Specify the line thickness of the line graph. Only applies to Line chart type.
2735
3112
  *
2736
3113
  * Default value is `1`.
3114
+ *
3115
+ * @returns Value of property `lineThickness`
2737
3116
  */
2738
3117
  getLineThickness(): float;
2739
3118
  /**
@@ -2743,6 +3122,8 @@ declare namespace sap {
2743
3122
  * screen. If not set, the chart will use the default color palette defined in the theme. This property
2744
3123
  * will take precedence over other CombinationChart's color palette properties. Accept an array of color
2745
3124
  * in string format or hex format. e.g. 0xff0000 "red" "rgb(255,0,0)"
3125
+ *
3126
+ * @returns Value of property `primaryColorPalette`
2746
3127
  */
2747
3128
  getPrimaryColorPalette(): any;
2748
3129
  /**
@@ -2767,6 +3148,8 @@ declare namespace sap {
2767
3148
  * Chart type
2768
3149
  *
2769
3150
  * Default value is `Column`.
3151
+ *
3152
+ * @returns Value of property `type`
2770
3153
  */
2771
3154
  getType(): sap.makit.ChartType;
2772
3155
  /**
@@ -2778,6 +3161,8 @@ declare namespace sap {
2778
3161
  /**
2779
3162
  * Checks for the provided `sap.makit.Column` in the aggregation {@link #getColumns columns}. and returns
2780
3163
  * its index if found or -1 otherwise.
3164
+ *
3165
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
2781
3166
  */
2782
3167
  indexOfColumn(
2783
3168
  /**
@@ -2788,6 +3173,8 @@ declare namespace sap {
2788
3173
  /**
2789
3174
  * Checks for the provided `sap.makit.Row` in the aggregation {@link #getRows rows}. and returns its index
2790
3175
  * if found or -1 otherwise.
3176
+ *
3177
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
2791
3178
  */
2792
3179
  indexOfRow(
2793
3180
  /**
@@ -2798,6 +3185,8 @@ declare namespace sap {
2798
3185
  /**
2799
3186
  * Checks for the provided `sap.makit.Value` in the aggregation {@link #getValues values}. and returns its
2800
3187
  * index if found or -1 otherwise.
3188
+ *
3189
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
2801
3190
  */
2802
3191
  indexOfValue(
2803
3192
  /**
@@ -2807,6 +3196,8 @@ declare namespace sap {
2807
3196
  ): int;
2808
3197
  /**
2809
3198
  * Inserts a column into the aggregation {@link #getColumns columns}.
3199
+ *
3200
+ * @returns Reference to `this` in order to allow method chaining
2810
3201
  */
2811
3202
  insertColumn(
2812
3203
  /**
@@ -2822,6 +3213,8 @@ declare namespace sap {
2822
3213
  ): this;
2823
3214
  /**
2824
3215
  * Inserts a value into the aggregation {@link #getValues values}.
3216
+ *
3217
+ * @returns Reference to `this` in order to allow method chaining
2825
3218
  */
2826
3219
  insertValue(
2827
3220
  /**
@@ -2839,16 +3232,22 @@ declare namespace sap {
2839
3232
  * Removes all the controls from the aggregation {@link #getColumns columns}.
2840
3233
  *
2841
3234
  * Additionally, it unregisters them from the hosting UIArea.
3235
+ *
3236
+ * @returns An array of the removed elements (might be empty)
2842
3237
  */
2843
3238
  removeAllColumns(): sap.makit.Column[];
2844
3239
  /**
2845
3240
  * Removes all the controls from the aggregation {@link #getValues values}.
2846
3241
  *
2847
3242
  * Additionally, it unregisters them from the hosting UIArea.
3243
+ *
3244
+ * @returns An array of the removed elements (might be empty)
2848
3245
  */
2849
3246
  removeAllValues(): sap.makit.Value[];
2850
3247
  /**
2851
3248
  * Removes a column from the aggregation {@link #getColumns columns}.
3249
+ *
3250
+ * @returns The removed column or `null`
2852
3251
  */
2853
3252
  removeColumn(
2854
3253
  /**
@@ -2858,6 +3257,8 @@ declare namespace sap {
2858
3257
  ): sap.makit.Column;
2859
3258
  /**
2860
3259
  * Removes a value from the aggregation {@link #getValues values}.
3260
+ *
3261
+ * @returns The removed value or `null`
2861
3262
  */
2862
3263
  removeValue(
2863
3264
  /**
@@ -2873,6 +3274,8 @@ declare namespace sap {
2873
3274
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2874
3275
  *
2875
3276
  * Default value is `false`.
3277
+ *
3278
+ * @returns Reference to `this` in order to allow method chaining
2876
3279
  */
2877
3280
  setDrawOnSecondaryAxis(
2878
3281
  /**
@@ -2888,6 +3291,8 @@ declare namespace sap {
2888
3291
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2889
3292
  *
2890
3293
  * Default value is `1`.
3294
+ *
3295
+ * @returns Reference to `this` in order to allow method chaining
2891
3296
  */
2892
3297
  setLineThickness(
2893
3298
  /**
@@ -2904,6 +3309,8 @@ declare namespace sap {
2904
3309
  * in string format or hex format. e.g. 0xff0000 "red" "rgb(255,0,0)"
2905
3310
  *
2906
3311
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3312
+ *
3313
+ * @returns Reference to `this` in order to allow method chaining
2907
3314
  */
2908
3315
  setPrimaryColorPalette(
2909
3316
  /**
@@ -2919,6 +3326,8 @@ declare namespace sap {
2919
3326
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2920
3327
  *
2921
3328
  * Default value is `Column`.
3329
+ *
3330
+ * @returns Reference to `this` in order to allow method chaining
2922
3331
  */
2923
3332
  setType(
2924
3333
  /**
@@ -2928,10 +3337,14 @@ declare namespace sap {
2928
3337
  ): this;
2929
3338
  /**
2930
3339
  * Unbinds aggregation {@link #getColumns columns} from model data.
3340
+ *
3341
+ * @returns Reference to `this` in order to allow method chaining
2931
3342
  */
2932
3343
  unbindColumns(): this;
2933
3344
  /**
2934
3345
  * Unbinds aggregation {@link #getRows rows} from model data.
3346
+ *
3347
+ * @returns Reference to `this` in order to allow method chaining
2935
3348
  */
2936
3349
  unbindRows(): this;
2937
3350
  }
@@ -2985,6 +3398,8 @@ declare namespace sap {
2985
3398
  * contained in `oClassInfo`.
2986
3399
  *
2987
3400
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
3401
+ *
3402
+ * @returns Created class / constructor function
2988
3403
  */
2989
3404
  static extend<T extends Record<string, unknown>>(
2990
3405
  /**
@@ -3003,6 +3418,8 @@ declare namespace sap {
3003
3418
  ): Function;
3004
3419
  /**
3005
3420
  * Returns a metadata object for class sap.makit.MakitLib.
3421
+ *
3422
+ * @returns Metadata object describing this class
3006
3423
  */
3007
3424
  static getMetadata(): sap.ui.core.ElementMetadata;
3008
3425
  }
@@ -3050,6 +3467,8 @@ declare namespace sap {
3050
3467
  * contained in `oClassInfo`.
3051
3468
  *
3052
3469
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
3470
+ *
3471
+ * @returns Created class / constructor function
3053
3472
  */
3054
3473
  static extend<T extends Record<string, unknown>>(
3055
3474
  /**
@@ -3068,10 +3487,14 @@ declare namespace sap {
3068
3487
  ): Function;
3069
3488
  /**
3070
3489
  * Returns a metadata object for class sap.makit.Row.
3490
+ *
3491
+ * @returns Metadata object describing this class
3071
3492
  */
3072
3493
  static getMetadata(): sap.ui.core.ElementMetadata;
3073
3494
  /**
3074
3495
  * Adds some cell to the aggregation {@link #getCells cells}.
3496
+ *
3497
+ * @returns Reference to `this` in order to allow method chaining
3075
3498
  */
3076
3499
  addCell(
3077
3500
  /**
@@ -3081,6 +3504,8 @@ declare namespace sap {
3081
3504
  ): this;
3082
3505
  /**
3083
3506
  * Destroys all the cells in the aggregation {@link #getCells cells}.
3507
+ *
3508
+ * @returns Reference to `this` in order to allow method chaining
3084
3509
  */
3085
3510
  destroyCells(): this;
3086
3511
  /**
@@ -3093,6 +3518,8 @@ declare namespace sap {
3093
3518
  /**
3094
3519
  * Checks for the provided `sap.makit.Column` in the aggregation {@link #getCells cells}. and returns its
3095
3520
  * index if found or -1 otherwise.
3521
+ *
3522
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
3096
3523
  */
3097
3524
  indexOfCell(
3098
3525
  /**
@@ -3102,6 +3529,8 @@ declare namespace sap {
3102
3529
  ): int;
3103
3530
  /**
3104
3531
  * Inserts a cell into the aggregation {@link #getCells cells}.
3532
+ *
3533
+ * @returns Reference to `this` in order to allow method chaining
3105
3534
  */
3106
3535
  insertCell(
3107
3536
  /**
@@ -3119,10 +3548,14 @@ declare namespace sap {
3119
3548
  * Removes all the controls from the aggregation {@link #getCells cells}.
3120
3549
  *
3121
3550
  * Additionally, it unregisters them from the hosting UIArea.
3551
+ *
3552
+ * @returns An array of the removed elements (might be empty)
3122
3553
  */
3123
3554
  removeAllCells(): sap.makit.Column[];
3124
3555
  /**
3125
3556
  * Removes a cell from the aggregation {@link #getCells cells}.
3557
+ *
3558
+ * @returns The removed cell or `null`
3126
3559
  */
3127
3560
  removeCell(
3128
3561
  /**
@@ -3175,6 +3608,8 @@ declare namespace sap {
3175
3608
  * contained in `oClassInfo`.
3176
3609
  *
3177
3610
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
3611
+ *
3612
+ * @returns Created class / constructor function
3178
3613
  */
3179
3614
  static extend<T extends Record<string, unknown>>(
3180
3615
  /**
@@ -3193,18 +3628,24 @@ declare namespace sap {
3193
3628
  ): Function;
3194
3629
  /**
3195
3630
  * Returns a metadata object for class sap.makit.Series.
3631
+ *
3632
+ * @returns Metadata object describing this class
3196
3633
  */
3197
3634
  static getMetadata(): sap.ui.core.ElementMetadata;
3198
3635
  /**
3199
3636
  * Gets current value of property {@link #getColumn column}.
3200
3637
  *
3201
3638
  * The name of the column that will be mapped to the chart's Series value
3639
+ *
3640
+ * @returns Value of property `column`
3202
3641
  */
3203
3642
  getColumn(): string;
3204
3643
  /**
3205
3644
  * Gets current value of property {@link #getDisplayName displayName}.
3206
3645
  *
3207
3646
  * The displayed name of the Series
3647
+ *
3648
+ * @returns Value of property `displayName`
3208
3649
  */
3209
3650
  getDisplayName(): string;
3210
3651
  /**
@@ -3212,6 +3653,8 @@ declare namespace sap {
3212
3653
  *
3213
3654
  * Number formatting for the value. Accepted values: number currency percent roundedN - where N represents
3214
3655
  * number of decimal places e.g. rounded4
3656
+ *
3657
+ * @returns Value of property `format`
3215
3658
  */
3216
3659
  getFormat(): string;
3217
3660
  /**
@@ -3220,6 +3663,8 @@ declare namespace sap {
3220
3663
  * The name of the column that will be mapped to the chart's Series value
3221
3664
  *
3222
3665
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3666
+ *
3667
+ * @returns Reference to `this` in order to allow method chaining
3223
3668
  */
3224
3669
  setColumn(
3225
3670
  /**
@@ -3233,6 +3678,8 @@ declare namespace sap {
3233
3678
  * The displayed name of the Series
3234
3679
  *
3235
3680
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3681
+ *
3682
+ * @returns Reference to `this` in order to allow method chaining
3236
3683
  */
3237
3684
  setDisplayName(
3238
3685
  /**
@@ -3247,6 +3694,8 @@ declare namespace sap {
3247
3694
  * number of decimal places e.g. rounded4
3248
3695
  *
3249
3696
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3697
+ *
3698
+ * @returns Reference to `this` in order to allow method chaining
3250
3699
  */
3251
3700
  setFormat(
3252
3701
  /**
@@ -3299,6 +3748,8 @@ declare namespace sap {
3299
3748
  * contained in `oClassInfo`.
3300
3749
  *
3301
3750
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
3751
+ *
3752
+ * @returns Created class / constructor function
3302
3753
  */
3303
3754
  static extend<T extends Record<string, unknown>>(
3304
3755
  /**
@@ -3317,12 +3768,16 @@ declare namespace sap {
3317
3768
  ): Function;
3318
3769
  /**
3319
3770
  * Returns a metadata object for class sap.makit.Value.
3771
+ *
3772
+ * @returns Metadata object describing this class
3320
3773
  */
3321
3774
  static getMetadata(): sap.ui.core.ElementMetadata;
3322
3775
  /**
3323
3776
  * Gets current value of property {@link #getDisplayName displayName}.
3324
3777
  *
3325
3778
  * The text label representing this Value (on value bubble or table's header)
3779
+ *
3780
+ * @returns Value of property `displayName`
3326
3781
  */
3327
3782
  getDisplayName(): string;
3328
3783
  /**
@@ -3333,6 +3788,8 @@ declare namespace sap {
3333
3788
  * e.g. Assuming the user has a revenueValue column and an operatingCost column, the user can specify the
3334
3789
  * following expression: "revenueValue - operatingCost" the resulting value displayed in the chart will
3335
3790
  * be the arithmatic operation result on these two columns.
3791
+ *
3792
+ * @returns Value of property `expression`
3336
3793
  */
3337
3794
  getExpression(): string;
3338
3795
  /**
@@ -3340,6 +3797,8 @@ declare namespace sap {
3340
3797
  *
3341
3798
  * Number formatting for the value. Accepted values: number currency percent roundedN - where N represents
3342
3799
  * number of decimal places e.g. rounded4
3800
+ *
3801
+ * @returns Value of property `format`
3343
3802
  */
3344
3803
  getFormat(): string;
3345
3804
  /**
@@ -3350,6 +3809,8 @@ declare namespace sap {
3350
3809
  * of the first series, en-US will be applied to the second series. Currently will only work with 'currency'
3351
3810
  * format. Supported locales: en, zh, de, fr, es, ru, ja, pt and their more specific variations such as
3352
3811
  * en-CA, es-AR, zh-HK, etc.
3812
+ *
3813
+ * @returns Value of property `locale`
3353
3814
  */
3354
3815
  getLocale(): string;
3355
3816
  /**
@@ -3358,6 +3819,8 @@ declare namespace sap {
3358
3819
  * The text label representing this Value (on value bubble or table's header)
3359
3820
  *
3360
3821
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3822
+ *
3823
+ * @returns Reference to `this` in order to allow method chaining
3361
3824
  */
3362
3825
  setDisplayName(
3363
3826
  /**
@@ -3375,6 +3838,8 @@ declare namespace sap {
3375
3838
  * be the arithmatic operation result on these two columns.
3376
3839
  *
3377
3840
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3841
+ *
3842
+ * @returns Reference to `this` in order to allow method chaining
3378
3843
  */
3379
3844
  setExpression(
3380
3845
  /**
@@ -3389,6 +3854,8 @@ declare namespace sap {
3389
3854
  * number of decimal places e.g. rounded4
3390
3855
  *
3391
3856
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3857
+ *
3858
+ * @returns Reference to `this` in order to allow method chaining
3392
3859
  */
3393
3860
  setFormat(
3394
3861
  /**
@@ -3406,6 +3873,8 @@ declare namespace sap {
3406
3873
  * en-CA, es-AR, zh-HK, etc.
3407
3874
  *
3408
3875
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3876
+ *
3877
+ * @returns Reference to `this` in order to allow method chaining
3409
3878
  */
3410
3879
  setLocale(
3411
3880
  /**
@@ -3458,6 +3927,8 @@ declare namespace sap {
3458
3927
  * contained in `oClassInfo`.
3459
3928
  *
3460
3929
  * `oClassInfo` might contain the same kind of information as described in {@link sap.makit.Axis.extend}.
3930
+ *
3931
+ * @returns Created class / constructor function
3461
3932
  */
3462
3933
  static extend<T extends Record<string, unknown>>(
3463
3934
  /**
@@ -3476,6 +3947,8 @@ declare namespace sap {
3476
3947
  ): Function;
3477
3948
  /**
3478
3949
  * Returns a metadata object for class sap.makit.ValueAxis.
3950
+ *
3951
+ * @returns Metadata object describing this class
3479
3952
  */
3480
3953
  static getMetadata(): sap.ui.core.ElementMetadata;
3481
3954
  /**
@@ -3483,6 +3956,8 @@ declare namespace sap {
3483
3956
  *
3484
3957
  * Highest displayed value on the Value Axis (this value will be automatically adjusted to nearest major
3485
3958
  * tick value depending on the value's range)
3959
+ *
3960
+ * @returns Value of property `max`
3486
3961
  */
3487
3962
  getMax(): string;
3488
3963
  /**
@@ -3490,6 +3965,8 @@ declare namespace sap {
3490
3965
  *
3491
3966
  * Highest displayed value on the Value Axis (this value will be automatically adjusted to nearest major
3492
3967
  * tick value depending on the value's range). Set to empty string to switch back to automatic calculation.
3968
+ *
3969
+ * @returns Value of property `min`
3493
3970
  */
3494
3971
  getMin(): string;
3495
3972
  /**
@@ -3499,6 +3976,8 @@ declare namespace sap {
3499
3976
  * tick value depending on the value's range)
3500
3977
  *
3501
3978
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3979
+ *
3980
+ * @returns Reference to `this` in order to allow method chaining
3502
3981
  */
3503
3982
  setMax(
3504
3983
  /**
@@ -3513,6 +3992,8 @@ declare namespace sap {
3513
3992
  * tick value depending on the value's range). Set to empty string to switch back to automatic calculation.
3514
3993
  *
3515
3994
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3995
+ *
3996
+ * @returns Reference to `this` in order to allow method chaining
3516
3997
  */
3517
3998
  setMin(
3518
3999
  /**
@@ -3565,6 +4046,8 @@ declare namespace sap {
3565
4046
  * information contained in `oClassInfo`.
3566
4047
  *
3567
4048
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
4049
+ *
4050
+ * @returns Created class / constructor function
3568
4051
  */
3569
4052
  static extend<T extends Record<string, unknown>>(
3570
4053
  /**
@@ -3583,6 +4066,8 @@ declare namespace sap {
3583
4066
  ): Function;
3584
4067
  /**
3585
4068
  * Returns a metadata object for class sap.makit.ValueBubble.
4069
+ *
4070
+ * @returns Metadata object describing this class
3586
4071
  */
3587
4072
  static getMetadata(): sap.ui.core.ElementMetadata;
3588
4073
  /**
@@ -3591,6 +4076,8 @@ declare namespace sap {
3591
4076
  * The position of the Value Bubble (Pie or Donut chart only)
3592
4077
  *
3593
4078
  * Default value is `Top`.
4079
+ *
4080
+ * @returns Value of property `position`
3594
4081
  */
3595
4082
  getPosition(): sap.makit.ValueBubblePosition;
3596
4083
  /**
@@ -3599,6 +4086,8 @@ declare namespace sap {
3599
4086
  * Whether to display category's display name on the Value Bubble
3600
4087
  *
3601
4088
  * Default value is `true`.
4089
+ *
4090
+ * @returns Value of property `showCategoryDisplayName`
3602
4091
  */
3603
4092
  getShowCategoryDisplayName(): boolean;
3604
4093
  /**
@@ -3607,6 +4096,8 @@ declare namespace sap {
3607
4096
  * Whether to display category's text on the Value Bubble
3608
4097
  *
3609
4098
  * Default value is `true`.
4099
+ *
4100
+ * @returns Value of property `showCategoryText`
3610
4101
  */
3611
4102
  getShowCategoryText(): boolean;
3612
4103
  /**
@@ -3615,6 +4106,8 @@ declare namespace sap {
3615
4106
  * Whether to display legend's label (Pie or Donut chart only)
3616
4107
  *
3617
4108
  * Default value is `true`.
4109
+ *
4110
+ * @returns Value of property `showLegendLabel`
3618
4111
  */
3619
4112
  getShowLegendLabel(): boolean;
3620
4113
  /**
@@ -3623,6 +4116,8 @@ declare namespace sap {
3623
4116
  * Whether to render null item on the Value Bubble
3624
4117
  *
3625
4118
  * Default value is `true`.
4119
+ *
4120
+ * @returns Value of property `showNullValue`
3626
4121
  */
3627
4122
  getShowNullValue(): boolean;
3628
4123
  /**
@@ -3631,6 +4126,8 @@ declare namespace sap {
3631
4126
  * Whether to display value's display name on the Value Bubble
3632
4127
  *
3633
4128
  * Default value is `true`.
4129
+ *
4130
+ * @returns Value of property `showValueDisplayName`
3634
4131
  */
3635
4132
  getShowValueDisplayName(): boolean;
3636
4133
  /**
@@ -3639,6 +4136,8 @@ declare namespace sap {
3639
4136
  * Whether to display value on Pie or Donut chart
3640
4137
  *
3641
4138
  * Default value is `false`.
4139
+ *
4140
+ * @returns Value of property `showValueOnPieChart`
3642
4141
  */
3643
4142
  getShowValueOnPieChart(): boolean;
3644
4143
  /**
@@ -3647,6 +4146,8 @@ declare namespace sap {
3647
4146
  * Value Bubble positioning style (All the chart types except: Pie/Donut/HBar chart)
3648
4147
  *
3649
4148
  * Default value is `Top`.
4149
+ *
4150
+ * @returns Value of property `style`
3650
4151
  */
3651
4152
  getStyle(): sap.makit.ValueBubbleStyle;
3652
4153
  /**
@@ -3655,6 +4156,8 @@ declare namespace sap {
3655
4156
  * Whether the Value Bubble is visible
3656
4157
  *
3657
4158
  * Default value is `true`.
4159
+ *
4160
+ * @returns Value of property `visible`
3658
4161
  */
3659
4162
  getVisible(): boolean;
3660
4163
  /**
@@ -3665,6 +4168,8 @@ declare namespace sap {
3665
4168
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3666
4169
  *
3667
4170
  * Default value is `Top`.
4171
+ *
4172
+ * @returns Reference to `this` in order to allow method chaining
3668
4173
  */
3669
4174
  setPosition(
3670
4175
  /**
@@ -3680,6 +4185,8 @@ declare namespace sap {
3680
4185
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3681
4186
  *
3682
4187
  * Default value is `true`.
4188
+ *
4189
+ * @returns Reference to `this` in order to allow method chaining
3683
4190
  */
3684
4191
  setShowCategoryDisplayName(
3685
4192
  /**
@@ -3695,6 +4202,8 @@ declare namespace sap {
3695
4202
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3696
4203
  *
3697
4204
  * Default value is `true`.
4205
+ *
4206
+ * @returns Reference to `this` in order to allow method chaining
3698
4207
  */
3699
4208
  setShowCategoryText(
3700
4209
  /**
@@ -3710,6 +4219,8 @@ declare namespace sap {
3710
4219
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3711
4220
  *
3712
4221
  * Default value is `true`.
4222
+ *
4223
+ * @returns Reference to `this` in order to allow method chaining
3713
4224
  */
3714
4225
  setShowLegendLabel(
3715
4226
  /**
@@ -3725,6 +4236,8 @@ declare namespace sap {
3725
4236
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3726
4237
  *
3727
4238
  * Default value is `true`.
4239
+ *
4240
+ * @returns Reference to `this` in order to allow method chaining
3728
4241
  */
3729
4242
  setShowNullValue(
3730
4243
  /**
@@ -3740,6 +4253,8 @@ declare namespace sap {
3740
4253
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3741
4254
  *
3742
4255
  * Default value is `true`.
4256
+ *
4257
+ * @returns Reference to `this` in order to allow method chaining
3743
4258
  */
3744
4259
  setShowValueDisplayName(
3745
4260
  /**
@@ -3755,6 +4270,8 @@ declare namespace sap {
3755
4270
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3756
4271
  *
3757
4272
  * Default value is `false`.
4273
+ *
4274
+ * @returns Reference to `this` in order to allow method chaining
3758
4275
  */
3759
4276
  setShowValueOnPieChart(
3760
4277
  /**
@@ -3770,6 +4287,8 @@ declare namespace sap {
3770
4287
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3771
4288
  *
3772
4289
  * Default value is `Top`.
4290
+ *
4291
+ * @returns Reference to `this` in order to allow method chaining
3773
4292
  */
3774
4293
  setStyle(
3775
4294
  /**
@@ -3785,6 +4304,8 @@ declare namespace sap {
3785
4304
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3786
4305
  *
3787
4306
  * Default value is `true`.
4307
+ *
4308
+ * @returns Reference to `this` in order to allow method chaining
3788
4309
  */
3789
4310
  setVisible(
3790
4311
  /**