@sapui5/types 1.120.11 → 1.120.13

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 (55) hide show
  1. package/LICENSE.txt +13 -10
  2. package/README.md +1 -1
  3. package/package.json +1 -1
  4. package/types/sap.chart.d.ts +58 -6
  5. package/types/sap.esh.search.ui.d.ts +16 -2
  6. package/types/sap.f.d.ts +372 -54
  7. package/types/sap.fe.core.d.ts +11 -3
  8. package/types/sap.fe.macros.d.ts +96 -12
  9. package/types/sap.fe.navigation.d.ts +1 -1
  10. package/types/sap.fe.placeholder.d.ts +1 -1
  11. package/types/sap.fe.templates.d.ts +1 -1
  12. package/types/sap.fe.test.d.ts +1 -1
  13. package/types/sap.fe.tools.d.ts +1 -1
  14. package/types/sap.gantt.d.ts +1001 -139
  15. package/types/sap.insights.d.ts +4 -2
  16. package/types/sap.m.d.ts +3123 -276
  17. package/types/sap.makit.d.ts +115 -14
  18. package/types/sap.me.d.ts +84 -7
  19. package/types/sap.ndc.d.ts +22 -2
  20. package/types/sap.ovp.d.ts +1 -1
  21. package/types/sap.sac.df.d.ts +294 -44
  22. package/types/sap.suite.ui.commons.d.ts +1148 -118
  23. package/types/sap.suite.ui.generic.template.d.ts +10 -2
  24. package/types/sap.suite.ui.microchart.d.ts +184 -28
  25. package/types/sap.tnt.d.ts +40 -8
  26. package/types/sap.ui.codeeditor.d.ts +16 -2
  27. package/types/sap.ui.commons.d.ts +756 -90
  28. package/types/sap.ui.comp.d.ts +884 -50
  29. package/types/sap.ui.core.d.ts +1112 -135
  30. package/types/sap.ui.dt.d.ts +1 -1
  31. package/types/sap.ui.export.d.ts +19 -4
  32. package/types/sap.ui.fl.d.ts +44 -3
  33. package/types/sap.ui.integration.d.ts +144 -6
  34. package/types/sap.ui.layout.d.ts +166 -41
  35. package/types/sap.ui.mdc.d.ts +430 -38
  36. package/types/sap.ui.richtexteditor.d.ts +28 -2
  37. package/types/sap.ui.rta.d.ts +1 -1
  38. package/types/sap.ui.suite.d.ts +27 -3
  39. package/types/sap.ui.support.d.ts +1 -1
  40. package/types/sap.ui.table.d.ts +222 -19
  41. package/types/sap.ui.testrecorder.d.ts +1 -1
  42. package/types/sap.ui.unified.d.ts +431 -35
  43. package/types/sap.ui.ux3.d.ts +524 -31
  44. package/types/sap.ui.vbm.d.ts +6427 -3308
  45. package/types/sap.ui.webc.common.d.ts +7 -1
  46. package/types/sap.ui.webc.fiori.d.ts +351 -29
  47. package/types/sap.ui.webc.main.d.ts +1035 -83
  48. package/types/sap.uiext.inbox.d.ts +124 -13
  49. package/types/sap.ushell.d.ts +147 -12
  50. package/types/sap.ushell_abap.d.ts +1 -1
  51. package/types/sap.uxap.d.ts +118 -18
  52. package/types/sap.viz.d.ts +2619 -130
  53. package/types/sap.zen.commons.d.ts +104 -23
  54. package/types/sap.zen.crosstab.d.ts +96 -16
  55. package/types/sap.zen.dsh.d.ts +255 -149
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.11
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare module "sap/viz/library" {
4
4
  export namespace ui5 {
@@ -2082,7 +2082,15 @@ declare module "sap/viz/ui5/Area" {
2082
2082
  oYAxis: Axis
2083
2083
  ): this;
2084
2084
  }
2085
-
2085
+ /**
2086
+ * Describes the settings that can be provided to the Area constructor.
2087
+ *
2088
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
2089
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
2090
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
2091
+ * distribution for backward compatibility.
2092
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
2093
+ */
2086
2094
  export interface $AreaSettings extends $BaseChartSettings {
2087
2095
  /**
2088
2096
  * Module sap.viz.modules.rootContainer
@@ -2196,36 +2204,78 @@ declare module "sap/viz/ui5/Area" {
2196
2204
  initialized?: (oEvent: Event) => void;
2197
2205
  }
2198
2206
 
2207
+ /**
2208
+ * Parameters of the Area#deselectData event.
2209
+ */
2199
2210
  export interface Area$DeselectDataEventParameters {}
2200
2211
 
2212
+ /**
2213
+ * Event object of the Area#deselectData event.
2214
+ */
2201
2215
  export type Area$DeselectDataEvent = Event<
2202
2216
  Area$DeselectDataEventParameters,
2203
2217
  Area
2204
2218
  >;
2205
2219
 
2220
+ /**
2221
+ * Parameters of the Area#hideTooltip event.
2222
+ *
2223
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
2224
+ * SAPUI5 delivery in one of the next releases.
2225
+ */
2206
2226
  export interface Area$HideTooltipEventParameters {}
2207
2227
 
2228
+ /**
2229
+ * Event object of the Area#hideTooltip event.
2230
+ *
2231
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
2232
+ * SAPUI5 delivery in one of the next releases.
2233
+ */
2208
2234
  export type Area$HideTooltipEvent = Event<
2209
2235
  Area$HideTooltipEventParameters,
2210
2236
  Area
2211
2237
  >;
2212
2238
 
2239
+ /**
2240
+ * Parameters of the Area#initialized event.
2241
+ */
2213
2242
  export interface Area$InitializedEventParameters {}
2214
2243
 
2244
+ /**
2245
+ * Event object of the Area#initialized event.
2246
+ */
2215
2247
  export type Area$InitializedEvent = Event<
2216
2248
  Area$InitializedEventParameters,
2217
2249
  Area
2218
2250
  >;
2219
2251
 
2252
+ /**
2253
+ * Parameters of the Area#selectData event.
2254
+ */
2220
2255
  export interface Area$SelectDataEventParameters {}
2221
2256
 
2257
+ /**
2258
+ * Event object of the Area#selectData event.
2259
+ */
2222
2260
  export type Area$SelectDataEvent = Event<
2223
2261
  Area$SelectDataEventParameters,
2224
2262
  Area
2225
2263
  >;
2226
2264
 
2265
+ /**
2266
+ * Parameters of the Area#showTooltip event.
2267
+ *
2268
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
2269
+ * SAPUI5 delivery in one of the next releases.
2270
+ */
2227
2271
  export interface Area$ShowTooltipEventParameters {}
2228
2272
 
2273
+ /**
2274
+ * Event object of the Area#showTooltip event.
2275
+ *
2276
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
2277
+ * SAPUI5 delivery in one of the next releases.
2278
+ */
2229
2279
  export type Area$ShowTooltipEvent = Event<
2230
2280
  Area$ShowTooltipEventParameters,
2231
2281
  Area
@@ -3084,7 +3134,15 @@ declare module "sap/viz/ui5/Area100" {
3084
3134
  oYAxis: Axis
3085
3135
  ): this;
3086
3136
  }
3087
-
3137
+ /**
3138
+ * Describes the settings that can be provided to the Area100 constructor.
3139
+ *
3140
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
3141
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
3142
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
3143
+ * distribution for backward compatibility.
3144
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
3145
+ */
3088
3146
  export interface $Area100Settings extends $BaseChartSettings {
3089
3147
  /**
3090
3148
  * Module sap.viz.modules.rootContainer
@@ -3198,36 +3256,78 @@ declare module "sap/viz/ui5/Area100" {
3198
3256
  initialized?: (oEvent: Event) => void;
3199
3257
  }
3200
3258
 
3259
+ /**
3260
+ * Parameters of the Area100#deselectData event.
3261
+ */
3201
3262
  export interface Area100$DeselectDataEventParameters {}
3202
3263
 
3264
+ /**
3265
+ * Event object of the Area100#deselectData event.
3266
+ */
3203
3267
  export type Area100$DeselectDataEvent = Event<
3204
3268
  Area100$DeselectDataEventParameters,
3205
3269
  Area100
3206
3270
  >;
3207
3271
 
3272
+ /**
3273
+ * Parameters of the Area100#hideTooltip event.
3274
+ *
3275
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
3276
+ * SAPUI5 delivery in one of the next releases.
3277
+ */
3208
3278
  export interface Area100$HideTooltipEventParameters {}
3209
3279
 
3280
+ /**
3281
+ * Event object of the Area100#hideTooltip event.
3282
+ *
3283
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
3284
+ * SAPUI5 delivery in one of the next releases.
3285
+ */
3210
3286
  export type Area100$HideTooltipEvent = Event<
3211
3287
  Area100$HideTooltipEventParameters,
3212
3288
  Area100
3213
3289
  >;
3214
3290
 
3291
+ /**
3292
+ * Parameters of the Area100#initialized event.
3293
+ */
3215
3294
  export interface Area100$InitializedEventParameters {}
3216
3295
 
3296
+ /**
3297
+ * Event object of the Area100#initialized event.
3298
+ */
3217
3299
  export type Area100$InitializedEvent = Event<
3218
3300
  Area100$InitializedEventParameters,
3219
3301
  Area100
3220
3302
  >;
3221
3303
 
3304
+ /**
3305
+ * Parameters of the Area100#selectData event.
3306
+ */
3222
3307
  export interface Area100$SelectDataEventParameters {}
3223
3308
 
3309
+ /**
3310
+ * Event object of the Area100#selectData event.
3311
+ */
3224
3312
  export type Area100$SelectDataEvent = Event<
3225
3313
  Area100$SelectDataEventParameters,
3226
3314
  Area100
3227
3315
  >;
3228
3316
 
3317
+ /**
3318
+ * Parameters of the Area100#showTooltip event.
3319
+ *
3320
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
3321
+ * SAPUI5 delivery in one of the next releases.
3322
+ */
3229
3323
  export interface Area100$ShowTooltipEventParameters {}
3230
3324
 
3325
+ /**
3326
+ * Event object of the Area100#showTooltip event.
3327
+ *
3328
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
3329
+ * SAPUI5 delivery in one of the next releases.
3330
+ */
3231
3331
  export type Area100$ShowTooltipEvent = Event<
3232
3332
  Area100$ShowTooltipEventParameters,
3233
3333
  Area100
@@ -4093,7 +4193,22 @@ declare module "sap/viz/ui5/Bar" {
4093
4193
  oYAxis: Axis
4094
4194
  ): this;
4095
4195
  }
4096
-
4196
+ /**
4197
+ * Describes the settings that can be provided to the Bar constructor.
4198
+ *
4199
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
4200
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
4201
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
4202
+ * distribution for backward compatibility.
4203
+ *
4204
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame}**(`new
4205
+ * sap.viz.ui5.controls.VizFrame({'vizType': 'bar'})`) **control to benefit from new charting enhancements
4206
+ * and timely support. **
4207
+ *
4208
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
4209
+ * make sure you evaluate it thoroughly before migration.
4210
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
4211
+ */
4097
4212
  export interface $BarSettings extends $BaseChartSettings {
4098
4213
  /**
4099
4214
  * Module sap.viz.modules.rootContainer
@@ -4207,27 +4322,69 @@ declare module "sap/viz/ui5/Bar" {
4207
4322
  initialized?: (oEvent: Event) => void;
4208
4323
  }
4209
4324
 
4325
+ /**
4326
+ * Parameters of the Bar#deselectData event.
4327
+ */
4210
4328
  export interface Bar$DeselectDataEventParameters {}
4211
4329
 
4330
+ /**
4331
+ * Event object of the Bar#deselectData event.
4332
+ */
4212
4333
  export type Bar$DeselectDataEvent = Event<
4213
4334
  Bar$DeselectDataEventParameters,
4214
4335
  Bar
4215
4336
  >;
4216
4337
 
4338
+ /**
4339
+ * Parameters of the Bar#hideTooltip event.
4340
+ *
4341
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
4342
+ * SAPUI5 delivery in one of the next releases.
4343
+ */
4217
4344
  export interface Bar$HideTooltipEventParameters {}
4218
4345
 
4346
+ /**
4347
+ * Event object of the Bar#hideTooltip event.
4348
+ *
4349
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
4350
+ * SAPUI5 delivery in one of the next releases.
4351
+ */
4219
4352
  export type Bar$HideTooltipEvent = Event<Bar$HideTooltipEventParameters, Bar>;
4220
4353
 
4354
+ /**
4355
+ * Parameters of the Bar#initialized event.
4356
+ */
4221
4357
  export interface Bar$InitializedEventParameters {}
4222
4358
 
4359
+ /**
4360
+ * Event object of the Bar#initialized event.
4361
+ */
4223
4362
  export type Bar$InitializedEvent = Event<Bar$InitializedEventParameters, Bar>;
4224
4363
 
4364
+ /**
4365
+ * Parameters of the Bar#selectData event.
4366
+ */
4225
4367
  export interface Bar$SelectDataEventParameters {}
4226
4368
 
4369
+ /**
4370
+ * Event object of the Bar#selectData event.
4371
+ */
4227
4372
  export type Bar$SelectDataEvent = Event<Bar$SelectDataEventParameters, Bar>;
4228
4373
 
4374
+ /**
4375
+ * Parameters of the Bar#showTooltip event.
4376
+ *
4377
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
4378
+ * SAPUI5 delivery in one of the next releases.
4379
+ */
4229
4380
  export interface Bar$ShowTooltipEventParameters {}
4230
4381
 
4382
+ /**
4383
+ * Event object of the Bar#showTooltip event.
4384
+ *
4385
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
4386
+ * SAPUI5 delivery in one of the next releases.
4387
+ */
4231
4388
  export type Bar$ShowTooltipEvent = Event<Bar$ShowTooltipEventParameters, Bar>;
4232
4389
  }
4233
4390
 
@@ -5115,7 +5272,22 @@ declare module "sap/viz/ui5/Bubble" {
5115
5272
  oYAxis: Axis
5116
5273
  ): this;
5117
5274
  }
5118
-
5275
+ /**
5276
+ * Describes the settings that can be provided to the Bubble constructor.
5277
+ *
5278
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
5279
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
5280
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
5281
+ * distribution for backward compatibility.
5282
+ *
5283
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame}**(`new
5284
+ * sap.viz.ui5.controls.VizFrame({'vizType': 'bubble'})`) **control to benefit from new charting enhancements
5285
+ * and timely support. **
5286
+ *
5287
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
5288
+ * make sure you evaluate it thoroughly before migration.
5289
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
5290
+ */
5119
5291
  export interface $BubbleSettings extends $BaseChartSettings {
5120
5292
  /**
5121
5293
  * Module sap.viz.modules.rootContainer
@@ -5234,36 +5406,78 @@ declare module "sap/viz/ui5/Bubble" {
5234
5406
  initialized?: (oEvent: Event) => void;
5235
5407
  }
5236
5408
 
5409
+ /**
5410
+ * Parameters of the Bubble#deselectData event.
5411
+ */
5237
5412
  export interface Bubble$DeselectDataEventParameters {}
5238
5413
 
5414
+ /**
5415
+ * Event object of the Bubble#deselectData event.
5416
+ */
5239
5417
  export type Bubble$DeselectDataEvent = Event<
5240
5418
  Bubble$DeselectDataEventParameters,
5241
5419
  Bubble
5242
5420
  >;
5243
5421
 
5422
+ /**
5423
+ * Parameters of the Bubble#hideTooltip event.
5424
+ *
5425
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
5426
+ * SAPUI5 delivery in one of the next releases.
5427
+ */
5244
5428
  export interface Bubble$HideTooltipEventParameters {}
5245
5429
 
5430
+ /**
5431
+ * Event object of the Bubble#hideTooltip event.
5432
+ *
5433
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
5434
+ * SAPUI5 delivery in one of the next releases.
5435
+ */
5246
5436
  export type Bubble$HideTooltipEvent = Event<
5247
5437
  Bubble$HideTooltipEventParameters,
5248
5438
  Bubble
5249
5439
  >;
5250
5440
 
5441
+ /**
5442
+ * Parameters of the Bubble#initialized event.
5443
+ */
5251
5444
  export interface Bubble$InitializedEventParameters {}
5252
5445
 
5446
+ /**
5447
+ * Event object of the Bubble#initialized event.
5448
+ */
5253
5449
  export type Bubble$InitializedEvent = Event<
5254
5450
  Bubble$InitializedEventParameters,
5255
5451
  Bubble
5256
5452
  >;
5257
5453
 
5454
+ /**
5455
+ * Parameters of the Bubble#selectData event.
5456
+ */
5258
5457
  export interface Bubble$SelectDataEventParameters {}
5259
5458
 
5459
+ /**
5460
+ * Event object of the Bubble#selectData event.
5461
+ */
5260
5462
  export type Bubble$SelectDataEvent = Event<
5261
5463
  Bubble$SelectDataEventParameters,
5262
5464
  Bubble
5263
5465
  >;
5264
5466
 
5467
+ /**
5468
+ * Parameters of the Bubble#showTooltip event.
5469
+ *
5470
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
5471
+ * SAPUI5 delivery in one of the next releases.
5472
+ */
5265
5473
  export interface Bubble$ShowTooltipEventParameters {}
5266
5474
 
5475
+ /**
5476
+ * Event object of the Bubble#showTooltip event.
5477
+ *
5478
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
5479
+ * SAPUI5 delivery in one of the next releases.
5480
+ */
5267
5481
  export type Bubble$ShowTooltipEvent = Event<
5268
5482
  Bubble$ShowTooltipEventParameters,
5269
5483
  Bubble
@@ -6073,7 +6287,22 @@ declare module "sap/viz/ui5/Bullet" {
6073
6287
  oYAxis2: Axis
6074
6288
  ): this;
6075
6289
  }
6076
-
6290
+ /**
6291
+ * Describes the settings that can be provided to the Bullet constructor.
6292
+ *
6293
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
6294
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
6295
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
6296
+ * distribution for backward compatibility.
6297
+ *
6298
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame}**(`new
6299
+ * sap.viz.ui5.controls.VizFrame({'vizType': 'vertical_bullet'})`) **control to benefit from new charting
6300
+ * enhancements and timely support. **
6301
+ *
6302
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
6303
+ * make sure you evaluate it thoroughly before migration.
6304
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
6305
+ */
6077
6306
  export interface $BulletSettings extends $BaseChartSettings {
6078
6307
  /**
6079
6308
  * Module sap.viz.modules.rootContainer
@@ -6177,36 +6406,78 @@ declare module "sap/viz/ui5/Bullet" {
6177
6406
  initialized?: (oEvent: Event) => void;
6178
6407
  }
6179
6408
 
6409
+ /**
6410
+ * Parameters of the Bullet#deselectData event.
6411
+ */
6180
6412
  export interface Bullet$DeselectDataEventParameters {}
6181
6413
 
6414
+ /**
6415
+ * Event object of the Bullet#deselectData event.
6416
+ */
6182
6417
  export type Bullet$DeselectDataEvent = Event<
6183
6418
  Bullet$DeselectDataEventParameters,
6184
6419
  Bullet
6185
6420
  >;
6186
6421
 
6422
+ /**
6423
+ * Parameters of the Bullet#hideTooltip event.
6424
+ *
6425
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
6426
+ * SAPUI5 delivery in one of the next releases.
6427
+ */
6187
6428
  export interface Bullet$HideTooltipEventParameters {}
6188
6429
 
6430
+ /**
6431
+ * Event object of the Bullet#hideTooltip event.
6432
+ *
6433
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
6434
+ * SAPUI5 delivery in one of the next releases.
6435
+ */
6189
6436
  export type Bullet$HideTooltipEvent = Event<
6190
6437
  Bullet$HideTooltipEventParameters,
6191
6438
  Bullet
6192
6439
  >;
6193
6440
 
6441
+ /**
6442
+ * Parameters of the Bullet#initialized event.
6443
+ */
6194
6444
  export interface Bullet$InitializedEventParameters {}
6195
6445
 
6446
+ /**
6447
+ * Event object of the Bullet#initialized event.
6448
+ */
6196
6449
  export type Bullet$InitializedEvent = Event<
6197
6450
  Bullet$InitializedEventParameters,
6198
6451
  Bullet
6199
6452
  >;
6200
6453
 
6454
+ /**
6455
+ * Parameters of the Bullet#selectData event.
6456
+ */
6201
6457
  export interface Bullet$SelectDataEventParameters {}
6202
6458
 
6459
+ /**
6460
+ * Event object of the Bullet#selectData event.
6461
+ */
6203
6462
  export type Bullet$SelectDataEvent = Event<
6204
6463
  Bullet$SelectDataEventParameters,
6205
6464
  Bullet
6206
6465
  >;
6207
6466
 
6467
+ /**
6468
+ * Parameters of the Bullet#showTooltip event.
6469
+ *
6470
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
6471
+ * SAPUI5 delivery in one of the next releases.
6472
+ */
6208
6473
  export interface Bullet$ShowTooltipEventParameters {}
6209
6474
 
6475
+ /**
6476
+ * Event object of the Bullet#showTooltip event.
6477
+ *
6478
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
6479
+ * SAPUI5 delivery in one of the next releases.
6480
+ */
6210
6481
  export type Bullet$ShowTooltipEvent = Event<
6211
6482
  Bullet$ShowTooltipEventParameters,
6212
6483
  Bullet
@@ -7072,7 +7343,22 @@ declare module "sap/viz/ui5/Column" {
7072
7343
  oYAxis: Axis
7073
7344
  ): this;
7074
7345
  }
7075
-
7346
+ /**
7347
+ * Describes the settings that can be provided to the Column constructor.
7348
+ *
7349
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
7350
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
7351
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
7352
+ * distribution for backward compatibility.
7353
+ *
7354
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame}**(`new
7355
+ * sap.viz.ui5.controls.VizFrame({'vizType': 'column'})`) **control to benefit from new charting enhancements
7356
+ * and timely support. **
7357
+ *
7358
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
7359
+ * make sure you evaluate it thoroughly before migration.
7360
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
7361
+ */
7076
7362
  export interface $ColumnSettings extends $BaseChartSettings {
7077
7363
  /**
7078
7364
  * Module sap.viz.modules.rootContainer
@@ -7186,36 +7472,78 @@ declare module "sap/viz/ui5/Column" {
7186
7472
  initialized?: (oEvent: Event) => void;
7187
7473
  }
7188
7474
 
7475
+ /**
7476
+ * Parameters of the Column#deselectData event.
7477
+ */
7189
7478
  export interface Column$DeselectDataEventParameters {}
7190
7479
 
7480
+ /**
7481
+ * Event object of the Column#deselectData event.
7482
+ */
7191
7483
  export type Column$DeselectDataEvent = Event<
7192
7484
  Column$DeselectDataEventParameters,
7193
7485
  Column
7194
7486
  >;
7195
7487
 
7488
+ /**
7489
+ * Parameters of the Column#hideTooltip event.
7490
+ *
7491
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
7492
+ * SAPUI5 delivery in one of the next releases.
7493
+ */
7196
7494
  export interface Column$HideTooltipEventParameters {}
7197
7495
 
7496
+ /**
7497
+ * Event object of the Column#hideTooltip event.
7498
+ *
7499
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
7500
+ * SAPUI5 delivery in one of the next releases.
7501
+ */
7198
7502
  export type Column$HideTooltipEvent = Event<
7199
7503
  Column$HideTooltipEventParameters,
7200
7504
  Column
7201
7505
  >;
7202
7506
 
7507
+ /**
7508
+ * Parameters of the Column#initialized event.
7509
+ */
7203
7510
  export interface Column$InitializedEventParameters {}
7204
7511
 
7512
+ /**
7513
+ * Event object of the Column#initialized event.
7514
+ */
7205
7515
  export type Column$InitializedEvent = Event<
7206
7516
  Column$InitializedEventParameters,
7207
7517
  Column
7208
7518
  >;
7209
7519
 
7520
+ /**
7521
+ * Parameters of the Column#selectData event.
7522
+ */
7210
7523
  export interface Column$SelectDataEventParameters {}
7211
7524
 
7525
+ /**
7526
+ * Event object of the Column#selectData event.
7527
+ */
7212
7528
  export type Column$SelectDataEvent = Event<
7213
7529
  Column$SelectDataEventParameters,
7214
7530
  Column
7215
7531
  >;
7216
7532
 
7533
+ /**
7534
+ * Parameters of the Column#showTooltip event.
7535
+ *
7536
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
7537
+ * SAPUI5 delivery in one of the next releases.
7538
+ */
7217
7539
  export interface Column$ShowTooltipEventParameters {}
7218
7540
 
7541
+ /**
7542
+ * Event object of the Column#showTooltip event.
7543
+ *
7544
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
7545
+ * SAPUI5 delivery in one of the next releases.
7546
+ */
7219
7547
  export type Column$ShowTooltipEvent = Event<
7220
7548
  Column$ShowTooltipEventParameters,
7221
7549
  Column
@@ -8081,7 +8409,22 @@ declare module "sap/viz/ui5/Combination" {
8081
8409
  oYAxis: Axis
8082
8410
  ): this;
8083
8411
  }
8084
-
8412
+ /**
8413
+ * Describes the settings that can be provided to the Combination constructor.
8414
+ *
8415
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
8416
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
8417
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
8418
+ * distribution for backward compatibility.
8419
+ *
8420
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame}**(`new
8421
+ * sap.viz.ui5.controls.VizFrame({'vizType': 'combination'})`) **control to benefit from new charting enhancements
8422
+ * and timely support. **
8423
+ *
8424
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
8425
+ * make sure you evaluate it thoroughly before migration.
8426
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
8427
+ */
8085
8428
  export interface $CombinationSettings extends $BaseChartSettings {
8086
8429
  /**
8087
8430
  * Module sap.viz.modules.rootContainer
@@ -8195,36 +8538,78 @@ declare module "sap/viz/ui5/Combination" {
8195
8538
  initialized?: (oEvent: Event) => void;
8196
8539
  }
8197
8540
 
8541
+ /**
8542
+ * Parameters of the Combination#deselectData event.
8543
+ */
8198
8544
  export interface Combination$DeselectDataEventParameters {}
8199
8545
 
8546
+ /**
8547
+ * Event object of the Combination#deselectData event.
8548
+ */
8200
8549
  export type Combination$DeselectDataEvent = Event<
8201
8550
  Combination$DeselectDataEventParameters,
8202
8551
  Combination
8203
8552
  >;
8204
8553
 
8554
+ /**
8555
+ * Parameters of the Combination#hideTooltip event.
8556
+ *
8557
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
8558
+ * SAPUI5 delivery in one of the next releases.
8559
+ */
8205
8560
  export interface Combination$HideTooltipEventParameters {}
8206
8561
 
8562
+ /**
8563
+ * Event object of the Combination#hideTooltip event.
8564
+ *
8565
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
8566
+ * SAPUI5 delivery in one of the next releases.
8567
+ */
8207
8568
  export type Combination$HideTooltipEvent = Event<
8208
8569
  Combination$HideTooltipEventParameters,
8209
8570
  Combination
8210
8571
  >;
8211
8572
 
8573
+ /**
8574
+ * Parameters of the Combination#initialized event.
8575
+ */
8212
8576
  export interface Combination$InitializedEventParameters {}
8213
8577
 
8578
+ /**
8579
+ * Event object of the Combination#initialized event.
8580
+ */
8214
8581
  export type Combination$InitializedEvent = Event<
8215
8582
  Combination$InitializedEventParameters,
8216
8583
  Combination
8217
8584
  >;
8218
8585
 
8586
+ /**
8587
+ * Parameters of the Combination#selectData event.
8588
+ */
8219
8589
  export interface Combination$SelectDataEventParameters {}
8220
8590
 
8591
+ /**
8592
+ * Event object of the Combination#selectData event.
8593
+ */
8221
8594
  export type Combination$SelectDataEvent = Event<
8222
8595
  Combination$SelectDataEventParameters,
8223
8596
  Combination
8224
8597
  >;
8225
8598
 
8599
+ /**
8600
+ * Parameters of the Combination#showTooltip event.
8601
+ *
8602
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
8603
+ * SAPUI5 delivery in one of the next releases.
8604
+ */
8226
8605
  export interface Combination$ShowTooltipEventParameters {}
8227
8606
 
8607
+ /**
8608
+ * Event object of the Combination#showTooltip event.
8609
+ *
8610
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
8611
+ * SAPUI5 delivery in one of the next releases.
8612
+ */
8228
8613
  export type Combination$ShowTooltipEvent = Event<
8229
8614
  Combination$ShowTooltipEventParameters,
8230
8615
  Combination
@@ -8394,7 +8779,9 @@ declare module "sap/viz/ui5/controls/common/BaseControl" {
8394
8779
  sWidth?: CSSSize
8395
8780
  ): this;
8396
8781
  }
8397
-
8782
+ /**
8783
+ * Describes the settings that can be provided to the BaseControl constructor.
8784
+ */
8398
8785
  export interface $BaseControlSettings extends $ControlSettings {
8399
8786
  /**
8400
8787
  * Configuration for initialization to VizControl. This property could only set via settings parameter in
@@ -8590,7 +8977,9 @@ declare module "sap/viz/ui5/controls/common/feeds/AnalysisObject" {
8590
8977
  sUid?: string
8591
8978
  ): this;
8592
8979
  }
8593
-
8980
+ /**
8981
+ * Describes the settings that can be provided to the AnalysisObject constructor.
8982
+ */
8594
8983
  export interface $AnalysisObjectSettings extends $ElementSettings {
8595
8984
  /**
8596
8985
  * Uid of analysis object
@@ -8773,7 +9162,9 @@ declare module "sap/viz/ui5/controls/common/feeds/FeedItem" {
8773
9162
  sValues?: any[]
8774
9163
  ): this;
8775
9164
  }
8776
-
9165
+ /**
9166
+ * Describes the settings that can be provided to the FeedItem constructor.
9167
+ */
8777
9168
  export interface $FeedItemSettings extends $ElementSettings {
8778
9169
  /**
8779
9170
  * Uid of a feed item. Please reference to bindings section in VIZDOCS to get the exact sUid string for
@@ -8999,7 +9390,11 @@ declare module "sap/viz/ui5/controls/Popover" {
8999
9390
  bShowLine?: boolean
9000
9391
  ): this;
9001
9392
  }
9002
-
9393
+ /**
9394
+ * Describes the settings that can be provided to the Popover constructor.
9395
+ *
9396
+ * @experimental (since 1.22.0) - API is not finished yet and might change completely
9397
+ */
9003
9398
  export interface $PopoverSettings extends $BaseControlSettings {
9004
9399
  /**
9005
9400
  * A callback function let user customize Popover's content panel.
@@ -9677,7 +10072,9 @@ declare module "sap/viz/ui5/controls/VizFrame" {
9677
10072
  cfg: object
9678
10073
  ): void;
9679
10074
  }
9680
-
10075
+ /**
10076
+ * Describes the settings that can be provided to the VizFrame constructor.
10077
+ */
9681
10078
  export interface $VizFrameSettings extends $BaseControlSettings {
9682
10079
  /**
9683
10080
  * Type for viz frame. User can pass 'chartType' or 'info/chartType'. For example both 'bar' and 'info/bar'
@@ -9746,22 +10143,40 @@ declare module "sap/viz/ui5/controls/VizFrame" {
9746
10143
  deselectData?: (oEvent: Event) => void;
9747
10144
  }
9748
10145
 
10146
+ /**
10147
+ * Parameters of the VizFrame#deselectData event.
10148
+ */
9749
10149
  export interface VizFrame$DeselectDataEventParameters {}
9750
10150
 
10151
+ /**
10152
+ * Event object of the VizFrame#deselectData event.
10153
+ */
9751
10154
  export type VizFrame$DeselectDataEvent = Event<
9752
10155
  VizFrame$DeselectDataEventParameters,
9753
10156
  VizFrame
9754
10157
  >;
9755
10158
 
10159
+ /**
10160
+ * Parameters of the VizFrame#renderComplete event.
10161
+ */
9756
10162
  export interface VizFrame$RenderCompleteEventParameters {}
9757
10163
 
10164
+ /**
10165
+ * Event object of the VizFrame#renderComplete event.
10166
+ */
9758
10167
  export type VizFrame$RenderCompleteEvent = Event<
9759
10168
  VizFrame$RenderCompleteEventParameters,
9760
10169
  VizFrame
9761
10170
  >;
9762
10171
 
10172
+ /**
10173
+ * Parameters of the VizFrame#selectData event.
10174
+ */
9763
10175
  export interface VizFrame$SelectDataEventParameters {}
9764
10176
 
10177
+ /**
10178
+ * Event object of the VizFrame#selectData event.
10179
+ */
9765
10180
  export type VizFrame$SelectDataEvent = Event<
9766
10181
  VizFrame$SelectDataEventParameters,
9767
10182
  VizFrame
@@ -10261,7 +10676,9 @@ declare module "sap/viz/ui5/controls/VizSlider" {
10261
10676
  sWidth?: CSSSize
10262
10677
  ): this;
10263
10678
  }
10264
-
10679
+ /**
10680
+ * Describes the settings that can be provided to the VizSlider constructor.
10681
+ */
10265
10682
  export interface $VizSliderSettings extends $ControlSettings {
10266
10683
  /**
10267
10684
  * Type of chart. User can pass 'chartType' or 'info/chartType'. For example both 'bar' and 'info/bar' will
@@ -10323,8 +10740,14 @@ declare module "sap/viz/ui5/controls/VizSlider" {
10323
10740
  rangeChanged?: (oEvent: Event) => void;
10324
10741
  }
10325
10742
 
10743
+ /**
10744
+ * Parameters of the VizSlider#rangeChanged event.
10745
+ */
10326
10746
  export interface VizSlider$RangeChangedEventParameters {}
10327
10747
 
10748
+ /**
10749
+ * Event object of the VizSlider#rangeChanged event.
10750
+ */
10328
10751
  export type VizSlider$RangeChangedEvent = Event<
10329
10752
  VizSlider$RangeChangedEventParameters,
10330
10753
  VizSlider
@@ -10452,7 +10875,9 @@ declare module "sap/viz/ui5/controls/VizTooltip" {
10452
10875
  oFormatString?: any
10453
10876
  ): this;
10454
10877
  }
10455
-
10878
+ /**
10879
+ * Describes the settings that can be provided to the VizTooltip constructor.
10880
+ */
10456
10881
  export interface $VizTooltipSettings extends $BaseControlSettings {
10457
10882
  /**
10458
10883
  * The pattern is used to format the measures/timeDimensions displayed in Tooltip. If value type of format
@@ -10776,7 +11201,21 @@ declare module "sap/viz/ui5/core/BaseChart" {
10776
11201
  sWidth?: CSSSize
10777
11202
  ): this;
10778
11203
  }
10779
-
11204
+ /**
11205
+ * Describes the settings that can be provided to the BaseChart constructor.
11206
+ *
11207
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
11208
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
11209
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
11210
+ * distribution for backward compatibility.
11211
+ *
11212
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
11213
+ * control to benefit from new charting enhancements and timely support. **
11214
+ *
11215
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
11216
+ * make sure you evaluate it thoroughly before migration.
11217
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely
11218
+ */
10780
11219
  export interface $BaseChartSettings extends $ControlSettings {
10781
11220
  /**
10782
11221
  * Width of the Chart as a CSS size.
@@ -10810,6 +11249,9 @@ declare module "sap/viz/ui5/core/BaseChart" {
10810
11249
  beforeCreateViz?: (oEvent: BaseChart$BeforeCreateVizEvent) => void;
10811
11250
  }
10812
11251
 
11252
+ /**
11253
+ * Parameters of the BaseChart#beforeCreateViz event.
11254
+ */
10813
11255
  export interface BaseChart$BeforeCreateVizEventParameters {
10814
11256
  /**
10815
11257
  * Value for the parameter with the same name of the createViz call.
@@ -10817,6 +11259,9 @@ declare module "sap/viz/ui5/core/BaseChart" {
10817
11259
  usrOptions?: object;
10818
11260
  }
10819
11261
 
11262
+ /**
11263
+ * Event object of the BaseChart#beforeCreateViz event.
11264
+ */
10820
11265
  export type BaseChart$BeforeCreateVizEvent = Event<
10821
11266
  BaseChart$BeforeCreateVizEventParameters,
10822
11267
  BaseChart
@@ -10914,7 +11359,21 @@ declare module "sap/viz/ui5/core/BaseStructuredType" {
10914
11359
  */
10915
11360
  static getMetadata(): ElementMetadata;
10916
11361
  }
10917
-
11362
+ /**
11363
+ * Describes the settings that can be provided to the BaseStructuredType constructor.
11364
+ *
11365
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
11366
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
11367
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
11368
+ * distribution for backward compatibility.
11369
+ *
11370
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
11371
+ * control to benefit from new charting enhancements and timely support. **
11372
+ *
11373
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
11374
+ * make sure you evaluate it thoroughly before migration.
11375
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely
11376
+ */
10918
11377
  export interface $BaseStructuredTypeSettings extends $ElementSettings {}
10919
11378
  }
10920
11379
 
@@ -11022,7 +11481,9 @@ declare module "sap/viz/ui5/data/CustomDataset" {
11022
11481
  oData: object
11023
11482
  ): this;
11024
11483
  }
11025
-
11484
+ /**
11485
+ * Describes the settings that can be provided to the CustomDataset constructor.
11486
+ */
11026
11487
  export interface $CustomDatasetSettings extends $DatasetSettings {
11027
11488
  /**
11028
11489
  * Data containing dimensions and measures. The format and structure of this data is depends on the chart.
@@ -11111,7 +11572,9 @@ declare module "sap/viz/ui5/data/Dataset" {
11111
11572
  */
11112
11573
  static getMetadata(): ElementMetadata;
11113
11574
  }
11114
-
11575
+ /**
11576
+ * Describes the settings that can be provided to the Dataset constructor.
11577
+ */
11115
11578
  export interface $DatasetSettings extends $ElementSettings {}
11116
11579
  }
11117
11580
 
@@ -11382,7 +11845,9 @@ declare module "sap/viz/ui5/data/DimensionDefinition" {
11382
11845
  oValue?: any
11383
11846
  ): this;
11384
11847
  }
11385
-
11848
+ /**
11849
+ * Describes the settings that can be provided to the DimensionDefinition constructor.
11850
+ */
11386
11851
  export interface $DimensionDefinitionSettings extends $ElementSettings {
11387
11852
  /**
11388
11853
  * Number of axis this dimension belongs to. Currently must be 1 or 2. Skip this property when use VizFrame.
@@ -12096,7 +12561,9 @@ declare module "sap/viz/ui5/data/FlattenedDataset" {
12096
12561
  */
12097
12562
  unbindData(): this;
12098
12563
  }
12099
-
12564
+ /**
12565
+ * Describes the settings that can be provided to the FlattenedDataset constructor.
12566
+ */
12100
12567
  export interface $FlattenedDatasetSettings extends $DatasetSettings {
12101
12568
  /**
12102
12569
  * Additional data which works with data context in this dataset. The input could be an array. Each item
@@ -12151,22 +12618,40 @@ declare module "sap/viz/ui5/data/FlattenedDataset" {
12151
12618
  dataError?: (oEvent: Event) => void;
12152
12619
  }
12153
12620
 
12621
+ /**
12622
+ * Parameters of the FlattenedDataset#dataChange event.
12623
+ */
12154
12624
  export interface FlattenedDataset$DataChangeEventParameters {}
12155
12625
 
12626
+ /**
12627
+ * Event object of the FlattenedDataset#dataChange event.
12628
+ */
12156
12629
  export type FlattenedDataset$DataChangeEvent = Event<
12157
12630
  FlattenedDataset$DataChangeEventParameters,
12158
12631
  FlattenedDataset
12159
12632
  >;
12160
12633
 
12634
+ /**
12635
+ * Parameters of the FlattenedDataset#dataError event.
12636
+ */
12161
12637
  export interface FlattenedDataset$DataErrorEventParameters {}
12162
12638
 
12639
+ /**
12640
+ * Event object of the FlattenedDataset#dataError event.
12641
+ */
12163
12642
  export type FlattenedDataset$DataErrorEvent = Event<
12164
12643
  FlattenedDataset$DataErrorEventParameters,
12165
12644
  FlattenedDataset
12166
12645
  >;
12167
12646
 
12647
+ /**
12648
+ * Parameters of the FlattenedDataset#dataRefresh event.
12649
+ */
12168
12650
  export interface FlattenedDataset$DataRefreshEventParameters {}
12169
12651
 
12652
+ /**
12653
+ * Event object of the FlattenedDataset#dataRefresh event.
12654
+ */
12170
12655
  export type FlattenedDataset$DataRefreshEvent = Event<
12171
12656
  FlattenedDataset$DataRefreshEventParameters,
12172
12657
  FlattenedDataset
@@ -12434,7 +12919,9 @@ declare module "sap/viz/ui5/data/MeasureDefinition" {
12434
12919
  oValue?: any
12435
12920
  ): this;
12436
12921
  }
12437
-
12922
+ /**
12923
+ * Describes the settings that can be provided to the MeasureDefinition constructor.
12924
+ */
12438
12925
  export interface $MeasureDefinitionSettings extends $ElementSettings {
12439
12926
  /**
12440
12927
  * Measure group this measure belongs to. Order is significant, number should start from 1. Skip this property
@@ -13281,7 +13768,22 @@ declare module "sap/viz/ui5/Donut" {
13281
13768
  oXyContainer: XYContainer
13282
13769
  ): this;
13283
13770
  }
13284
-
13771
+ /**
13772
+ * Describes the settings that can be provided to the Donut constructor.
13773
+ *
13774
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
13775
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
13776
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
13777
+ * distribution for backward compatibility.
13778
+ *
13779
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame}**(`new
13780
+ * sap.viz.ui5.controls.VizFrame({'vizType': 'donut'})`) **control to benefit from new charting enhancements
13781
+ * and timely support. **
13782
+ *
13783
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
13784
+ * make sure you evaluate it thoroughly before migration.
13785
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
13786
+ */
13285
13787
  export interface $DonutSettings extends $BaseChartSettings {
13286
13788
  /**
13287
13789
  * Module sap.viz.modules.rootContainer
@@ -13385,36 +13887,78 @@ declare module "sap/viz/ui5/Donut" {
13385
13887
  initialized?: (oEvent: Event) => void;
13386
13888
  }
13387
13889
 
13890
+ /**
13891
+ * Parameters of the Donut#deselectData event.
13892
+ */
13388
13893
  export interface Donut$DeselectDataEventParameters {}
13389
13894
 
13895
+ /**
13896
+ * Event object of the Donut#deselectData event.
13897
+ */
13390
13898
  export type Donut$DeselectDataEvent = Event<
13391
13899
  Donut$DeselectDataEventParameters,
13392
13900
  Donut
13393
13901
  >;
13394
13902
 
13903
+ /**
13904
+ * Parameters of the Donut#hideTooltip event.
13905
+ *
13906
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
13907
+ * SAPUI5 delivery in one of the next releases.
13908
+ */
13395
13909
  export interface Donut$HideTooltipEventParameters {}
13396
13910
 
13911
+ /**
13912
+ * Event object of the Donut#hideTooltip event.
13913
+ *
13914
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
13915
+ * SAPUI5 delivery in one of the next releases.
13916
+ */
13397
13917
  export type Donut$HideTooltipEvent = Event<
13398
13918
  Donut$HideTooltipEventParameters,
13399
13919
  Donut
13400
13920
  >;
13401
13921
 
13922
+ /**
13923
+ * Parameters of the Donut#initialized event.
13924
+ */
13402
13925
  export interface Donut$InitializedEventParameters {}
13403
13926
 
13927
+ /**
13928
+ * Event object of the Donut#initialized event.
13929
+ */
13404
13930
  export type Donut$InitializedEvent = Event<
13405
13931
  Donut$InitializedEventParameters,
13406
13932
  Donut
13407
13933
  >;
13408
13934
 
13935
+ /**
13936
+ * Parameters of the Donut#selectData event.
13937
+ */
13409
13938
  export interface Donut$SelectDataEventParameters {}
13410
13939
 
13940
+ /**
13941
+ * Event object of the Donut#selectData event.
13942
+ */
13411
13943
  export type Donut$SelectDataEvent = Event<
13412
13944
  Donut$SelectDataEventParameters,
13413
13945
  Donut
13414
13946
  >;
13415
13947
 
13948
+ /**
13949
+ * Parameters of the Donut#showTooltip event.
13950
+ *
13951
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
13952
+ * SAPUI5 delivery in one of the next releases.
13953
+ */
13416
13954
  export interface Donut$ShowTooltipEventParameters {}
13417
13955
 
13956
+ /**
13957
+ * Event object of the Donut#showTooltip event.
13958
+ *
13959
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
13960
+ * SAPUI5 delivery in one of the next releases.
13961
+ */
13418
13962
  export type Donut$ShowTooltipEvent = Event<
13419
13963
  Donut$ShowTooltipEventParameters,
13420
13964
  Donut
@@ -14305,7 +14849,22 @@ declare module "sap/viz/ui5/DualBar" {
14305
14849
  oYAxis: Axis
14306
14850
  ): this;
14307
14851
  }
14308
-
14852
+ /**
14853
+ * Describes the settings that can be provided to the DualBar constructor.
14854
+ *
14855
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
14856
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
14857
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
14858
+ * distribution for backward compatibility.
14859
+ *
14860
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame}**(`new
14861
+ * sap.viz.ui5.controls.VizFrame({'vizType': 'dual_bar'})`) **control to benefit from new charting enhancements
14862
+ * and timely support. **
14863
+ *
14864
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
14865
+ * make sure you evaluate it thoroughly before migration.
14866
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
14867
+ */
14309
14868
  export interface $DualBarSettings extends $BaseChartSettings {
14310
14869
  /**
14311
14870
  * Module sap.viz.modules.rootContainer
@@ -14424,36 +14983,78 @@ declare module "sap/viz/ui5/DualBar" {
14424
14983
  initialized?: (oEvent: Event) => void;
14425
14984
  }
14426
14985
 
14986
+ /**
14987
+ * Parameters of the DualBar#deselectData event.
14988
+ */
14427
14989
  export interface DualBar$DeselectDataEventParameters {}
14428
14990
 
14991
+ /**
14992
+ * Event object of the DualBar#deselectData event.
14993
+ */
14429
14994
  export type DualBar$DeselectDataEvent = Event<
14430
14995
  DualBar$DeselectDataEventParameters,
14431
14996
  DualBar
14432
14997
  >;
14433
14998
 
14999
+ /**
15000
+ * Parameters of the DualBar#hideTooltip event.
15001
+ *
15002
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
15003
+ * SAPUI5 delivery in one of the next releases.
15004
+ */
14434
15005
  export interface DualBar$HideTooltipEventParameters {}
14435
15006
 
15007
+ /**
15008
+ * Event object of the DualBar#hideTooltip event.
15009
+ *
15010
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
15011
+ * SAPUI5 delivery in one of the next releases.
15012
+ */
14436
15013
  export type DualBar$HideTooltipEvent = Event<
14437
15014
  DualBar$HideTooltipEventParameters,
14438
15015
  DualBar
14439
15016
  >;
14440
15017
 
15018
+ /**
15019
+ * Parameters of the DualBar#initialized event.
15020
+ */
14441
15021
  export interface DualBar$InitializedEventParameters {}
14442
15022
 
15023
+ /**
15024
+ * Event object of the DualBar#initialized event.
15025
+ */
14443
15026
  export type DualBar$InitializedEvent = Event<
14444
15027
  DualBar$InitializedEventParameters,
14445
15028
  DualBar
14446
15029
  >;
14447
15030
 
15031
+ /**
15032
+ * Parameters of the DualBar#selectData event.
15033
+ */
14448
15034
  export interface DualBar$SelectDataEventParameters {}
14449
15035
 
15036
+ /**
15037
+ * Event object of the DualBar#selectData event.
15038
+ */
14450
15039
  export type DualBar$SelectDataEvent = Event<
14451
15040
  DualBar$SelectDataEventParameters,
14452
15041
  DualBar
14453
15042
  >;
14454
15043
 
15044
+ /**
15045
+ * Parameters of the DualBar#showTooltip event.
15046
+ *
15047
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
15048
+ * SAPUI5 delivery in one of the next releases.
15049
+ */
14455
15050
  export interface DualBar$ShowTooltipEventParameters {}
14456
15051
 
15052
+ /**
15053
+ * Event object of the DualBar#showTooltip event.
15054
+ *
15055
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
15056
+ * SAPUI5 delivery in one of the next releases.
15057
+ */
14457
15058
  export type DualBar$ShowTooltipEvent = Event<
14458
15059
  DualBar$ShowTooltipEventParameters,
14459
15060
  DualBar
@@ -15344,7 +15945,22 @@ declare module "sap/viz/ui5/DualColumn" {
15344
15945
  oYAxis2: Axis
15345
15946
  ): this;
15346
15947
  }
15347
-
15948
+ /**
15949
+ * Describes the settings that can be provided to the DualColumn constructor.
15950
+ *
15951
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
15952
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
15953
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
15954
+ * distribution for backward compatibility.
15955
+ *
15956
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame}**(`new
15957
+ * sap.viz.ui5.controls.VizFrame({'vizType': 'dual_column'})`) **control to benefit from new charting enhancements
15958
+ * and timely support. **
15959
+ *
15960
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
15961
+ * make sure you evaluate it thoroughly before migration.
15962
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
15963
+ */
15348
15964
  export interface $DualColumnSettings extends $BaseChartSettings {
15349
15965
  /**
15350
15966
  * Module sap.viz.modules.rootContainer
@@ -15463,36 +16079,78 @@ declare module "sap/viz/ui5/DualColumn" {
15463
16079
  initialized?: (oEvent: Event) => void;
15464
16080
  }
15465
16081
 
16082
+ /**
16083
+ * Parameters of the DualColumn#deselectData event.
16084
+ */
15466
16085
  export interface DualColumn$DeselectDataEventParameters {}
15467
16086
 
16087
+ /**
16088
+ * Event object of the DualColumn#deselectData event.
16089
+ */
15468
16090
  export type DualColumn$DeselectDataEvent = Event<
15469
16091
  DualColumn$DeselectDataEventParameters,
15470
16092
  DualColumn
15471
16093
  >;
15472
16094
 
16095
+ /**
16096
+ * Parameters of the DualColumn#hideTooltip event.
16097
+ *
16098
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
16099
+ * SAPUI5 delivery in one of the next releases.
16100
+ */
15473
16101
  export interface DualColumn$HideTooltipEventParameters {}
15474
16102
 
16103
+ /**
16104
+ * Event object of the DualColumn#hideTooltip event.
16105
+ *
16106
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
16107
+ * SAPUI5 delivery in one of the next releases.
16108
+ */
15475
16109
  export type DualColumn$HideTooltipEvent = Event<
15476
16110
  DualColumn$HideTooltipEventParameters,
15477
16111
  DualColumn
15478
16112
  >;
15479
16113
 
16114
+ /**
16115
+ * Parameters of the DualColumn#initialized event.
16116
+ */
15480
16117
  export interface DualColumn$InitializedEventParameters {}
15481
16118
 
16119
+ /**
16120
+ * Event object of the DualColumn#initialized event.
16121
+ */
15482
16122
  export type DualColumn$InitializedEvent = Event<
15483
16123
  DualColumn$InitializedEventParameters,
15484
16124
  DualColumn
15485
16125
  >;
15486
16126
 
16127
+ /**
16128
+ * Parameters of the DualColumn#selectData event.
16129
+ */
15487
16130
  export interface DualColumn$SelectDataEventParameters {}
15488
16131
 
16132
+ /**
16133
+ * Event object of the DualColumn#selectData event.
16134
+ */
15489
16135
  export type DualColumn$SelectDataEvent = Event<
15490
16136
  DualColumn$SelectDataEventParameters,
15491
16137
  DualColumn
15492
16138
  >;
15493
16139
 
16140
+ /**
16141
+ * Parameters of the DualColumn#showTooltip event.
16142
+ *
16143
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
16144
+ * SAPUI5 delivery in one of the next releases.
16145
+ */
15494
16146
  export interface DualColumn$ShowTooltipEventParameters {}
15495
16147
 
16148
+ /**
16149
+ * Event object of the DualColumn#showTooltip event.
16150
+ *
16151
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
16152
+ * SAPUI5 delivery in one of the next releases.
16153
+ */
15496
16154
  export type DualColumn$ShowTooltipEvent = Event<
15497
16155
  DualColumn$ShowTooltipEventParameters,
15498
16156
  DualColumn
@@ -16376,7 +17034,15 @@ declare module "sap/viz/ui5/DualCombination" {
16376
17034
  oYAxis2: Axis
16377
17035
  ): this;
16378
17036
  }
16379
-
17037
+ /**
17038
+ * Describes the settings that can be provided to the DualCombination constructor.
17039
+ *
17040
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
17041
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
17042
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
17043
+ * distribution for backward compatibility.
17044
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
17045
+ */
16380
17046
  export interface $DualCombinationSettings extends $BaseChartSettings {
16381
17047
  /**
16382
17048
  * Module sap.viz.modules.rootContainer
@@ -16495,36 +17161,78 @@ declare module "sap/viz/ui5/DualCombination" {
16495
17161
  initialized?: (oEvent: Event) => void;
16496
17162
  }
16497
17163
 
17164
+ /**
17165
+ * Parameters of the DualCombination#deselectData event.
17166
+ */
16498
17167
  export interface DualCombination$DeselectDataEventParameters {}
16499
17168
 
17169
+ /**
17170
+ * Event object of the DualCombination#deselectData event.
17171
+ */
16500
17172
  export type DualCombination$DeselectDataEvent = Event<
16501
17173
  DualCombination$DeselectDataEventParameters,
16502
17174
  DualCombination
16503
17175
  >;
16504
17176
 
17177
+ /**
17178
+ * Parameters of the DualCombination#hideTooltip event.
17179
+ *
17180
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
17181
+ * SAPUI5 delivery in one of the next releases.
17182
+ */
16505
17183
  export interface DualCombination$HideTooltipEventParameters {}
16506
17184
 
17185
+ /**
17186
+ * Event object of the DualCombination#hideTooltip event.
17187
+ *
17188
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
17189
+ * SAPUI5 delivery in one of the next releases.
17190
+ */
16507
17191
  export type DualCombination$HideTooltipEvent = Event<
16508
17192
  DualCombination$HideTooltipEventParameters,
16509
17193
  DualCombination
16510
17194
  >;
16511
17195
 
17196
+ /**
17197
+ * Parameters of the DualCombination#initialized event.
17198
+ */
16512
17199
  export interface DualCombination$InitializedEventParameters {}
16513
17200
 
17201
+ /**
17202
+ * Event object of the DualCombination#initialized event.
17203
+ */
16514
17204
  export type DualCombination$InitializedEvent = Event<
16515
17205
  DualCombination$InitializedEventParameters,
16516
17206
  DualCombination
16517
17207
  >;
16518
17208
 
17209
+ /**
17210
+ * Parameters of the DualCombination#selectData event.
17211
+ */
16519
17212
  export interface DualCombination$SelectDataEventParameters {}
16520
17213
 
17214
+ /**
17215
+ * Event object of the DualCombination#selectData event.
17216
+ */
16521
17217
  export type DualCombination$SelectDataEvent = Event<
16522
17218
  DualCombination$SelectDataEventParameters,
16523
17219
  DualCombination
16524
17220
  >;
16525
17221
 
17222
+ /**
17223
+ * Parameters of the DualCombination#showTooltip event.
17224
+ *
17225
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
17226
+ * SAPUI5 delivery in one of the next releases.
17227
+ */
16526
17228
  export interface DualCombination$ShowTooltipEventParameters {}
16527
17229
 
17230
+ /**
17231
+ * Event object of the DualCombination#showTooltip event.
17232
+ *
17233
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
17234
+ * SAPUI5 delivery in one of the next releases.
17235
+ */
16528
17236
  export type DualCombination$ShowTooltipEvent = Event<
16529
17237
  DualCombination$ShowTooltipEventParameters,
16530
17238
  DualCombination
@@ -17415,7 +18123,22 @@ declare module "sap/viz/ui5/DualLine" {
17415
18123
  oYAxis2: Axis
17416
18124
  ): this;
17417
18125
  }
17418
-
18126
+ /**
18127
+ * Describes the settings that can be provided to the DualLine constructor.
18128
+ *
18129
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
18130
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
18131
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
18132
+ * distribution for backward compatibility.
18133
+ *
18134
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame}**(`new
18135
+ * sap.viz.ui5.controls.VizFrame({'vizType': 'dual_line'})`) **control to benefit from new charting enhancements
18136
+ * and timely support. **
18137
+ *
18138
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
18139
+ * make sure you evaluate it thoroughly before migration.
18140
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
18141
+ */
17419
18142
  export interface $DualLineSettings extends $BaseChartSettings {
17420
18143
  /**
17421
18144
  * Module sap.viz.modules.rootContainer
@@ -17534,36 +18257,78 @@ declare module "sap/viz/ui5/DualLine" {
17534
18257
  initialized?: (oEvent: Event) => void;
17535
18258
  }
17536
18259
 
18260
+ /**
18261
+ * Parameters of the DualLine#deselectData event.
18262
+ */
17537
18263
  export interface DualLine$DeselectDataEventParameters {}
17538
18264
 
18265
+ /**
18266
+ * Event object of the DualLine#deselectData event.
18267
+ */
17539
18268
  export type DualLine$DeselectDataEvent = Event<
17540
18269
  DualLine$DeselectDataEventParameters,
17541
18270
  DualLine
17542
18271
  >;
17543
18272
 
18273
+ /**
18274
+ * Parameters of the DualLine#hideTooltip event.
18275
+ *
18276
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
18277
+ * SAPUI5 delivery in one of the next releases.
18278
+ */
17544
18279
  export interface DualLine$HideTooltipEventParameters {}
17545
18280
 
18281
+ /**
18282
+ * Event object of the DualLine#hideTooltip event.
18283
+ *
18284
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
18285
+ * SAPUI5 delivery in one of the next releases.
18286
+ */
17546
18287
  export type DualLine$HideTooltipEvent = Event<
17547
18288
  DualLine$HideTooltipEventParameters,
17548
18289
  DualLine
17549
18290
  >;
17550
18291
 
18292
+ /**
18293
+ * Parameters of the DualLine#initialized event.
18294
+ */
17551
18295
  export interface DualLine$InitializedEventParameters {}
17552
18296
 
18297
+ /**
18298
+ * Event object of the DualLine#initialized event.
18299
+ */
17553
18300
  export type DualLine$InitializedEvent = Event<
17554
18301
  DualLine$InitializedEventParameters,
17555
18302
  DualLine
17556
18303
  >;
17557
18304
 
18305
+ /**
18306
+ * Parameters of the DualLine#selectData event.
18307
+ */
17558
18308
  export interface DualLine$SelectDataEventParameters {}
17559
18309
 
18310
+ /**
18311
+ * Event object of the DualLine#selectData event.
18312
+ */
17560
18313
  export type DualLine$SelectDataEvent = Event<
17561
18314
  DualLine$SelectDataEventParameters,
17562
18315
  DualLine
17563
18316
  >;
17564
18317
 
18318
+ /**
18319
+ * Parameters of the DualLine#showTooltip event.
18320
+ *
18321
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
18322
+ * SAPUI5 delivery in one of the next releases.
18323
+ */
17565
18324
  export interface DualLine$ShowTooltipEventParameters {}
17566
18325
 
18326
+ /**
18327
+ * Event object of the DualLine#showTooltip event.
18328
+ *
18329
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
18330
+ * SAPUI5 delivery in one of the next releases.
18331
+ */
17567
18332
  export type DualLine$ShowTooltipEvent = Event<
17568
18333
  DualLine$ShowTooltipEventParameters,
17569
18334
  DualLine
@@ -18454,7 +19219,22 @@ declare module "sap/viz/ui5/DualStackedColumn" {
18454
19219
  oYAxis2: Axis
18455
19220
  ): this;
18456
19221
  }
18457
-
19222
+ /**
19223
+ * Describes the settings that can be provided to the DualStackedColumn constructor.
19224
+ *
19225
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
19226
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
19227
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
19228
+ * distribution for backward compatibility.
19229
+ *
19230
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame}**(`new
19231
+ * sap.viz.ui5.controls.VizFrame({'vizType': 'dual_stacked_column'})`) **control to benefit from new charting
19232
+ * enhancements and timely support. **
19233
+ *
19234
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
19235
+ * make sure you evaluate it thoroughly before migration.
19236
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
19237
+ */
18458
19238
  export interface $DualStackedColumnSettings extends $BaseChartSettings {
18459
19239
  /**
18460
19240
  * Module sap.viz.modules.rootContainer
@@ -18573,36 +19353,78 @@ declare module "sap/viz/ui5/DualStackedColumn" {
18573
19353
  initialized?: (oEvent: Event) => void;
18574
19354
  }
18575
19355
 
19356
+ /**
19357
+ * Parameters of the DualStackedColumn#deselectData event.
19358
+ */
18576
19359
  export interface DualStackedColumn$DeselectDataEventParameters {}
18577
19360
 
19361
+ /**
19362
+ * Event object of the DualStackedColumn#deselectData event.
19363
+ */
18578
19364
  export type DualStackedColumn$DeselectDataEvent = Event<
18579
19365
  DualStackedColumn$DeselectDataEventParameters,
18580
19366
  DualStackedColumn
18581
19367
  >;
18582
19368
 
19369
+ /**
19370
+ * Parameters of the DualStackedColumn#hideTooltip event.
19371
+ *
19372
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
19373
+ * SAPUI5 delivery in one of the next releases.
19374
+ */
18583
19375
  export interface DualStackedColumn$HideTooltipEventParameters {}
18584
19376
 
19377
+ /**
19378
+ * Event object of the DualStackedColumn#hideTooltip event.
19379
+ *
19380
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
19381
+ * SAPUI5 delivery in one of the next releases.
19382
+ */
18585
19383
  export type DualStackedColumn$HideTooltipEvent = Event<
18586
19384
  DualStackedColumn$HideTooltipEventParameters,
18587
19385
  DualStackedColumn
18588
19386
  >;
18589
19387
 
19388
+ /**
19389
+ * Parameters of the DualStackedColumn#initialized event.
19390
+ */
18590
19391
  export interface DualStackedColumn$InitializedEventParameters {}
18591
19392
 
19393
+ /**
19394
+ * Event object of the DualStackedColumn#initialized event.
19395
+ */
18592
19396
  export type DualStackedColumn$InitializedEvent = Event<
18593
19397
  DualStackedColumn$InitializedEventParameters,
18594
19398
  DualStackedColumn
18595
19399
  >;
18596
19400
 
19401
+ /**
19402
+ * Parameters of the DualStackedColumn#selectData event.
19403
+ */
18597
19404
  export interface DualStackedColumn$SelectDataEventParameters {}
18598
19405
 
19406
+ /**
19407
+ * Event object of the DualStackedColumn#selectData event.
19408
+ */
18599
19409
  export type DualStackedColumn$SelectDataEvent = Event<
18600
19410
  DualStackedColumn$SelectDataEventParameters,
18601
19411
  DualStackedColumn
18602
19412
  >;
18603
19413
 
19414
+ /**
19415
+ * Parameters of the DualStackedColumn#showTooltip event.
19416
+ *
19417
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
19418
+ * SAPUI5 delivery in one of the next releases.
19419
+ */
18604
19420
  export interface DualStackedColumn$ShowTooltipEventParameters {}
18605
19421
 
19422
+ /**
19423
+ * Event object of the DualStackedColumn#showTooltip event.
19424
+ *
19425
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
19426
+ * SAPUI5 delivery in one of the next releases.
19427
+ */
18606
19428
  export type DualStackedColumn$ShowTooltipEvent = Event<
18607
19429
  DualStackedColumn$ShowTooltipEventParameters,
18608
19430
  DualStackedColumn
@@ -19493,7 +20315,22 @@ declare module "sap/viz/ui5/DualStackedColumn100" {
19493
20315
  oYAxis2: Axis
19494
20316
  ): this;
19495
20317
  }
19496
-
20318
+ /**
20319
+ * Describes the settings that can be provided to the DualStackedColumn100 constructor.
20320
+ *
20321
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
20322
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
20323
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
20324
+ * distribution for backward compatibility.
20325
+ *
20326
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame}**(`new
20327
+ * sap.viz.ui5.controls.VizFrame({'vizType': '100_dual_stacked_column'})`) **control to benefit from new
20328
+ * charting enhancements and timely support. **
20329
+ *
20330
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
20331
+ * make sure you evaluate it thoroughly before migration.
20332
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
20333
+ */
19497
20334
  export interface $DualStackedColumn100Settings extends $BaseChartSettings {
19498
20335
  /**
19499
20336
  * Module sap.viz.modules.rootContainer
@@ -19612,36 +20449,78 @@ declare module "sap/viz/ui5/DualStackedColumn100" {
19612
20449
  initialized?: (oEvent: Event) => void;
19613
20450
  }
19614
20451
 
20452
+ /**
20453
+ * Parameters of the DualStackedColumn100#deselectData event.
20454
+ */
19615
20455
  export interface DualStackedColumn100$DeselectDataEventParameters {}
19616
20456
 
20457
+ /**
20458
+ * Event object of the DualStackedColumn100#deselectData event.
20459
+ */
19617
20460
  export type DualStackedColumn100$DeselectDataEvent = Event<
19618
20461
  DualStackedColumn100$DeselectDataEventParameters,
19619
20462
  DualStackedColumn100
19620
20463
  >;
19621
20464
 
20465
+ /**
20466
+ * Parameters of the DualStackedColumn100#hideTooltip event.
20467
+ *
20468
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
20469
+ * SAPUI5 delivery in one of the next releases.
20470
+ */
19622
20471
  export interface DualStackedColumn100$HideTooltipEventParameters {}
19623
20472
 
20473
+ /**
20474
+ * Event object of the DualStackedColumn100#hideTooltip event.
20475
+ *
20476
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
20477
+ * SAPUI5 delivery in one of the next releases.
20478
+ */
19624
20479
  export type DualStackedColumn100$HideTooltipEvent = Event<
19625
20480
  DualStackedColumn100$HideTooltipEventParameters,
19626
20481
  DualStackedColumn100
19627
20482
  >;
19628
20483
 
20484
+ /**
20485
+ * Parameters of the DualStackedColumn100#initialized event.
20486
+ */
19629
20487
  export interface DualStackedColumn100$InitializedEventParameters {}
19630
20488
 
20489
+ /**
20490
+ * Event object of the DualStackedColumn100#initialized event.
20491
+ */
19631
20492
  export type DualStackedColumn100$InitializedEvent = Event<
19632
20493
  DualStackedColumn100$InitializedEventParameters,
19633
20494
  DualStackedColumn100
19634
20495
  >;
19635
20496
 
20497
+ /**
20498
+ * Parameters of the DualStackedColumn100#selectData event.
20499
+ */
19636
20500
  export interface DualStackedColumn100$SelectDataEventParameters {}
19637
20501
 
20502
+ /**
20503
+ * Event object of the DualStackedColumn100#selectData event.
20504
+ */
19638
20505
  export type DualStackedColumn100$SelectDataEvent = Event<
19639
20506
  DualStackedColumn100$SelectDataEventParameters,
19640
20507
  DualStackedColumn100
19641
20508
  >;
19642
20509
 
20510
+ /**
20511
+ * Parameters of the DualStackedColumn100#showTooltip event.
20512
+ *
20513
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
20514
+ * SAPUI5 delivery in one of the next releases.
20515
+ */
19643
20516
  export interface DualStackedColumn100$ShowTooltipEventParameters {}
19644
20517
 
20518
+ /**
20519
+ * Event object of the DualStackedColumn100#showTooltip event.
20520
+ *
20521
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
20522
+ * SAPUI5 delivery in one of the next releases.
20523
+ */
19645
20524
  export type DualStackedColumn100$ShowTooltipEvent = Event<
19646
20525
  DualStackedColumn100$ShowTooltipEventParameters,
19647
20526
  DualStackedColumn100
@@ -20693,7 +21572,22 @@ declare module "sap/viz/ui5/Heatmap" {
20693
21572
  oYAxis: Axis
20694
21573
  ): this;
20695
21574
  }
20696
-
21575
+ /**
21576
+ * Describes the settings that can be provided to the Heatmap constructor.
21577
+ *
21578
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
21579
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
21580
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
21581
+ * distribution for backward compatibility.
21582
+ *
21583
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame}**(`new
21584
+ * sap.viz.ui5.controls.VizFrame({'vizType': 'heatmap'})`) **control to benefit from new charting enhancements
21585
+ * and timely support. **
21586
+ *
21587
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
21588
+ * make sure you evaluate it thoroughly before migration.
21589
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
21590
+ */
20697
21591
  export interface $HeatmapSettings extends $BaseChartSettings {
20698
21592
  /**
20699
21593
  * Module sap.viz.modules.rootContainer
@@ -20802,36 +21696,78 @@ declare module "sap/viz/ui5/Heatmap" {
20802
21696
  initialized?: (oEvent: Event) => void;
20803
21697
  }
20804
21698
 
21699
+ /**
21700
+ * Parameters of the Heatmap#deselectData event.
21701
+ */
20805
21702
  export interface Heatmap$DeselectDataEventParameters {}
20806
21703
 
21704
+ /**
21705
+ * Event object of the Heatmap#deselectData event.
21706
+ */
20807
21707
  export type Heatmap$DeselectDataEvent = Event<
20808
21708
  Heatmap$DeselectDataEventParameters,
20809
21709
  Heatmap
20810
21710
  >;
20811
21711
 
21712
+ /**
21713
+ * Parameters of the Heatmap#hideTooltip event.
21714
+ *
21715
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
21716
+ * SAPUI5 delivery in one of the next releases.
21717
+ */
20812
21718
  export interface Heatmap$HideTooltipEventParameters {}
20813
21719
 
21720
+ /**
21721
+ * Event object of the Heatmap#hideTooltip event.
21722
+ *
21723
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
21724
+ * SAPUI5 delivery in one of the next releases.
21725
+ */
20814
21726
  export type Heatmap$HideTooltipEvent = Event<
20815
21727
  Heatmap$HideTooltipEventParameters,
20816
21728
  Heatmap
20817
21729
  >;
20818
21730
 
21731
+ /**
21732
+ * Parameters of the Heatmap#initialized event.
21733
+ */
20819
21734
  export interface Heatmap$InitializedEventParameters {}
20820
21735
 
21736
+ /**
21737
+ * Event object of the Heatmap#initialized event.
21738
+ */
20821
21739
  export type Heatmap$InitializedEvent = Event<
20822
21740
  Heatmap$InitializedEventParameters,
20823
21741
  Heatmap
20824
21742
  >;
20825
21743
 
21744
+ /**
21745
+ * Parameters of the Heatmap#selectData event.
21746
+ */
20826
21747
  export interface Heatmap$SelectDataEventParameters {}
20827
21748
 
21749
+ /**
21750
+ * Event object of the Heatmap#selectData event.
21751
+ */
20828
21752
  export type Heatmap$SelectDataEvent = Event<
20829
21753
  Heatmap$SelectDataEventParameters,
20830
21754
  Heatmap
20831
21755
  >;
20832
21756
 
21757
+ /**
21758
+ * Parameters of the Heatmap#showTooltip event.
21759
+ *
21760
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
21761
+ * SAPUI5 delivery in one of the next releases.
21762
+ */
20833
21763
  export interface Heatmap$ShowTooltipEventParameters {}
20834
21764
 
21765
+ /**
21766
+ * Event object of the Heatmap#showTooltip event.
21767
+ *
21768
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
21769
+ * SAPUI5 delivery in one of the next releases.
21770
+ */
20835
21771
  export type Heatmap$ShowTooltipEvent = Event<
20836
21772
  Heatmap$ShowTooltipEventParameters,
20837
21773
  Heatmap
@@ -21690,7 +22626,15 @@ declare module "sap/viz/ui5/HorizontalArea" {
21690
22626
  oYAxis: Axis
21691
22627
  ): this;
21692
22628
  }
21693
-
22629
+ /**
22630
+ * Describes the settings that can be provided to the HorizontalArea constructor.
22631
+ *
22632
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
22633
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
22634
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
22635
+ * distribution for backward compatibility.
22636
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
22637
+ */
21694
22638
  export interface $HorizontalAreaSettings extends $BaseChartSettings {
21695
22639
  /**
21696
22640
  * Module sap.viz.modules.rootContainer
@@ -21804,36 +22748,78 @@ declare module "sap/viz/ui5/HorizontalArea" {
21804
22748
  initialized?: (oEvent: Event) => void;
21805
22749
  }
21806
22750
 
22751
+ /**
22752
+ * Parameters of the HorizontalArea#deselectData event.
22753
+ */
21807
22754
  export interface HorizontalArea$DeselectDataEventParameters {}
21808
22755
 
22756
+ /**
22757
+ * Event object of the HorizontalArea#deselectData event.
22758
+ */
21809
22759
  export type HorizontalArea$DeselectDataEvent = Event<
21810
22760
  HorizontalArea$DeselectDataEventParameters,
21811
22761
  HorizontalArea
21812
22762
  >;
21813
22763
 
22764
+ /**
22765
+ * Parameters of the HorizontalArea#hideTooltip event.
22766
+ *
22767
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
22768
+ * SAPUI5 delivery in one of the next releases.
22769
+ */
21814
22770
  export interface HorizontalArea$HideTooltipEventParameters {}
21815
22771
 
22772
+ /**
22773
+ * Event object of the HorizontalArea#hideTooltip event.
22774
+ *
22775
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
22776
+ * SAPUI5 delivery in one of the next releases.
22777
+ */
21816
22778
  export type HorizontalArea$HideTooltipEvent = Event<
21817
22779
  HorizontalArea$HideTooltipEventParameters,
21818
22780
  HorizontalArea
21819
22781
  >;
21820
22782
 
22783
+ /**
22784
+ * Parameters of the HorizontalArea#initialized event.
22785
+ */
21821
22786
  export interface HorizontalArea$InitializedEventParameters {}
21822
22787
 
22788
+ /**
22789
+ * Event object of the HorizontalArea#initialized event.
22790
+ */
21823
22791
  export type HorizontalArea$InitializedEvent = Event<
21824
22792
  HorizontalArea$InitializedEventParameters,
21825
22793
  HorizontalArea
21826
22794
  >;
21827
22795
 
22796
+ /**
22797
+ * Parameters of the HorizontalArea#selectData event.
22798
+ */
21828
22799
  export interface HorizontalArea$SelectDataEventParameters {}
21829
22800
 
22801
+ /**
22802
+ * Event object of the HorizontalArea#selectData event.
22803
+ */
21830
22804
  export type HorizontalArea$SelectDataEvent = Event<
21831
22805
  HorizontalArea$SelectDataEventParameters,
21832
22806
  HorizontalArea
21833
22807
  >;
21834
22808
 
22809
+ /**
22810
+ * Parameters of the HorizontalArea#showTooltip event.
22811
+ *
22812
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
22813
+ * SAPUI5 delivery in one of the next releases.
22814
+ */
21835
22815
  export interface HorizontalArea$ShowTooltipEventParameters {}
21836
22816
 
22817
+ /**
22818
+ * Event object of the HorizontalArea#showTooltip event.
22819
+ *
22820
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
22821
+ * SAPUI5 delivery in one of the next releases.
22822
+ */
21837
22823
  export type HorizontalArea$ShowTooltipEvent = Event<
21838
22824
  HorizontalArea$ShowTooltipEventParameters,
21839
22825
  HorizontalArea
@@ -22692,7 +23678,15 @@ declare module "sap/viz/ui5/HorizontalArea100" {
22692
23678
  oYAxis: Axis
22693
23679
  ): this;
22694
23680
  }
22695
-
23681
+ /**
23682
+ * Describes the settings that can be provided to the HorizontalArea100 constructor.
23683
+ *
23684
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
23685
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
23686
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
23687
+ * distribution for backward compatibility.
23688
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
23689
+ */
22696
23690
  export interface $HorizontalArea100Settings extends $BaseChartSettings {
22697
23691
  /**
22698
23692
  * Module sap.viz.modules.rootContainer
@@ -22806,36 +23800,78 @@ declare module "sap/viz/ui5/HorizontalArea100" {
22806
23800
  initialized?: (oEvent: Event) => void;
22807
23801
  }
22808
23802
 
23803
+ /**
23804
+ * Parameters of the HorizontalArea100#deselectData event.
23805
+ */
22809
23806
  export interface HorizontalArea100$DeselectDataEventParameters {}
22810
23807
 
23808
+ /**
23809
+ * Event object of the HorizontalArea100#deselectData event.
23810
+ */
22811
23811
  export type HorizontalArea100$DeselectDataEvent = Event<
22812
23812
  HorizontalArea100$DeselectDataEventParameters,
22813
23813
  HorizontalArea100
22814
23814
  >;
22815
23815
 
23816
+ /**
23817
+ * Parameters of the HorizontalArea100#hideTooltip event.
23818
+ *
23819
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
23820
+ * SAPUI5 delivery in one of the next releases.
23821
+ */
22816
23822
  export interface HorizontalArea100$HideTooltipEventParameters {}
22817
23823
 
23824
+ /**
23825
+ * Event object of the HorizontalArea100#hideTooltip event.
23826
+ *
23827
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
23828
+ * SAPUI5 delivery in one of the next releases.
23829
+ */
22818
23830
  export type HorizontalArea100$HideTooltipEvent = Event<
22819
23831
  HorizontalArea100$HideTooltipEventParameters,
22820
23832
  HorizontalArea100
22821
23833
  >;
22822
23834
 
23835
+ /**
23836
+ * Parameters of the HorizontalArea100#initialized event.
23837
+ */
22823
23838
  export interface HorizontalArea100$InitializedEventParameters {}
22824
23839
 
23840
+ /**
23841
+ * Event object of the HorizontalArea100#initialized event.
23842
+ */
22825
23843
  export type HorizontalArea100$InitializedEvent = Event<
22826
23844
  HorizontalArea100$InitializedEventParameters,
22827
23845
  HorizontalArea100
22828
23846
  >;
22829
23847
 
23848
+ /**
23849
+ * Parameters of the HorizontalArea100#selectData event.
23850
+ */
22830
23851
  export interface HorizontalArea100$SelectDataEventParameters {}
22831
23852
 
23853
+ /**
23854
+ * Event object of the HorizontalArea100#selectData event.
23855
+ */
22832
23856
  export type HorizontalArea100$SelectDataEvent = Event<
22833
23857
  HorizontalArea100$SelectDataEventParameters,
22834
23858
  HorizontalArea100
22835
23859
  >;
22836
23860
 
23861
+ /**
23862
+ * Parameters of the HorizontalArea100#showTooltip event.
23863
+ *
23864
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
23865
+ * SAPUI5 delivery in one of the next releases.
23866
+ */
22837
23867
  export interface HorizontalArea100$ShowTooltipEventParameters {}
22838
23868
 
23869
+ /**
23870
+ * Event object of the HorizontalArea100#showTooltip event.
23871
+ *
23872
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
23873
+ * SAPUI5 delivery in one of the next releases.
23874
+ */
22839
23875
  export type HorizontalArea100$ShowTooltipEvent = Event<
22840
23876
  HorizontalArea100$ShowTooltipEventParameters,
22841
23877
  HorizontalArea100
@@ -23701,7 +24737,22 @@ declare module "sap/viz/ui5/Line" {
23701
24737
  oYAxis: Axis
23702
24738
  ): this;
23703
24739
  }
23704
-
24740
+ /**
24741
+ * Describes the settings that can be provided to the Line constructor.
24742
+ *
24743
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
24744
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
24745
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
24746
+ * distribution for backward compatibility.
24747
+ *
24748
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame}**(`new
24749
+ * sap.viz.ui5.controls.VizFrame({'vizType': 'line'})`) **control to benefit from new charting enhancements
24750
+ * and timely support. **
24751
+ *
24752
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
24753
+ * make sure you evaluate it thoroughly before migration.
24754
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
24755
+ */
23705
24756
  export interface $LineSettings extends $BaseChartSettings {
23706
24757
  /**
23707
24758
  * Module sap.viz.modules.rootContainer
@@ -23815,36 +24866,78 @@ declare module "sap/viz/ui5/Line" {
23815
24866
  initialized?: (oEvent: Event) => void;
23816
24867
  }
23817
24868
 
24869
+ /**
24870
+ * Parameters of the Line#deselectData event.
24871
+ */
23818
24872
  export interface Line$DeselectDataEventParameters {}
23819
24873
 
24874
+ /**
24875
+ * Event object of the Line#deselectData event.
24876
+ */
23820
24877
  export type Line$DeselectDataEvent = Event<
23821
24878
  Line$DeselectDataEventParameters,
23822
24879
  Line
23823
24880
  >;
23824
24881
 
24882
+ /**
24883
+ * Parameters of the Line#hideTooltip event.
24884
+ *
24885
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
24886
+ * SAPUI5 delivery in one of the next releases.
24887
+ */
23825
24888
  export interface Line$HideTooltipEventParameters {}
23826
24889
 
24890
+ /**
24891
+ * Event object of the Line#hideTooltip event.
24892
+ *
24893
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
24894
+ * SAPUI5 delivery in one of the next releases.
24895
+ */
23827
24896
  export type Line$HideTooltipEvent = Event<
23828
24897
  Line$HideTooltipEventParameters,
23829
24898
  Line
23830
24899
  >;
23831
24900
 
24901
+ /**
24902
+ * Parameters of the Line#initialized event.
24903
+ */
23832
24904
  export interface Line$InitializedEventParameters {}
23833
24905
 
24906
+ /**
24907
+ * Event object of the Line#initialized event.
24908
+ */
23834
24909
  export type Line$InitializedEvent = Event<
23835
24910
  Line$InitializedEventParameters,
23836
24911
  Line
23837
24912
  >;
23838
24913
 
24914
+ /**
24915
+ * Parameters of the Line#selectData event.
24916
+ */
23839
24917
  export interface Line$SelectDataEventParameters {}
23840
24918
 
24919
+ /**
24920
+ * Event object of the Line#selectData event.
24921
+ */
23841
24922
  export type Line$SelectDataEvent = Event<
23842
24923
  Line$SelectDataEventParameters,
23843
24924
  Line
23844
24925
  >;
23845
24926
 
24927
+ /**
24928
+ * Parameters of the Line#showTooltip event.
24929
+ *
24930
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
24931
+ * SAPUI5 delivery in one of the next releases.
24932
+ */
23846
24933
  export interface Line$ShowTooltipEventParameters {}
23847
24934
 
24935
+ /**
24936
+ * Event object of the Line#showTooltip event.
24937
+ *
24938
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
24939
+ * SAPUI5 delivery in one of the next releases.
24940
+ */
23848
24941
  export type Line$ShowTooltipEvent = Event<
23849
24942
  Line$ShowTooltipEventParameters,
23850
24943
  Line
@@ -24658,7 +25751,22 @@ declare module "sap/viz/ui5/Pie" {
24658
25751
  oXyContainer: XYContainer
24659
25752
  ): this;
24660
25753
  }
24661
-
25754
+ /**
25755
+ * Describes the settings that can be provided to the Pie constructor.
25756
+ *
25757
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
25758
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
25759
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
25760
+ * distribution for backward compatibility.
25761
+ *
25762
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame}**(`new
25763
+ * sap.viz.ui5.controls.VizFrame({'vizType': 'pie'})`) **control to benefit from new charting enhancements
25764
+ * and timely support. **
25765
+ *
25766
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
25767
+ * make sure you evaluate it thoroughly before migration.
25768
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
25769
+ */
24662
25770
  export interface $PieSettings extends $BaseChartSettings {
24663
25771
  /**
24664
25772
  * Module sap.viz.modules.rootContainer
@@ -24762,27 +25870,69 @@ declare module "sap/viz/ui5/Pie" {
24762
25870
  initialized?: (oEvent: Event) => void;
24763
25871
  }
24764
25872
 
25873
+ /**
25874
+ * Parameters of the Pie#deselectData event.
25875
+ */
24765
25876
  export interface Pie$DeselectDataEventParameters {}
24766
25877
 
25878
+ /**
25879
+ * Event object of the Pie#deselectData event.
25880
+ */
24767
25881
  export type Pie$DeselectDataEvent = Event<
24768
25882
  Pie$DeselectDataEventParameters,
24769
25883
  Pie
24770
25884
  >;
24771
25885
 
25886
+ /**
25887
+ * Parameters of the Pie#hideTooltip event.
25888
+ *
25889
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
25890
+ * SAPUI5 delivery in one of the next releases.
25891
+ */
24772
25892
  export interface Pie$HideTooltipEventParameters {}
24773
25893
 
25894
+ /**
25895
+ * Event object of the Pie#hideTooltip event.
25896
+ *
25897
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
25898
+ * SAPUI5 delivery in one of the next releases.
25899
+ */
24774
25900
  export type Pie$HideTooltipEvent = Event<Pie$HideTooltipEventParameters, Pie>;
24775
25901
 
25902
+ /**
25903
+ * Parameters of the Pie#initialized event.
25904
+ */
24776
25905
  export interface Pie$InitializedEventParameters {}
24777
25906
 
25907
+ /**
25908
+ * Event object of the Pie#initialized event.
25909
+ */
24778
25910
  export type Pie$InitializedEvent = Event<Pie$InitializedEventParameters, Pie>;
24779
25911
 
25912
+ /**
25913
+ * Parameters of the Pie#selectData event.
25914
+ */
24780
25915
  export interface Pie$SelectDataEventParameters {}
24781
25916
 
25917
+ /**
25918
+ * Event object of the Pie#selectData event.
25919
+ */
24782
25920
  export type Pie$SelectDataEvent = Event<Pie$SelectDataEventParameters, Pie>;
24783
25921
 
25922
+ /**
25923
+ * Parameters of the Pie#showTooltip event.
25924
+ *
25925
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
25926
+ * SAPUI5 delivery in one of the next releases.
25927
+ */
24784
25928
  export interface Pie$ShowTooltipEventParameters {}
24785
25929
 
25930
+ /**
25931
+ * Event object of the Pie#showTooltip event.
25932
+ *
25933
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
25934
+ * SAPUI5 delivery in one of the next releases.
25935
+ */
24786
25936
  export type Pie$ShowTooltipEvent = Event<Pie$ShowTooltipEventParameters, Pie>;
24787
25937
  }
24788
25938
 
@@ -25672,7 +26822,22 @@ declare module "sap/viz/ui5/Scatter" {
25672
26822
  oYAxis: Axis
25673
26823
  ): this;
25674
26824
  }
25675
-
26825
+ /**
26826
+ * Describes the settings that can be provided to the Scatter constructor.
26827
+ *
26828
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
26829
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
26830
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
26831
+ * distribution for backward compatibility.
26832
+ *
26833
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame}**(`new
26834
+ * sap.viz.ui5.controls.VizFrame({'vizType': 'scatter'})`) **control to benefit from new charting enhancements
26835
+ * and timely support. **
26836
+ *
26837
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
26838
+ * make sure you evaluate it thoroughly before migration.
26839
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
26840
+ */
25676
26841
  export interface $ScatterSettings extends $BaseChartSettings {
25677
26842
  /**
25678
26843
  * Module sap.viz.modules.rootContainer
@@ -25791,36 +26956,78 @@ declare module "sap/viz/ui5/Scatter" {
25791
26956
  initialized?: (oEvent: Event) => void;
25792
26957
  }
25793
26958
 
26959
+ /**
26960
+ * Parameters of the Scatter#deselectData event.
26961
+ */
25794
26962
  export interface Scatter$DeselectDataEventParameters {}
25795
26963
 
26964
+ /**
26965
+ * Event object of the Scatter#deselectData event.
26966
+ */
25796
26967
  export type Scatter$DeselectDataEvent = Event<
25797
26968
  Scatter$DeselectDataEventParameters,
25798
26969
  Scatter
25799
26970
  >;
25800
26971
 
26972
+ /**
26973
+ * Parameters of the Scatter#hideTooltip event.
26974
+ *
26975
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
26976
+ * SAPUI5 delivery in one of the next releases.
26977
+ */
25801
26978
  export interface Scatter$HideTooltipEventParameters {}
25802
26979
 
26980
+ /**
26981
+ * Event object of the Scatter#hideTooltip event.
26982
+ *
26983
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
26984
+ * SAPUI5 delivery in one of the next releases.
26985
+ */
25803
26986
  export type Scatter$HideTooltipEvent = Event<
25804
26987
  Scatter$HideTooltipEventParameters,
25805
26988
  Scatter
25806
26989
  >;
25807
26990
 
26991
+ /**
26992
+ * Parameters of the Scatter#initialized event.
26993
+ */
25808
26994
  export interface Scatter$InitializedEventParameters {}
25809
26995
 
26996
+ /**
26997
+ * Event object of the Scatter#initialized event.
26998
+ */
25810
26999
  export type Scatter$InitializedEvent = Event<
25811
27000
  Scatter$InitializedEventParameters,
25812
27001
  Scatter
25813
27002
  >;
25814
27003
 
27004
+ /**
27005
+ * Parameters of the Scatter#selectData event.
27006
+ */
25815
27007
  export interface Scatter$SelectDataEventParameters {}
25816
27008
 
27009
+ /**
27010
+ * Event object of the Scatter#selectData event.
27011
+ */
25817
27012
  export type Scatter$SelectDataEvent = Event<
25818
27013
  Scatter$SelectDataEventParameters,
25819
27014
  Scatter
25820
27015
  >;
25821
27016
 
27017
+ /**
27018
+ * Parameters of the Scatter#showTooltip event.
27019
+ *
27020
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
27021
+ * SAPUI5 delivery in one of the next releases.
27022
+ */
25822
27023
  export interface Scatter$ShowTooltipEventParameters {}
25823
27024
 
27025
+ /**
27026
+ * Event object of the Scatter#showTooltip event.
27027
+ *
27028
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
27029
+ * SAPUI5 delivery in one of the next releases.
27030
+ */
25824
27031
  export type Scatter$ShowTooltipEvent = Event<
25825
27032
  Scatter$ShowTooltipEventParameters,
25826
27033
  Scatter
@@ -26686,7 +27893,22 @@ declare module "sap/viz/ui5/StackedColumn" {
26686
27893
  oYAxis: Axis
26687
27894
  ): this;
26688
27895
  }
26689
-
27896
+ /**
27897
+ * Describes the settings that can be provided to the StackedColumn constructor.
27898
+ *
27899
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
27900
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
27901
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
27902
+ * distribution for backward compatibility.
27903
+ *
27904
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame}**(`new
27905
+ * sap.viz.ui5.controls.VizFrame({'vizType': 'stacked_column'})`) **control to benefit from new charting
27906
+ * enhancements and timely support. **
27907
+ *
27908
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
27909
+ * make sure you evaluate it thoroughly before migration.
27910
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
27911
+ */
26690
27912
  export interface $StackedColumnSettings extends $BaseChartSettings {
26691
27913
  /**
26692
27914
  * Module sap.viz.modules.rootContainer
@@ -26800,36 +28022,78 @@ declare module "sap/viz/ui5/StackedColumn" {
26800
28022
  initialized?: (oEvent: Event) => void;
26801
28023
  }
26802
28024
 
28025
+ /**
28026
+ * Parameters of the StackedColumn#deselectData event.
28027
+ */
26803
28028
  export interface StackedColumn$DeselectDataEventParameters {}
26804
28029
 
28030
+ /**
28031
+ * Event object of the StackedColumn#deselectData event.
28032
+ */
26805
28033
  export type StackedColumn$DeselectDataEvent = Event<
26806
28034
  StackedColumn$DeselectDataEventParameters,
26807
28035
  StackedColumn
26808
28036
  >;
26809
28037
 
28038
+ /**
28039
+ * Parameters of the StackedColumn#hideTooltip event.
28040
+ *
28041
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
28042
+ * SAPUI5 delivery in one of the next releases.
28043
+ */
26810
28044
  export interface StackedColumn$HideTooltipEventParameters {}
26811
28045
 
28046
+ /**
28047
+ * Event object of the StackedColumn#hideTooltip event.
28048
+ *
28049
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
28050
+ * SAPUI5 delivery in one of the next releases.
28051
+ */
26812
28052
  export type StackedColumn$HideTooltipEvent = Event<
26813
28053
  StackedColumn$HideTooltipEventParameters,
26814
28054
  StackedColumn
26815
28055
  >;
26816
28056
 
28057
+ /**
28058
+ * Parameters of the StackedColumn#initialized event.
28059
+ */
26817
28060
  export interface StackedColumn$InitializedEventParameters {}
26818
28061
 
28062
+ /**
28063
+ * Event object of the StackedColumn#initialized event.
28064
+ */
26819
28065
  export type StackedColumn$InitializedEvent = Event<
26820
28066
  StackedColumn$InitializedEventParameters,
26821
28067
  StackedColumn
26822
28068
  >;
26823
28069
 
28070
+ /**
28071
+ * Parameters of the StackedColumn#selectData event.
28072
+ */
26824
28073
  export interface StackedColumn$SelectDataEventParameters {}
26825
28074
 
28075
+ /**
28076
+ * Event object of the StackedColumn#selectData event.
28077
+ */
26826
28078
  export type StackedColumn$SelectDataEvent = Event<
26827
28079
  StackedColumn$SelectDataEventParameters,
26828
28080
  StackedColumn
26829
28081
  >;
26830
28082
 
28083
+ /**
28084
+ * Parameters of the StackedColumn#showTooltip event.
28085
+ *
28086
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
28087
+ * SAPUI5 delivery in one of the next releases.
28088
+ */
26831
28089
  export interface StackedColumn$ShowTooltipEventParameters {}
26832
28090
 
28091
+ /**
28092
+ * Event object of the StackedColumn#showTooltip event.
28093
+ *
28094
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
28095
+ * SAPUI5 delivery in one of the next releases.
28096
+ */
26833
28097
  export type StackedColumn$ShowTooltipEvent = Event<
26834
28098
  StackedColumn$ShowTooltipEventParameters,
26835
28099
  StackedColumn
@@ -27695,7 +28959,22 @@ declare module "sap/viz/ui5/StackedColumn100" {
27695
28959
  oYAxis: Axis
27696
28960
  ): this;
27697
28961
  }
27698
-
28962
+ /**
28963
+ * Describes the settings that can be provided to the StackedColumn100 constructor.
28964
+ *
28965
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
28966
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
28967
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
28968
+ * distribution for backward compatibility.
28969
+ *
28970
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame}**(`new
28971
+ * sap.viz.ui5.controls.VizFrame({'vizType': '100_stacked_column'})`) **control to benefit from new charting
28972
+ * enhancements and timely support. **
28973
+ *
28974
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
28975
+ * make sure you evaluate it thoroughly before migration.
28976
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
28977
+ */
27699
28978
  export interface $StackedColumn100Settings extends $BaseChartSettings {
27700
28979
  /**
27701
28980
  * Module sap.viz.modules.rootContainer
@@ -27809,36 +29088,78 @@ declare module "sap/viz/ui5/StackedColumn100" {
27809
29088
  initialized?: (oEvent: Event) => void;
27810
29089
  }
27811
29090
 
29091
+ /**
29092
+ * Parameters of the StackedColumn100#deselectData event.
29093
+ */
27812
29094
  export interface StackedColumn100$DeselectDataEventParameters {}
27813
29095
 
29096
+ /**
29097
+ * Event object of the StackedColumn100#deselectData event.
29098
+ */
27814
29099
  export type StackedColumn100$DeselectDataEvent = Event<
27815
29100
  StackedColumn100$DeselectDataEventParameters,
27816
29101
  StackedColumn100
27817
29102
  >;
27818
29103
 
29104
+ /**
29105
+ * Parameters of the StackedColumn100#hideTooltip event.
29106
+ *
29107
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
29108
+ * SAPUI5 delivery in one of the next releases.
29109
+ */
27819
29110
  export interface StackedColumn100$HideTooltipEventParameters {}
27820
29111
 
29112
+ /**
29113
+ * Event object of the StackedColumn100#hideTooltip event.
29114
+ *
29115
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
29116
+ * SAPUI5 delivery in one of the next releases.
29117
+ */
27821
29118
  export type StackedColumn100$HideTooltipEvent = Event<
27822
29119
  StackedColumn100$HideTooltipEventParameters,
27823
29120
  StackedColumn100
27824
29121
  >;
27825
29122
 
29123
+ /**
29124
+ * Parameters of the StackedColumn100#initialized event.
29125
+ */
27826
29126
  export interface StackedColumn100$InitializedEventParameters {}
27827
29127
 
29128
+ /**
29129
+ * Event object of the StackedColumn100#initialized event.
29130
+ */
27828
29131
  export type StackedColumn100$InitializedEvent = Event<
27829
29132
  StackedColumn100$InitializedEventParameters,
27830
29133
  StackedColumn100
27831
29134
  >;
27832
29135
 
29136
+ /**
29137
+ * Parameters of the StackedColumn100#selectData event.
29138
+ */
27833
29139
  export interface StackedColumn100$SelectDataEventParameters {}
27834
29140
 
29141
+ /**
29142
+ * Event object of the StackedColumn100#selectData event.
29143
+ */
27835
29144
  export type StackedColumn100$SelectDataEvent = Event<
27836
29145
  StackedColumn100$SelectDataEventParameters,
27837
29146
  StackedColumn100
27838
29147
  >;
27839
29148
 
29149
+ /**
29150
+ * Parameters of the StackedColumn100#showTooltip event.
29151
+ *
29152
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
29153
+ * SAPUI5 delivery in one of the next releases.
29154
+ */
27840
29155
  export interface StackedColumn100$ShowTooltipEventParameters {}
27841
29156
 
29157
+ /**
29158
+ * Event object of the StackedColumn100#showTooltip event.
29159
+ *
29160
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
29161
+ * SAPUI5 delivery in one of the next releases.
29162
+ */
27842
29163
  export type StackedColumn100$ShowTooltipEvent = Event<
27843
29164
  StackedColumn100$ShowTooltipEventParameters,
27844
29165
  StackedColumn100
@@ -28729,7 +30050,22 @@ declare module "sap/viz/ui5/TimeBubble" {
28729
30050
  oYAxis: Axis
28730
30051
  ): this;
28731
30052
  }
28732
-
30053
+ /**
30054
+ * Describes the settings that can be provided to the TimeBubble constructor.
30055
+ *
30056
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
30057
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
30058
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
30059
+ * distribution for backward compatibility.
30060
+ *
30061
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame}**(`new
30062
+ * sap.viz.ui5.controls.VizFrame({'vizType': 'time_bubble'})`) **control to benefit from new charting enhancements
30063
+ * and timely support. **
30064
+ *
30065
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
30066
+ * make sure you evaluate it thoroughly before migration.
30067
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
30068
+ */
28733
30069
  export interface $TimeBubbleSettings extends $BaseChartSettings {
28734
30070
  /**
28735
30071
  * Module sap.viz.modules.rootContainer
@@ -28848,36 +30184,78 @@ declare module "sap/viz/ui5/TimeBubble" {
28848
30184
  initialized?: (oEvent: Event) => void;
28849
30185
  }
28850
30186
 
30187
+ /**
30188
+ * Parameters of the TimeBubble#deselectData event.
30189
+ */
28851
30190
  export interface TimeBubble$DeselectDataEventParameters {}
28852
30191
 
30192
+ /**
30193
+ * Event object of the TimeBubble#deselectData event.
30194
+ */
28853
30195
  export type TimeBubble$DeselectDataEvent = Event<
28854
30196
  TimeBubble$DeselectDataEventParameters,
28855
30197
  TimeBubble
28856
30198
  >;
28857
30199
 
30200
+ /**
30201
+ * Parameters of the TimeBubble#hideTooltip event.
30202
+ *
30203
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
30204
+ * SAPUI5 delivery in one of the next releases.
30205
+ */
28858
30206
  export interface TimeBubble$HideTooltipEventParameters {}
28859
30207
 
30208
+ /**
30209
+ * Event object of the TimeBubble#hideTooltip event.
30210
+ *
30211
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
30212
+ * SAPUI5 delivery in one of the next releases.
30213
+ */
28860
30214
  export type TimeBubble$HideTooltipEvent = Event<
28861
30215
  TimeBubble$HideTooltipEventParameters,
28862
30216
  TimeBubble
28863
30217
  >;
28864
30218
 
30219
+ /**
30220
+ * Parameters of the TimeBubble#initialized event.
30221
+ */
28865
30222
  export interface TimeBubble$InitializedEventParameters {}
28866
30223
 
30224
+ /**
30225
+ * Event object of the TimeBubble#initialized event.
30226
+ */
28867
30227
  export type TimeBubble$InitializedEvent = Event<
28868
30228
  TimeBubble$InitializedEventParameters,
28869
30229
  TimeBubble
28870
30230
  >;
28871
30231
 
30232
+ /**
30233
+ * Parameters of the TimeBubble#selectData event.
30234
+ */
28872
30235
  export interface TimeBubble$SelectDataEventParameters {}
28873
30236
 
30237
+ /**
30238
+ * Event object of the TimeBubble#selectData event.
30239
+ */
28874
30240
  export type TimeBubble$SelectDataEvent = Event<
28875
30241
  TimeBubble$SelectDataEventParameters,
28876
30242
  TimeBubble
28877
30243
  >;
28878
30244
 
30245
+ /**
30246
+ * Parameters of the TimeBubble#showTooltip event.
30247
+ *
30248
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
30249
+ * SAPUI5 delivery in one of the next releases.
30250
+ */
28879
30251
  export interface TimeBubble$ShowTooltipEventParameters {}
28880
30252
 
30253
+ /**
30254
+ * Event object of the TimeBubble#showTooltip event.
30255
+ *
30256
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
30257
+ * SAPUI5 delivery in one of the next releases.
30258
+ */
28881
30259
  export type TimeBubble$ShowTooltipEvent = Event<
28882
30260
  TimeBubble$ShowTooltipEventParameters,
28883
30261
  TimeBubble
@@ -29657,7 +31035,15 @@ declare module "sap/viz/ui5/Treemap" {
29657
31035
  oXyContainer: XYContainer
29658
31036
  ): this;
29659
31037
  }
29660
-
31038
+ /**
31039
+ * Describes the settings that can be provided to the Treemap constructor.
31040
+ *
31041
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
31042
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
31043
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
31044
+ * distribution for backward compatibility.
31045
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
31046
+ */
29661
31047
  export interface $TreemapSettings extends $BaseChartSettings {
29662
31048
  /**
29663
31049
  * Module sap.viz.modules.rootContainer
@@ -29756,36 +31142,78 @@ declare module "sap/viz/ui5/Treemap" {
29756
31142
  initialized?: (oEvent: Event) => void;
29757
31143
  }
29758
31144
 
31145
+ /**
31146
+ * Parameters of the Treemap#deselectData event.
31147
+ */
29759
31148
  export interface Treemap$DeselectDataEventParameters {}
29760
31149
 
31150
+ /**
31151
+ * Event object of the Treemap#deselectData event.
31152
+ */
29761
31153
  export type Treemap$DeselectDataEvent = Event<
29762
31154
  Treemap$DeselectDataEventParameters,
29763
31155
  Treemap
29764
31156
  >;
29765
31157
 
31158
+ /**
31159
+ * Parameters of the Treemap#hideTooltip event.
31160
+ *
31161
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
31162
+ * SAPUI5 delivery in one of the next releases.
31163
+ */
29766
31164
  export interface Treemap$HideTooltipEventParameters {}
29767
31165
 
31166
+ /**
31167
+ * Event object of the Treemap#hideTooltip event.
31168
+ *
31169
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
31170
+ * SAPUI5 delivery in one of the next releases.
31171
+ */
29768
31172
  export type Treemap$HideTooltipEvent = Event<
29769
31173
  Treemap$HideTooltipEventParameters,
29770
31174
  Treemap
29771
31175
  >;
29772
31176
 
31177
+ /**
31178
+ * Parameters of the Treemap#initialized event.
31179
+ */
29773
31180
  export interface Treemap$InitializedEventParameters {}
29774
31181
 
31182
+ /**
31183
+ * Event object of the Treemap#initialized event.
31184
+ */
29775
31185
  export type Treemap$InitializedEvent = Event<
29776
31186
  Treemap$InitializedEventParameters,
29777
31187
  Treemap
29778
31188
  >;
29779
31189
 
31190
+ /**
31191
+ * Parameters of the Treemap#selectData event.
31192
+ */
29780
31193
  export interface Treemap$SelectDataEventParameters {}
29781
31194
 
31195
+ /**
31196
+ * Event object of the Treemap#selectData event.
31197
+ */
29782
31198
  export type Treemap$SelectDataEvent = Event<
29783
31199
  Treemap$SelectDataEventParameters,
29784
31200
  Treemap
29785
31201
  >;
29786
31202
 
31203
+ /**
31204
+ * Parameters of the Treemap#showTooltip event.
31205
+ *
31206
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
31207
+ * SAPUI5 delivery in one of the next releases.
31208
+ */
29787
31209
  export interface Treemap$ShowTooltipEventParameters {}
29788
31210
 
31211
+ /**
31212
+ * Event object of the Treemap#showTooltip event.
31213
+ *
31214
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
31215
+ * SAPUI5 delivery in one of the next releases.
31216
+ */
29789
31217
  export type Treemap$ShowTooltipEvent = Event<
29790
31218
  Treemap$ShowTooltipEventParameters,
29791
31219
  Treemap
@@ -30258,7 +31686,21 @@ declare module "sap/viz/ui5/types/Area" {
30258
31686
  oToolTip: Area_tooltip
30259
31687
  ): this;
30260
31688
  }
30261
-
31689
+ /**
31690
+ * Describes the settings that can be provided to the Area constructor.
31691
+ *
31692
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
31693
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
31694
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
31695
+ * distribution for backward compatibility.
31696
+ *
31697
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
31698
+ * control to benefit from new charting enhancements and timely support. **
31699
+ *
31700
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
31701
+ * make sure you evaluate it thoroughly before migration.
31702
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
31703
+ */
30262
31704
  export interface $AreaSettings extends $BaseStructuredTypeSettings {
30263
31705
  /**
30264
31706
  * Set whether the area chart is vertical or horizontal
@@ -30534,7 +31976,21 @@ declare module "sap/viz/ui5/types/Area_animation" {
30534
31976
  bResizing?: boolean
30535
31977
  ): this;
30536
31978
  }
30537
-
31979
+ /**
31980
+ * Describes the settings that can be provided to the Area_animation constructor.
31981
+ *
31982
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
31983
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
31984
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
31985
+ * distribution for backward compatibility.
31986
+ *
31987
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
31988
+ * control to benefit from new charting enhancements and timely support. **
31989
+ *
31990
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
31991
+ * make sure you evaluate it thoroughly before migration.
31992
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
31993
+ */
30538
31994
  export interface $Area_animationSettings extends $BaseStructuredTypeSettings {
30539
31995
  /**
30540
31996
  * Set whether the data loading animation is enabled
@@ -30663,7 +32119,12 @@ declare module "sap/viz/ui5/types/Area_hoverline" {
30663
32119
  bVisible?: boolean
30664
32120
  ): this;
30665
32121
  }
30666
-
32122
+ /**
32123
+ * Describes the settings that can be provided to the Area_hoverline constructor.
32124
+ *
32125
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
32126
+ * SAPUI5 delivery in one of the next releases.
32127
+ */
30667
32128
  export interface $Area_hoverlineSettings extends $BaseStructuredTypeSettings {
30668
32129
  /**
30669
32130
  * Set the visibility of the hoverline.
@@ -30885,7 +32346,12 @@ declare module "sap/viz/ui5/types/Area_marker" {
30885
32346
  bVisible?: boolean
30886
32347
  ): this;
30887
32348
  }
30888
-
32349
+ /**
32350
+ * Describes the settings that can be provided to the Area_marker constructor.
32351
+ *
32352
+ * @deprecated (since 1.12) - This Property has been deprecated. This interface will be removed from the
32353
+ * SAPUI5 delivery in one of the next releases.
32354
+ */
30889
32355
  export interface $Area_markerSettings extends $BaseStructuredTypeSettings {
30890
32356
  /**
30891
32357
  * Set the visibility of the markers
@@ -31031,7 +32497,12 @@ declare module "sap/viz/ui5/types/Area_tooltip" {
31031
32497
  bEnabled?: boolean
31032
32498
  ): this;
31033
32499
  }
31034
-
32500
+ /**
32501
+ * Describes the settings that can be provided to the Area_tooltip constructor.
32502
+ *
32503
+ * @deprecated (since 1.12) - This Property has been deprecated. This interface will be removed from the
32504
+ * SAPUI5 delivery in one of the next releases.
32505
+ */
31035
32506
  export interface $Area_tooltipSettings extends $BaseStructuredTypeSettings {
31036
32507
  /**
31037
32508
  * Set whether the tooltip is enabled
@@ -31786,7 +33257,21 @@ declare module "sap/viz/ui5/types/Axis" {
31786
33257
  bVisible?: boolean
31787
33258
  ): this;
31788
33259
  }
31789
-
33260
+ /**
33261
+ * Describes the settings that can be provided to the Axis constructor.
33262
+ *
33263
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
33264
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
33265
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
33266
+ * distribution for backward compatibility.
33267
+ *
33268
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
33269
+ * control to benefit from new charting enhancements and timely support. **
33270
+ *
33271
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
33272
+ * make sure you evaluate it thoroughly before migration.
33273
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
33274
+ */
31790
33275
  export interface $AxisSettings extends $BaseStructuredTypeSettings {
31791
33276
  /**
31792
33277
  * Set whether the axis works in independent mode. Currently, this property is used only for boxplot charts.
@@ -32057,7 +33542,21 @@ declare module "sap/viz/ui5/types/Axis_axisline" {
32057
33542
  bVisible?: boolean
32058
33543
  ): this;
32059
33544
  }
32060
-
33545
+ /**
33546
+ * Describes the settings that can be provided to the Axis_axisline constructor.
33547
+ *
33548
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
33549
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
33550
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
33551
+ * distribution for backward compatibility.
33552
+ *
33553
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
33554
+ * control to benefit from new charting enhancements and timely support. **
33555
+ *
33556
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
33557
+ * make sure you evaluate it thoroughly before migration.
33558
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
33559
+ */
32061
33560
  export interface $Axis_axislineSettings extends $BaseStructuredTypeSettings {
32062
33561
  /**
32063
33562
  * Set the visibility of the axis line
@@ -32176,7 +33675,12 @@ declare module "sap/viz/ui5/types/Axis_axisTick" {
32176
33675
  bVisible?: boolean
32177
33676
  ): this;
32178
33677
  }
32179
-
33678
+ /**
33679
+ * Describes the settings that can be provided to the Axis_axisTick constructor.
33680
+ *
33681
+ * @deprecated (since 1.12) - This Property has been deprecated. This interface will be removed from the
33682
+ * SAPUI5 delivery in one of the next releases.
33683
+ */
32180
33684
  export interface $Axis_axisTickSettings extends $BaseStructuredTypeSettings {
32181
33685
  /**
32182
33686
  * Set visibility of the ticks on the axis. For mobile devices, the default value is 'false'.
@@ -32496,7 +34000,21 @@ declare module "sap/viz/ui5/types/Axis_gridline" {
32496
34000
  bVisible?: boolean
32497
34001
  ): this;
32498
34002
  }
32499
-
34003
+ /**
34004
+ * Describes the settings that can be provided to the Axis_gridline constructor.
34005
+ *
34006
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
34007
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
34008
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
34009
+ * distribution for backward compatibility.
34010
+ *
34011
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
34012
+ * control to benefit from new charting enhancements and timely support. **
34013
+ *
34014
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
34015
+ * make sure you evaluate it thoroughly before migration.
34016
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
34017
+ */
32500
34018
  export interface $Axis_gridlineSettings extends $BaseStructuredTypeSettings {
32501
34019
  /**
32502
34020
  * Set the visibility of gridlines on the axis
@@ -32664,7 +34182,12 @@ declare module "sap/viz/ui5/types/Axis_indicator" {
32664
34182
  bEnable?: boolean
32665
34183
  ): this;
32666
34184
  }
32667
-
34185
+ /**
34186
+ * Describes the settings that can be provided to the Axis_indicator constructor.
34187
+ *
34188
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
34189
+ * SAPUI5 delivery in one of the next releases.
34190
+ */
32668
34191
  export interface $Axis_indicatorSettings extends $BaseStructuredTypeSettings {
32669
34192
  /**
32670
34193
  * Set the visibility of the axis indicator
@@ -32937,7 +34460,21 @@ declare module "sap/viz/ui5/types/Axis_label" {
32937
34460
  bVisible?: boolean
32938
34461
  ): this;
32939
34462
  }
32940
-
34463
+ /**
34464
+ * Describes the settings that can be provided to the Axis_label constructor.
34465
+ *
34466
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
34467
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
34468
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
34469
+ * distribution for backward compatibility.
34470
+ *
34471
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
34472
+ * control to benefit from new charting enhancements and timely support. **
34473
+ *
34474
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
34475
+ * make sure you evaluate it thoroughly before migration.
34476
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
34477
+ */
32941
34478
  export interface $Axis_labelSettings extends $BaseStructuredTypeSettings {
32942
34479
  /**
32943
34480
  * Set the visibility of the labels on this axis
@@ -33132,7 +34669,12 @@ declare module "sap/viz/ui5/types/Axis_layoutInfo" {
33132
34669
  fWidth?: float
33133
34670
  ): this;
33134
34671
  }
33135
-
34672
+ /**
34673
+ * Describes the settings that can be provided to the Axis_layoutInfo constructor.
34674
+ *
34675
+ * @deprecated (since 1.12) - This Property has been deprecated. This interface will be removed from the
34676
+ * SAPUI5 delivery in one of the next releases.
34677
+ */
33136
34678
  export interface $Axis_layoutInfoSettings
33137
34679
  extends $BaseStructuredTypeSettings {
33138
34680
  /**
@@ -33361,7 +34903,21 @@ declare module "sap/viz/ui5/types/Axis_scale" {
33361
34903
  fMinValue?: float
33362
34904
  ): this;
33363
34905
  }
33364
-
34906
+ /**
34907
+ * Describes the settings that can be provided to the Axis_scale constructor.
34908
+ *
34909
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
34910
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
34911
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
34912
+ * distribution for backward compatibility.
34913
+ *
34914
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
34915
+ * control to benefit from new charting enhancements and timely support. **
34916
+ *
34917
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
34918
+ * make sure you evaluate it thoroughly before migration.
34919
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
34920
+ */
33365
34921
  export interface $Axis_scaleSettings extends $BaseStructuredTypeSettings {
33366
34922
  /**
33367
34923
  * Set whether the axis range is limited to the range between the minValue and maxValue
@@ -33566,7 +35122,21 @@ declare module "sap/viz/ui5/types/Axis_title" {
33566
35122
  bVisible?: boolean
33567
35123
  ): this;
33568
35124
  }
33569
-
35125
+ /**
35126
+ * Describes the settings that can be provided to the Axis_title constructor.
35127
+ *
35128
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
35129
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
35130
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
35131
+ * distribution for backward compatibility.
35132
+ *
35133
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
35134
+ * control to benefit from new charting enhancements and timely support. **
35135
+ *
35136
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
35137
+ * make sure you evaluate it thoroughly before migration.
35138
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
35139
+ */
33570
35140
  export interface $Axis_titleSettings extends $BaseStructuredTypeSettings {
33571
35141
  /**
33572
35142
  * Set the visibility of the axis title
@@ -33839,7 +35409,21 @@ declare module "sap/viz/ui5/types/Background" {
33839
35409
  bVisible?: boolean
33840
35410
  ): this;
33841
35411
  }
33842
-
35412
+ /**
35413
+ * Describes the settings that can be provided to the Background constructor.
35414
+ *
35415
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
35416
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
35417
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
35418
+ * distribution for backward compatibility.
35419
+ *
35420
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
35421
+ * control to benefit from new charting enhancements and timely support. **
35422
+ *
35423
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
35424
+ * make sure you evaluate it thoroughly before migration.
35425
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
35426
+ */
33843
35427
  export interface $BackgroundSettings extends $BaseStructuredTypeSettings {
33844
35428
  /**
33845
35429
  * Set the visibility
@@ -34149,7 +35733,21 @@ declare module "sap/viz/ui5/types/Background_border" {
34149
35733
  oTop: Background_border_top
34150
35734
  ): this;
34151
35735
  }
34152
-
35736
+ /**
35737
+ * Describes the settings that can be provided to the Background_border constructor.
35738
+ *
35739
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
35740
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
35741
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
35742
+ * distribution for backward compatibility.
35743
+ *
35744
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
35745
+ * control to benefit from new charting enhancements and timely support. **
35746
+ *
35747
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
35748
+ * make sure you evaluate it thoroughly before migration.
35749
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
35750
+ */
34153
35751
  export interface $Background_borderSettings
34154
35752
  extends $BaseStructuredTypeSettings {
34155
35753
  /**
@@ -34309,7 +35907,21 @@ declare module "sap/viz/ui5/types/Background_border_bottom" {
34309
35907
  bVisible?: boolean
34310
35908
  ): this;
34311
35909
  }
34312
-
35910
+ /**
35911
+ * Describes the settings that can be provided to the Background_border_bottom constructor.
35912
+ *
35913
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
35914
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
35915
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
35916
+ * distribution for backward compatibility.
35917
+ *
35918
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
35919
+ * control to benefit from new charting enhancements and timely support. **
35920
+ *
35921
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
35922
+ * make sure you evaluate it thoroughly before migration.
35923
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
35924
+ */
34313
35925
  export interface $Background_border_bottomSettings
34314
35926
  extends $BaseStructuredTypeSettings {
34315
35927
  /**
@@ -34438,7 +36050,21 @@ declare module "sap/viz/ui5/types/Background_border_left" {
34438
36050
  bVisible?: boolean
34439
36051
  ): this;
34440
36052
  }
34441
-
36053
+ /**
36054
+ * Describes the settings that can be provided to the Background_border_left constructor.
36055
+ *
36056
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
36057
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
36058
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
36059
+ * distribution for backward compatibility.
36060
+ *
36061
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
36062
+ * control to benefit from new charting enhancements and timely support. **
36063
+ *
36064
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
36065
+ * make sure you evaluate it thoroughly before migration.
36066
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
36067
+ */
34442
36068
  export interface $Background_border_leftSettings
34443
36069
  extends $BaseStructuredTypeSettings {
34444
36070
  /**
@@ -34567,7 +36193,21 @@ declare module "sap/viz/ui5/types/Background_border_right" {
34567
36193
  bVisible?: boolean
34568
36194
  ): this;
34569
36195
  }
34570
-
36196
+ /**
36197
+ * Describes the settings that can be provided to the Background_border_right constructor.
36198
+ *
36199
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
36200
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
36201
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
36202
+ * distribution for backward compatibility.
36203
+ *
36204
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
36205
+ * control to benefit from new charting enhancements and timely support. **
36206
+ *
36207
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
36208
+ * make sure you evaluate it thoroughly before migration.
36209
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
36210
+ */
34571
36211
  export interface $Background_border_rightSettings
34572
36212
  extends $BaseStructuredTypeSettings {
34573
36213
  /**
@@ -34696,7 +36336,21 @@ declare module "sap/viz/ui5/types/Background_border_top" {
34696
36336
  bVisible?: boolean
34697
36337
  ): this;
34698
36338
  }
34699
-
36339
+ /**
36340
+ * Describes the settings that can be provided to the Background_border_top constructor.
36341
+ *
36342
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
36343
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
36344
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
36345
+ * distribution for backward compatibility.
36346
+ *
36347
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
36348
+ * control to benefit from new charting enhancements and timely support. **
36349
+ *
36350
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
36351
+ * make sure you evaluate it thoroughly before migration.
36352
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
36353
+ */
34700
36354
  export interface $Background_border_topSettings
34701
36355
  extends $BaseStructuredTypeSettings {
34702
36356
  /**
@@ -35170,7 +36824,21 @@ declare module "sap/viz/ui5/types/Bar" {
35170
36824
  oToolTip: Bar_tooltip
35171
36825
  ): this;
35172
36826
  }
35173
-
36827
+ /**
36828
+ * Describes the settings that can be provided to the Bar constructor.
36829
+ *
36830
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
36831
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
36832
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
36833
+ * distribution for backward compatibility.
36834
+ *
36835
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
36836
+ * control to benefit from new charting enhancements and timely support. **
36837
+ *
36838
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
36839
+ * make sure you evaluate it thoroughly before migration.
36840
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
36841
+ */
35174
36842
  export interface $BarSettings extends $BaseStructuredTypeSettings {
35175
36843
  /**
35176
36844
  * Set the orientation of the plot area.
@@ -35440,7 +37108,21 @@ declare module "sap/viz/ui5/types/Bar_animation" {
35440
37108
  bResizing?: boolean
35441
37109
  ): this;
35442
37110
  }
35443
-
37111
+ /**
37112
+ * Describes the settings that can be provided to the Bar_animation constructor.
37113
+ *
37114
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
37115
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
37116
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
37117
+ * distribution for backward compatibility.
37118
+ *
37119
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
37120
+ * control to benefit from new charting enhancements and timely support. **
37121
+ *
37122
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
37123
+ * make sure you evaluate it thoroughly before migration.
37124
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
37125
+ */
35444
37126
  export interface $Bar_animationSettings extends $BaseStructuredTypeSettings {
35445
37127
  /**
35446
37128
  * Set whether the data loading animation is enabled
@@ -35569,7 +37251,12 @@ declare module "sap/viz/ui5/types/Bar_tooltip" {
35569
37251
  bEnabled?: boolean
35570
37252
  ): this;
35571
37253
  }
35572
-
37254
+ /**
37255
+ * Describes the settings that can be provided to the Bar_tooltip constructor.
37256
+ *
37257
+ * @deprecated (since 1.12) - This Property has been deprecated. This interface will be removed from the
37258
+ * SAPUI5 delivery in one of the next releases.
37259
+ */
35573
37260
  export interface $Bar_tooltipSettings extends $BaseStructuredTypeSettings {
35574
37261
  /**
35575
37262
  * Set whether the tooltip is enabled
@@ -36260,7 +37947,21 @@ declare module "sap/viz/ui5/types/Bubble" {
36260
37947
  bTimeBased?: boolean
36261
37948
  ): this;
36262
37949
  }
36263
-
37950
+ /**
37951
+ * Describes the settings that can be provided to the Bubble constructor.
37952
+ *
37953
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
37954
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
37955
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
37956
+ * distribution for backward compatibility.
37957
+ *
37958
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
37959
+ * control to benefit from new charting enhancements and timely support. **
37960
+ *
37961
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
37962
+ * make sure you evaluate it thoroughly before migration.
37963
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
37964
+ */
36264
37965
  export interface $BubbleSettings extends $BaseStructuredTypeSettings {
36265
37966
  /**
36266
37967
  * Set the color of the bubbles
@@ -36581,7 +38282,21 @@ declare module "sap/viz/ui5/types/Bubble_animation" {
36581
38282
  bResizing?: boolean
36582
38283
  ): this;
36583
38284
  }
36584
-
38285
+ /**
38286
+ * Describes the settings that can be provided to the Bubble_animation constructor.
38287
+ *
38288
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
38289
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
38290
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
38291
+ * distribution for backward compatibility.
38292
+ *
38293
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
38294
+ * control to benefit from new charting enhancements and timely support. **
38295
+ *
38296
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
38297
+ * make sure you evaluate it thoroughly before migration.
38298
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
38299
+ */
36585
38300
  export interface $Bubble_animationSettings
36586
38301
  extends $BaseStructuredTypeSettings {
36587
38302
  /**
@@ -36738,7 +38453,12 @@ declare module "sap/viz/ui5/types/Bubble_axisTooltip" {
36738
38453
  bVisible?: boolean
36739
38454
  ): this;
36740
38455
  }
36741
-
38456
+ /**
38457
+ * Describes the settings that can be provided to the Bubble_axisTooltip constructor.
38458
+ *
38459
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
38460
+ * SAPUI5 delivery in one of the next releases.
38461
+ */
36742
38462
  export interface $Bubble_axisTooltipSettings
36743
38463
  extends $BaseStructuredTypeSettings {
36744
38464
  /**
@@ -36864,7 +38584,12 @@ declare module "sap/viz/ui5/types/Bubble_hoverline" {
36864
38584
  bVisible?: boolean
36865
38585
  ): this;
36866
38586
  }
36867
-
38587
+ /**
38588
+ * Describes the settings that can be provided to the Bubble_hoverline constructor.
38589
+ *
38590
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
38591
+ * SAPUI5 delivery in one of the next releases.
38592
+ */
36868
38593
  export interface $Bubble_hoverlineSettings
36869
38594
  extends $BaseStructuredTypeSettings {
36870
38595
  /**
@@ -37239,7 +38964,21 @@ declare module "sap/viz/ui5/types/Bullet" {
37239
38964
  oToolTip: Bullet_tooltip
37240
38965
  ): this;
37241
38966
  }
37242
-
38967
+ /**
38968
+ * Describes the settings that can be provided to the Bullet constructor.
38969
+ *
38970
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
38971
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
38972
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
38973
+ * distribution for backward compatibility.
38974
+ *
38975
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
38976
+ * control to benefit from new charting enhancements and timely support. **
38977
+ *
38978
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
38979
+ * make sure you evaluate it thoroughly before migration.
38980
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
38981
+ */
37243
38982
  export interface $BulletSettings extends $BaseStructuredTypeSettings {
37244
38983
  /**
37245
38984
  * Set the orientation of the plot area.
@@ -37427,7 +39166,12 @@ declare module "sap/viz/ui5/types/Bullet_tooltip" {
37427
39166
  bEnabled?: boolean
37428
39167
  ): this;
37429
39168
  }
37430
-
39169
+ /**
39170
+ * Describes the settings that can be provided to the Bullet_tooltip constructor.
39171
+ *
39172
+ * @deprecated (since 1.12) - This Property has been deprecated. This interface will be removed from the
39173
+ * SAPUI5 delivery in one of the next releases.
39174
+ */
37431
39175
  export interface $Bullet_tooltipSettings extends $BaseStructuredTypeSettings {
37432
39176
  /**
37433
39177
  * Set whether the tooltip is enabled
@@ -37882,7 +39626,21 @@ declare module "sap/viz/ui5/types/Combination" {
37882
39626
  oToolTip: Combination_tooltip
37883
39627
  ): this;
37884
39628
  }
37885
-
39629
+ /**
39630
+ * Describes the settings that can be provided to the Combination constructor.
39631
+ *
39632
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
39633
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
39634
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
39635
+ * distribution for backward compatibility.
39636
+ *
39637
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
39638
+ * control to benefit from new charting enhancements and timely support. **
39639
+ *
39640
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
39641
+ * make sure you evaluate it thoroughly before migration.
39642
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
39643
+ */
37886
39644
  export interface $CombinationSettings extends $BaseStructuredTypeSettings {
37887
39645
  /**
37888
39646
  * Set the orientation of the plot area.
@@ -38149,7 +39907,21 @@ declare module "sap/viz/ui5/types/Combination_animation" {
38149
39907
  bResizing?: boolean
38150
39908
  ): this;
38151
39909
  }
38152
-
39910
+ /**
39911
+ * Describes the settings that can be provided to the Combination_animation constructor.
39912
+ *
39913
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
39914
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
39915
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
39916
+ * distribution for backward compatibility.
39917
+ *
39918
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
39919
+ * control to benefit from new charting enhancements and timely support. **
39920
+ *
39921
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
39922
+ * make sure you evaluate it thoroughly before migration.
39923
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
39924
+ */
38153
39925
  export interface $Combination_animationSettings
38154
39926
  extends $BaseStructuredTypeSettings {
38155
39927
  /**
@@ -38292,7 +40064,21 @@ declare module "sap/viz/ui5/types/Combination_bar" {
38292
40064
  bIsRoundCorner?: boolean
38293
40065
  ): this;
38294
40066
  }
38295
-
40067
+ /**
40068
+ * Describes the settings that can be provided to the Combination_bar constructor.
40069
+ *
40070
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
40071
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
40072
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
40073
+ * distribution for backward compatibility.
40074
+ *
40075
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
40076
+ * control to benefit from new charting enhancements and timely support. **
40077
+ *
40078
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
40079
+ * make sure you evaluate it thoroughly before migration.
40080
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
40081
+ */
38296
40082
  export interface $Combination_barSettings
38297
40083
  extends $BaseStructuredTypeSettings {
38298
40084
  /**
@@ -38486,7 +40272,21 @@ declare module "sap/viz/ui5/types/Combination_dataShape" {
38486
40272
  sSecondAxis?: string[]
38487
40273
  ): this;
38488
40274
  }
38489
-
40275
+ /**
40276
+ * Describes the settings that can be provided to the Combination_dataShape constructor.
40277
+ *
40278
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
40279
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
40280
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
40281
+ * distribution for backward compatibility.
40282
+ *
40283
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
40284
+ * control to benefit from new charting enhancements and timely support. **
40285
+ *
40286
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
40287
+ * make sure you evaluate it thoroughly before migration.
40288
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
40289
+ */
38490
40290
  export interface $Combination_dataShapeSettings
38491
40291
  extends $BaseStructuredTypeSettings {
38492
40292
  /**
@@ -38657,7 +40457,21 @@ declare module "sap/viz/ui5/types/Combination_line" {
38657
40457
  iWidth?: int
38658
40458
  ): this;
38659
40459
  }
38660
-
40460
+ /**
40461
+ * Describes the settings that can be provided to the Combination_line constructor.
40462
+ *
40463
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
40464
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
40465
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
40466
+ * distribution for backward compatibility.
40467
+ *
40468
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
40469
+ * control to benefit from new charting enhancements and timely support. **
40470
+ *
40471
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
40472
+ * make sure you evaluate it thoroughly before migration.
40473
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
40474
+ */
38661
40475
  export interface $Combination_lineSettings
38662
40476
  extends $BaseStructuredTypeSettings {
38663
40477
  /**
@@ -38885,7 +40699,21 @@ declare module "sap/viz/ui5/types/Combination_line_marker" {
38885
40699
  bVisible?: boolean
38886
40700
  ): this;
38887
40701
  }
38888
-
40702
+ /**
40703
+ * Describes the settings that can be provided to the Combination_line_marker constructor.
40704
+ *
40705
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
40706
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
40707
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
40708
+ * distribution for backward compatibility.
40709
+ *
40710
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
40711
+ * control to benefit from new charting enhancements and timely support. **
40712
+ *
40713
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
40714
+ * make sure you evaluate it thoroughly before migration.
40715
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
40716
+ */
38889
40717
  export interface $Combination_line_markerSettings
38890
40718
  extends $BaseStructuredTypeSettings {
38891
40719
  /**
@@ -39026,7 +40854,12 @@ declare module "sap/viz/ui5/types/Combination_tooltip" {
39026
40854
  bEnabled?: boolean
39027
40855
  ): this;
39028
40856
  }
39029
-
40857
+ /**
40858
+ * Describes the settings that can be provided to the Combination_tooltip constructor.
40859
+ *
40860
+ * @deprecated (since 1.12) - This Property has been deprecated. This interface will be removed from the
40861
+ * SAPUI5 delivery in one of the next releases.
40862
+ */
39030
40863
  export interface $Combination_tooltipSettings
39031
40864
  extends $BaseStructuredTypeSettings {
39032
40865
  /**
@@ -39537,7 +41370,21 @@ declare module "sap/viz/ui5/types/controller/Interaction" {
39537
41370
  oTriggers: any
39538
41371
  ): this;
39539
41372
  }
39540
-
41373
+ /**
41374
+ * Describes the settings that can be provided to the Interaction constructor.
41375
+ *
41376
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
41377
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
41378
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
41379
+ * distribution for backward compatibility.
41380
+ *
41381
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
41382
+ * control to benefit from new charting enhancements and timely support. **
41383
+ *
41384
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
41385
+ * make sure you evaluate it thoroughly before migration.
41386
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
41387
+ */
39541
41388
  export interface $InteractionSettings extends $BaseStructuredTypeSettings {
39542
41389
  /**
39543
41390
  * Set supported event names
@@ -39801,7 +41648,12 @@ declare module "sap/viz/ui5/types/controller/Interaction_pan" {
39801
41648
  | keyof typeof ui5.types.controller.Interaction_pan_orientation
39802
41649
  ): this;
39803
41650
  }
39804
-
41651
+ /**
41652
+ * Describes the settings that can be provided to the Interaction_pan constructor.
41653
+ *
41654
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
41655
+ * SAPUI5 delivery in one of the next releases.
41656
+ */
39805
41657
  export interface $Interaction_panSettings
39806
41658
  extends $BaseStructuredTypeSettings {
39807
41659
  /**
@@ -40140,7 +41992,21 @@ declare module "sap/viz/ui5/types/controller/Interaction_selectability" {
40140
41992
  bPlotStdSelection?: boolean
40141
41993
  ): this;
40142
41994
  }
40143
-
41995
+ /**
41996
+ * Describes the settings that can be provided to the Interaction_selectability constructor.
41997
+ *
41998
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
41999
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
42000
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
42001
+ * distribution for backward compatibility.
42002
+ *
42003
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
42004
+ * control to benefit from new charting enhancements and timely support. **
42005
+ *
42006
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
42007
+ * make sure you evaluate it thoroughly before migration.
42008
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
42009
+ */
40144
42010
  export interface $Interaction_selectabilitySettings
40145
42011
  extends $BaseStructuredTypeSettings {
40146
42012
  /**
@@ -40896,7 +42762,21 @@ declare module "sap/viz/ui5/types/Datalabel" {
40896
42762
  bVisible?: boolean
40897
42763
  ): this;
40898
42764
  }
40899
-
42765
+ /**
42766
+ * Describes the settings that can be provided to the Datalabel constructor.
42767
+ *
42768
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
42769
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
42770
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
42771
+ * distribution for backward compatibility.
42772
+ *
42773
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
42774
+ * control to benefit from new charting enhancements and timely support. **
42775
+ *
42776
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
42777
+ * make sure you evaluate it thoroughly before migration.
42778
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
42779
+ */
40900
42780
  export interface $DatalabelSettings extends $BaseStructuredTypeSettings {
40901
42781
  /**
40902
42782
  * Set whether the data labels are visible
@@ -41208,7 +43088,21 @@ declare module "sap/viz/ui5/types/Datatransform" {
41208
43088
  oDataSampling: Datatransform_dataSampling
41209
43089
  ): this;
41210
43090
  }
41211
-
43091
+ /**
43092
+ * Describes the settings that can be provided to the Datatransform constructor.
43093
+ *
43094
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
43095
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
43096
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
43097
+ * distribution for backward compatibility.
43098
+ *
43099
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
43100
+ * control to benefit from new charting enhancements and timely support. **
43101
+ *
43102
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
43103
+ * make sure you evaluate it thoroughly before migration.
43104
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
43105
+ */
41212
43106
  export interface $DatatransformSettings extends $BaseStructuredTypeSettings {
41213
43107
  /**
41214
43108
  * Settings for the auto-binning algorithm
@@ -41370,7 +43264,21 @@ declare module "sap/viz/ui5/types/Datatransform_autoBinning" {
41370
43264
  bEnable?: boolean
41371
43265
  ): this;
41372
43266
  }
41373
-
43267
+ /**
43268
+ * Describes the settings that can be provided to the Datatransform_autoBinning constructor.
43269
+ *
43270
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
43271
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
43272
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
43273
+ * distribution for backward compatibility.
43274
+ *
43275
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
43276
+ * control to benefit from new charting enhancements and timely support. **
43277
+ *
43278
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
43279
+ * make sure you evaluate it thoroughly before migration.
43280
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
43281
+ */
41374
43282
  export interface $Datatransform_autoBinningSettings
41375
43283
  extends $BaseStructuredTypeSettings {
41376
43284
  /**
@@ -41589,7 +43497,21 @@ declare module "sap/viz/ui5/types/Datatransform_dataSampling" {
41589
43497
  iSizeFactor?: int
41590
43498
  ): this;
41591
43499
  }
41592
-
43500
+ /**
43501
+ * Describes the settings that can be provided to the Datatransform_dataSampling constructor.
43502
+ *
43503
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
43504
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
43505
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
43506
+ * distribution for backward compatibility.
43507
+ *
43508
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
43509
+ * control to benefit from new charting enhancements and timely support. **
43510
+ *
43511
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
43512
+ * make sure you evaluate it thoroughly before migration.
43513
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
43514
+ */
41593
43515
  export interface $Datatransform_dataSamplingSettings
41594
43516
  extends $BaseStructuredTypeSettings {
41595
43517
  /**
@@ -41762,7 +43684,21 @@ declare module "sap/viz/ui5/types/Datatransform_dataSampling_grid" {
41762
43684
  iRow?: int
41763
43685
  ): this;
41764
43686
  }
41765
-
43687
+ /**
43688
+ * Describes the settings that can be provided to the Datatransform_dataSampling_grid constructor.
43689
+ *
43690
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
43691
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
43692
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
43693
+ * distribution for backward compatibility.
43694
+ *
43695
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
43696
+ * control to benefit from new charting enhancements and timely support. **
43697
+ *
43698
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
43699
+ * make sure you evaluate it thoroughly before migration.
43700
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
43701
+ */
41766
43702
  export interface $Datatransform_dataSampling_gridSettings
41767
43703
  extends $BaseStructuredTypeSettings {
41768
43704
  /**
@@ -42112,7 +44048,21 @@ declare module "sap/viz/ui5/types/Heatmap" {
42112
44048
  oToolTip: Heatmap_tooltip
42113
44049
  ): this;
42114
44050
  }
42115
-
44051
+ /**
44052
+ * Describes the settings that can be provided to the Heatmap constructor.
44053
+ *
44054
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
44055
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
44056
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
44057
+ * distribution for backward compatibility.
44058
+ *
44059
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
44060
+ * control to benefit from new charting enhancements and timely support. **
44061
+ *
44062
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
44063
+ * make sure you evaluate it thoroughly before migration.
44064
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
44065
+ */
42116
44066
  export interface $HeatmapSettings extends $BaseStructuredTypeSettings {
42117
44067
  /**
42118
44068
  * Set the starting color of the heat map
@@ -42348,7 +44298,21 @@ declare module "sap/viz/ui5/types/Heatmap_animation" {
42348
44298
  bResizing?: boolean
42349
44299
  ): this;
42350
44300
  }
42351
-
44301
+ /**
44302
+ * Describes the settings that can be provided to the Heatmap_animation constructor.
44303
+ *
44304
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
44305
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
44306
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
44307
+ * distribution for backward compatibility.
44308
+ *
44309
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
44310
+ * control to benefit from new charting enhancements and timely support. **
44311
+ *
44312
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
44313
+ * make sure you evaluate it thoroughly before migration.
44314
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
44315
+ */
42352
44316
  export interface $Heatmap_animationSettings
42353
44317
  extends $BaseStructuredTypeSettings {
42354
44318
  /**
@@ -42487,7 +44451,21 @@ declare module "sap/viz/ui5/types/Heatmap_border" {
42487
44451
  bVisible?: boolean
42488
44452
  ): this;
42489
44453
  }
42490
-
44454
+ /**
44455
+ * Describes the settings that can be provided to the Heatmap_border constructor.
44456
+ *
44457
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
44458
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
44459
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
44460
+ * distribution for backward compatibility.
44461
+ *
44462
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
44463
+ * control to benefit from new charting enhancements and timely support. **
44464
+ *
44465
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
44466
+ * make sure you evaluate it thoroughly before migration.
44467
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
44468
+ */
42491
44469
  export interface $Heatmap_borderSettings extends $BaseStructuredTypeSettings {
42492
44470
  /**
42493
44471
  * Set the visibility of the zone edge
@@ -42606,7 +44584,12 @@ declare module "sap/viz/ui5/types/Heatmap_tooltip" {
42606
44584
  bEnabled?: boolean
42607
44585
  ): this;
42608
44586
  }
42609
-
44587
+ /**
44588
+ * Describes the settings that can be provided to the Heatmap_tooltip constructor.
44589
+ *
44590
+ * @deprecated (since 1.12) - This Property has been deprecated. This interface will be removed from the
44591
+ * SAPUI5 delivery in one of the next releases.
44592
+ */
42610
44593
  export interface $Heatmap_tooltipSettings
42611
44594
  extends $BaseStructuredTypeSettings {
42612
44595
  /**
@@ -42710,7 +44693,21 @@ declare module "sap/viz/ui5/types/layout/Dock" {
42710
44693
  */
42711
44694
  static getMetadata(): ElementMetadata;
42712
44695
  }
42713
-
44696
+ /**
44697
+ * Describes the settings that can be provided to the Dock constructor.
44698
+ *
44699
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
44700
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
44701
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
44702
+ * distribution for backward compatibility.
44703
+ *
44704
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
44705
+ * control to benefit from new charting enhancements and timely support. **
44706
+ *
44707
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
44708
+ * make sure you evaluate it thoroughly before migration.
44709
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
44710
+ */
42714
44711
  export interface $DockSettings extends $BaseStructuredTypeSettings {}
42715
44712
  }
42716
44713
 
@@ -42808,7 +44805,21 @@ declare module "sap/viz/ui5/types/layout/Stack" {
42808
44805
  */
42809
44806
  static getMetadata(): ElementMetadata;
42810
44807
  }
42811
-
44808
+ /**
44809
+ * Describes the settings that can be provided to the Stack constructor.
44810
+ *
44811
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
44812
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
44813
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
44814
+ * distribution for backward compatibility.
44815
+ *
44816
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
44817
+ * control to benefit from new charting enhancements and timely support. **
44818
+ *
44819
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
44820
+ * make sure you evaluate it thoroughly before migration.
44821
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
44822
+ */
42812
44823
  export interface $StackSettings extends $BaseStructuredTypeSettings {}
42813
44824
  }
42814
44825
 
@@ -42927,7 +44938,21 @@ declare module "sap/viz/ui5/types/Legend" {
42927
44938
  oLayout: Legend_layout
42928
44939
  ): this;
42929
44940
  }
42930
-
44941
+ /**
44942
+ * Describes the settings that can be provided to the Legend constructor.
44943
+ *
44944
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
44945
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
44946
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
44947
+ * distribution for backward compatibility.
44948
+ *
44949
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
44950
+ * control to benefit from new charting enhancements and timely support. **
44951
+ *
44952
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
44953
+ * make sure you evaluate it thoroughly before migration.
44954
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
44955
+ */
42931
44956
  export interface $LegendSettings extends $BaseStructuredTypeSettings {
42932
44957
  /**
42933
44958
  * Settings for the layout of the legend area
@@ -43323,7 +45348,21 @@ declare module "sap/viz/ui5/types/legend/Common" {
43323
45348
  bVisible?: boolean
43324
45349
  ): this;
43325
45350
  }
43326
-
45351
+ /**
45352
+ * Describes the settings that can be provided to the Common constructor.
45353
+ *
45354
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
45355
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
45356
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
45357
+ * distribution for backward compatibility.
45358
+ *
45359
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
45360
+ * control to benefit from new charting enhancements and timely support. **
45361
+ *
45362
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
45363
+ * make sure you evaluate it thoroughly before migration.
45364
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
45365
+ */
43327
45366
  export interface $CommonSettings extends $BaseStructuredTypeSettings {
43328
45367
  /**
43329
45368
  * Set the visibility of the legend
@@ -43556,7 +45595,21 @@ declare module "sap/viz/ui5/types/legend/Common_title" {
43556
45595
  bVisible?: boolean
43557
45596
  ): this;
43558
45597
  }
43559
-
45598
+ /**
45599
+ * Describes the settings that can be provided to the Common_title constructor.
45600
+ *
45601
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
45602
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
45603
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
45604
+ * distribution for backward compatibility.
45605
+ *
45606
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
45607
+ * control to benefit from new charting enhancements and timely support. **
45608
+ *
45609
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
45610
+ * make sure you evaluate it thoroughly before migration.
45611
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
45612
+ */
43560
45613
  export interface $Common_titleSettings extends $BaseStructuredTypeSettings {
43561
45614
  /**
43562
45615
  * Set the visibility of the legend title
@@ -43728,7 +45781,21 @@ declare module "sap/viz/ui5/types/Legend_layout" {
43728
45781
  iPriority?: int
43729
45782
  ): this;
43730
45783
  }
43731
-
45784
+ /**
45785
+ * Describes the settings that can be provided to the Legend_layout constructor.
45786
+ *
45787
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
45788
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
45789
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
45790
+ * distribution for backward compatibility.
45791
+ *
45792
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
45793
+ * control to benefit from new charting enhancements and timely support. **
45794
+ *
45795
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
45796
+ * make sure you evaluate it thoroughly before migration.
45797
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
45798
+ */
43732
45799
  export interface $Legend_layoutSettings extends $BaseStructuredTypeSettings {
43733
45800
  /**
43734
45801
  * Set the position of the legend area
@@ -44241,7 +46308,21 @@ declare module "sap/viz/ui5/types/Line" {
44241
46308
  iWidth?: int
44242
46309
  ): this;
44243
46310
  }
44244
-
46311
+ /**
46312
+ * Describes the settings that can be provided to the Line constructor.
46313
+ *
46314
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
46315
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
46316
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
46317
+ * distribution for backward compatibility.
46318
+ *
46319
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
46320
+ * control to benefit from new charting enhancements and timely support. **
46321
+ *
46322
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
46323
+ * make sure you evaluate it thoroughly before migration.
46324
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
46325
+ */
44245
46326
  export interface $LineSettings extends $BaseStructuredTypeSettings {
44246
46327
  /**
44247
46328
  * Set the orientation of the plot area.
@@ -44517,7 +46598,21 @@ declare module "sap/viz/ui5/types/Line_animation" {
44517
46598
  bResizing?: boolean
44518
46599
  ): this;
44519
46600
  }
44520
-
46601
+ /**
46602
+ * Describes the settings that can be provided to the Line_animation constructor.
46603
+ *
46604
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
46605
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
46606
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
46607
+ * distribution for backward compatibility.
46608
+ *
46609
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
46610
+ * control to benefit from new charting enhancements and timely support. **
46611
+ *
46612
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
46613
+ * make sure you evaluate it thoroughly before migration.
46614
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
46615
+ */
44521
46616
  export interface $Line_animationSettings extends $BaseStructuredTypeSettings {
44522
46617
  /**
44523
46618
  * Set whether the data loading animation is enabled
@@ -44646,7 +46741,12 @@ declare module "sap/viz/ui5/types/Line_hoverline" {
44646
46741
  bVisible?: boolean
44647
46742
  ): this;
44648
46743
  }
44649
-
46744
+ /**
46745
+ * Describes the settings that can be provided to the Line_hoverline constructor.
46746
+ *
46747
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
46748
+ * SAPUI5 delivery in one of the next releases.
46749
+ */
44650
46750
  export interface $Line_hoverlineSettings extends $BaseStructuredTypeSettings {
44651
46751
  /**
44652
46752
  * Set the visibility of the hoverline.
@@ -44873,7 +46973,21 @@ declare module "sap/viz/ui5/types/Line_marker" {
44873
46973
  bVisible?: boolean
44874
46974
  ): this;
44875
46975
  }
44876
-
46976
+ /**
46977
+ * Describes the settings that can be provided to the Line_marker constructor.
46978
+ *
46979
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
46980
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
46981
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
46982
+ * distribution for backward compatibility.
46983
+ *
46984
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
46985
+ * control to benefit from new charting enhancements and timely support. **
46986
+ *
46987
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
46988
+ * make sure you evaluate it thoroughly before migration.
46989
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
46990
+ */
44877
46991
  export interface $Line_markerSettings extends $BaseStructuredTypeSettings {
44878
46992
  /**
44879
46993
  * Set the visibility of the markers
@@ -45016,7 +47130,12 @@ declare module "sap/viz/ui5/types/Line_tooltip" {
45016
47130
  bEnabled?: boolean
45017
47131
  ): this;
45018
47132
  }
45019
-
47133
+ /**
47134
+ * Describes the settings that can be provided to the Line_tooltip constructor.
47135
+ *
47136
+ * @deprecated (since 1.12) - This Property has been deprecated. This interface will be removed from the
47137
+ * SAPUI5 delivery in one of the next releases.
47138
+ */
45020
47139
  export interface $Line_tooltipSettings extends $BaseStructuredTypeSettings {
45021
47140
  /**
45022
47141
  * Set whether the tooltip is enabled
@@ -45411,7 +47530,21 @@ declare module "sap/viz/ui5/types/Pie" {
45411
47530
  sValign?: ui5.types.Pie_valign | keyof typeof ui5.types.Pie_valign
45412
47531
  ): this;
45413
47532
  }
45414
-
47533
+ /**
47534
+ * Describes the settings that can be provided to the Pie constructor.
47535
+ *
47536
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
47537
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
47538
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
47539
+ * distribution for backward compatibility.
47540
+ *
47541
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
47542
+ * control to benefit from new charting enhancements and timely support. **
47543
+ *
47544
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
47545
+ * make sure you evaluate it thoroughly before migration.
47546
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
47547
+ */
45415
47548
  export interface $PieSettings extends $BaseStructuredTypeSettings {
45416
47549
  /**
45417
47550
  * Set the color palette for the sectors of the pie chart
@@ -45661,7 +47794,21 @@ declare module "sap/viz/ui5/types/Pie_animation" {
45661
47794
  bResizing?: boolean
45662
47795
  ): this;
45663
47796
  }
45664
-
47797
+ /**
47798
+ * Describes the settings that can be provided to the Pie_animation constructor.
47799
+ *
47800
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
47801
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
47802
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
47803
+ * distribution for backward compatibility.
47804
+ *
47805
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
47806
+ * control to benefit from new charting enhancements and timely support. **
47807
+ *
47808
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
47809
+ * make sure you evaluate it thoroughly before migration.
47810
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
47811
+ */
45665
47812
  export interface $Pie_animationSettings extends $BaseStructuredTypeSettings {
45666
47813
  /**
45667
47814
  * Set whether the data loading animation is enabled
@@ -45883,7 +48030,12 @@ declare module "sap/viz/ui5/types/Pie_tooltip" {
45883
48030
  bVisible?: boolean
45884
48031
  ): this;
45885
48032
  }
45886
-
48033
+ /**
48034
+ * Describes the settings that can be provided to the Pie_tooltip constructor.
48035
+ *
48036
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
48037
+ * SAPUI5 delivery in one of the next releases.
48038
+ */
45887
48039
  export interface $Pie_tooltipSettings extends $BaseStructuredTypeSettings {
45888
48040
  /**
45889
48041
  * Set whether tooltip is enabled
@@ -46029,7 +48181,21 @@ declare module "sap/viz/ui5/types/RootContainer" {
46029
48181
  oLayout: RootContainer_layout
46030
48182
  ): this;
46031
48183
  }
46032
-
48184
+ /**
48185
+ * Describes the settings that can be provided to the RootContainer constructor.
48186
+ *
48187
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
48188
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
48189
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
48190
+ * distribution for backward compatibility.
48191
+ *
48192
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
48193
+ * control to benefit from new charting enhancements and timely support. **
48194
+ *
48195
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
48196
+ * make sure you evaluate it thoroughly before migration.
48197
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
48198
+ */
46033
48199
  export interface $RootContainerSettings extends $BaseStructuredTypeSettings {
46034
48200
  /**
46035
48201
  * Settings for the layout of the root container
@@ -46387,7 +48553,21 @@ declare module "sap/viz/ui5/types/RootContainer_layout" {
46387
48553
  iVgap?: int
46388
48554
  ): this;
46389
48555
  }
46390
-
48556
+ /**
48557
+ * Describes the settings that can be provided to the RootContainer_layout constructor.
48558
+ *
48559
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
48560
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
48561
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
48562
+ * distribution for backward compatibility.
48563
+ *
48564
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
48565
+ * control to benefit from new charting enhancements and timely support. **
48566
+ *
48567
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
48568
+ * make sure you evaluate it thoroughly before migration.
48569
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
48570
+ */
46391
48571
  export interface $RootContainer_layoutSettings
46392
48572
  extends $BaseStructuredTypeSettings {
46393
48573
  /**
@@ -47004,7 +49184,21 @@ declare module "sap/viz/ui5/types/Scatter" {
47004
49184
  bTimeBased?: boolean
47005
49185
  ): this;
47006
49186
  }
47007
-
49187
+ /**
49188
+ * Describes the settings that can be provided to the Scatter constructor.
49189
+ *
49190
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
49191
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
49192
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
49193
+ * distribution for backward compatibility.
49194
+ *
49195
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
49196
+ * control to benefit from new charting enhancements and timely support. **
49197
+ *
49198
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
49199
+ * make sure you evaluate it thoroughly before migration.
49200
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
49201
+ */
47008
49202
  export interface $ScatterSettings extends $BaseStructuredTypeSettings {
47009
49203
  /**
47010
49204
  * Set the color of the bubbles
@@ -47293,7 +49487,21 @@ declare module "sap/viz/ui5/types/Scatter_animation" {
47293
49487
  bResizing?: boolean
47294
49488
  ): this;
47295
49489
  }
47296
-
49490
+ /**
49491
+ * Describes the settings that can be provided to the Scatter_animation constructor.
49492
+ *
49493
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
49494
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
49495
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
49496
+ * distribution for backward compatibility.
49497
+ *
49498
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
49499
+ * control to benefit from new charting enhancements and timely support. **
49500
+ *
49501
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
49502
+ * make sure you evaluate it thoroughly before migration.
49503
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
49504
+ */
47297
49505
  export interface $Scatter_animationSettings
47298
49506
  extends $BaseStructuredTypeSettings {
47299
49507
  /**
@@ -47450,7 +49658,12 @@ declare module "sap/viz/ui5/types/Scatter_axisTooltip" {
47450
49658
  bVisible?: boolean
47451
49659
  ): this;
47452
49660
  }
47453
-
49661
+ /**
49662
+ * Describes the settings that can be provided to the Scatter_axisTooltip constructor.
49663
+ *
49664
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
49665
+ * SAPUI5 delivery in one of the next releases.
49666
+ */
47454
49667
  export interface $Scatter_axisTooltipSettings
47455
49668
  extends $BaseStructuredTypeSettings {
47456
49669
  /**
@@ -47576,7 +49789,12 @@ declare module "sap/viz/ui5/types/Scatter_hoverline" {
47576
49789
  bVisible?: boolean
47577
49790
  ): this;
47578
49791
  }
47579
-
49792
+ /**
49793
+ * Describes the settings that can be provided to the Scatter_hoverline constructor.
49794
+ *
49795
+ * @deprecated (since 1.19) - This Property has been deprecated. This interface will be removed from the
49796
+ * SAPUI5 delivery in one of the next releases.
49797
+ */
47580
49798
  export interface $Scatter_hoverlineSettings
47581
49799
  extends $BaseStructuredTypeSettings {
47582
49800
  /**
@@ -48017,7 +50235,21 @@ declare module "sap/viz/ui5/types/StackedVerticalBar" {
48017
50235
  oToolTip: StackedVerticalBar_tooltip
48018
50236
  ): this;
48019
50237
  }
48020
-
50238
+ /**
50239
+ * Describes the settings that can be provided to the StackedVerticalBar constructor.
50240
+ *
50241
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
50242
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
50243
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
50244
+ * distribution for backward compatibility.
50245
+ *
50246
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
50247
+ * control to benefit from new charting enhancements and timely support. **
50248
+ *
50249
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
50250
+ * make sure you evaluate it thoroughly before migration.
50251
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
50252
+ */
48021
50253
  export interface $StackedVerticalBarSettings
48022
50254
  extends $BaseStructuredTypeSettings {
48023
50255
  /**
@@ -48289,7 +50521,21 @@ declare module "sap/viz/ui5/types/StackedVerticalBar_animation" {
48289
50521
  bResizing?: boolean
48290
50522
  ): this;
48291
50523
  }
48292
-
50524
+ /**
50525
+ * Describes the settings that can be provided to the StackedVerticalBar_animation constructor.
50526
+ *
50527
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
50528
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
50529
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
50530
+ * distribution for backward compatibility.
50531
+ *
50532
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
50533
+ * control to benefit from new charting enhancements and timely support. **
50534
+ *
50535
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
50536
+ * make sure you evaluate it thoroughly before migration.
50537
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
50538
+ */
48293
50539
  export interface $StackedVerticalBar_animationSettings
48294
50540
  extends $BaseStructuredTypeSettings {
48295
50541
  /**
@@ -48419,7 +50665,12 @@ declare module "sap/viz/ui5/types/StackedVerticalBar_tooltip" {
48419
50665
  bEnabled?: boolean
48420
50666
  ): this;
48421
50667
  }
48422
-
50668
+ /**
50669
+ * Describes the settings that can be provided to the StackedVerticalBar_tooltip constructor.
50670
+ *
50671
+ * @deprecated (since 1.12) - This Property has been deprecated. This interface will be removed from the
50672
+ * SAPUI5 delivery in one of the next releases.
50673
+ */
48423
50674
  export interface $StackedVerticalBar_tooltipSettings
48424
50675
  extends $BaseStructuredTypeSettings {
48425
50676
  /**
@@ -48642,7 +50893,21 @@ declare module "sap/viz/ui5/types/Title" {
48642
50893
  bVisible?: boolean
48643
50894
  ): this;
48644
50895
  }
48645
-
50896
+ /**
50897
+ * Describes the settings that can be provided to the Title constructor.
50898
+ *
50899
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
50900
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
50901
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
50902
+ * distribution for backward compatibility.
50903
+ *
50904
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
50905
+ * control to benefit from new charting enhancements and timely support. **
50906
+ *
50907
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
50908
+ * make sure you evaluate it thoroughly before migration.
50909
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
50910
+ */
48646
50911
  export interface $TitleSettings extends $BaseStructuredTypeSettings {
48647
50912
  /**
48648
50913
  * Set the visibility of the main title
@@ -48815,7 +51080,12 @@ declare module "sap/viz/ui5/types/Title_layout" {
48815
51080
  iPriority?: int
48816
51081
  ): this;
48817
51082
  }
48818
-
51083
+ /**
51084
+ * Describes the settings that can be provided to the Title_layout constructor.
51085
+ *
51086
+ * @deprecated (since 1.12) - This Property has been deprecated. This interface will be removed from the
51087
+ * SAPUI5 delivery in one of the next releases.
51088
+ */
48819
51089
  export interface $Title_layoutSettings extends $BaseStructuredTypeSettings {
48820
51090
  /**
48821
51091
  * Set the position of the title
@@ -49377,7 +51647,21 @@ declare module "sap/viz/ui5/types/Tooltip" {
49377
51647
  bVisible?: boolean
49378
51648
  ): this;
49379
51649
  }
49380
-
51650
+ /**
51651
+ * Describes the settings that can be provided to the Tooltip constructor.
51652
+ *
51653
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
51654
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
51655
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
51656
+ * distribution for backward compatibility.
51657
+ *
51658
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
51659
+ * control to benefit from new charting enhancements and timely support. **
51660
+ *
51661
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
51662
+ * make sure you evaluate it thoroughly before migration.
51663
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
51664
+ */
49381
51665
  export interface $TooltipSettings extends $BaseStructuredTypeSettings {
49382
51666
  /**
49383
51667
  * A callback function can be specified as a parameter and passed to chart options when the user calls the
@@ -49638,7 +51922,21 @@ declare module "sap/viz/ui5/types/Tooltip_background" {
49638
51922
  sColor?: string
49639
51923
  ): this;
49640
51924
  }
49641
-
51925
+ /**
51926
+ * Describes the settings that can be provided to the Tooltip_background constructor.
51927
+ *
51928
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
51929
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
51930
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
51931
+ * distribution for backward compatibility.
51932
+ *
51933
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
51934
+ * control to benefit from new charting enhancements and timely support. **
51935
+ *
51936
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
51937
+ * make sure you evaluate it thoroughly before migration.
51938
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
51939
+ */
49642
51940
  export interface $Tooltip_backgroundSettings
49643
51941
  extends $BaseStructuredTypeSettings {
49644
51942
  /**
@@ -49763,7 +52061,12 @@ declare module "sap/viz/ui5/types/Tooltip_bodyDimensionLabel" {
49763
52061
  sColor?: string
49764
52062
  ): this;
49765
52063
  }
49766
-
52064
+ /**
52065
+ * Describes the settings that can be provided to the Tooltip_bodyDimensionLabel constructor.
52066
+ *
52067
+ * @deprecated (since 1.12) - This Property has been deprecated. This interface will be removed from the
52068
+ * SAPUI5 delivery in one of the next releases.
52069
+ */
49767
52070
  export interface $Tooltip_bodyDimensionLabelSettings
49768
52071
  extends $BaseStructuredTypeSettings {
49769
52072
  /**
@@ -49883,7 +52186,12 @@ declare module "sap/viz/ui5/types/Tooltip_bodyDimensionValue" {
49883
52186
  sColor?: string
49884
52187
  ): this;
49885
52188
  }
49886
-
52189
+ /**
52190
+ * Describes the settings that can be provided to the Tooltip_bodyDimensionValue constructor.
52191
+ *
52192
+ * @deprecated (since 1.12) - This Property has been deprecated. This interface will be removed from the
52193
+ * SAPUI5 delivery in one of the next releases.
52194
+ */
49887
52195
  export interface $Tooltip_bodyDimensionValueSettings
49888
52196
  extends $BaseStructuredTypeSettings {
49889
52197
  /**
@@ -50003,7 +52311,12 @@ declare module "sap/viz/ui5/types/Tooltip_bodyMeasureLabel" {
50003
52311
  sColor?: string
50004
52312
  ): this;
50005
52313
  }
50006
-
52314
+ /**
52315
+ * Describes the settings that can be provided to the Tooltip_bodyMeasureLabel constructor.
52316
+ *
52317
+ * @deprecated (since 1.12) - This Property has been deprecated. This interface will be removed from the
52318
+ * SAPUI5 delivery in one of the next releases.
52319
+ */
50007
52320
  export interface $Tooltip_bodyMeasureLabelSettings
50008
52321
  extends $BaseStructuredTypeSettings {
50009
52322
  /**
@@ -50123,7 +52436,12 @@ declare module "sap/viz/ui5/types/Tooltip_bodyMeasureValue" {
50123
52436
  sColor?: string
50124
52437
  ): this;
50125
52438
  }
50126
-
52439
+ /**
52440
+ * Describes the settings that can be provided to the Tooltip_bodyMeasureValue constructor.
52441
+ *
52442
+ * @deprecated (since 1.12) - This Property has been deprecated. This interface will be removed from the
52443
+ * SAPUI5 delivery in one of the next releases.
52444
+ */
50127
52445
  export interface $Tooltip_bodyMeasureValueSettings
50128
52446
  extends $BaseStructuredTypeSettings {
50129
52447
  /**
@@ -50272,7 +52590,12 @@ declare module "sap/viz/ui5/types/Tooltip_closeButton" {
50272
52590
  sBorderColor?: string
50273
52591
  ): this;
50274
52592
  }
50275
-
52593
+ /**
52594
+ * Describes the settings that can be provided to the Tooltip_closeButton constructor.
52595
+ *
52596
+ * @deprecated (since 1.12) - This Property has been deprecated. This interface will be removed from the
52597
+ * SAPUI5 delivery in one of the next releases.
52598
+ */
50276
52599
  export interface $Tooltip_closeButtonSettings
50277
52600
  extends $BaseStructuredTypeSettings {
50278
52601
  /**
@@ -50397,7 +52720,12 @@ declare module "sap/viz/ui5/types/Tooltip_footerLabel" {
50397
52720
  sColor?: string
50398
52721
  ): this;
50399
52722
  }
50400
-
52723
+ /**
52724
+ * Describes the settings that can be provided to the Tooltip_footerLabel constructor.
52725
+ *
52726
+ * @deprecated (since 1.12) - This Property has been deprecated. This interface will be removed from the
52727
+ * SAPUI5 delivery in one of the next releases.
52728
+ */
50401
52729
  export interface $Tooltip_footerLabelSettings
50402
52730
  extends $BaseStructuredTypeSettings {
50403
52731
  /**
@@ -50517,7 +52845,12 @@ declare module "sap/viz/ui5/types/Tooltip_separationLine" {
50517
52845
  sBorderBottomColor?: string
50518
52846
  ): this;
50519
52847
  }
50520
-
52848
+ /**
52849
+ * Describes the settings that can be provided to the Tooltip_separationLine constructor.
52850
+ *
52851
+ * @deprecated (since 1.12) - This Property has been deprecated. This interface will be removed from the
52852
+ * SAPUI5 delivery in one of the next releases.
52853
+ */
50521
52854
  export interface $Tooltip_separationLineSettings
50522
52855
  extends $BaseStructuredTypeSettings {
50523
52856
  /**
@@ -50862,7 +53195,21 @@ declare module "sap/viz/ui5/types/Treemap" {
50862
53195
  oToolTip: Treemap_tooltip
50863
53196
  ): this;
50864
53197
  }
50865
-
53198
+ /**
53199
+ * Describes the settings that can be provided to the Treemap constructor.
53200
+ *
53201
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
53202
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
53203
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
53204
+ * distribution for backward compatibility.
53205
+ *
53206
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
53207
+ * control to benefit from new charting enhancements and timely support. **
53208
+ *
53209
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
53210
+ * make sure you evaluate it thoroughly before migration.
53211
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
53212
+ */
50866
53213
  export interface $TreemapSettings extends $BaseStructuredTypeSettings {
50867
53214
  /**
50868
53215
  * Set the starting color of the tree map
@@ -51098,7 +53445,21 @@ declare module "sap/viz/ui5/types/Treemap_animation" {
51098
53445
  bResizing?: boolean
51099
53446
  ): this;
51100
53447
  }
51101
-
53448
+ /**
53449
+ * Describes the settings that can be provided to the Treemap_animation constructor.
53450
+ *
53451
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
53452
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
53453
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
53454
+ * distribution for backward compatibility.
53455
+ *
53456
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
53457
+ * control to benefit from new charting enhancements and timely support. **
53458
+ *
53459
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
53460
+ * make sure you evaluate it thoroughly before migration.
53461
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
53462
+ */
51102
53463
  export interface $Treemap_animationSettings
51103
53464
  extends $BaseStructuredTypeSettings {
51104
53465
  /**
@@ -51237,7 +53598,21 @@ declare module "sap/viz/ui5/types/Treemap_border" {
51237
53598
  bVisible?: boolean
51238
53599
  ): this;
51239
53600
  }
51240
-
53601
+ /**
53602
+ * Describes the settings that can be provided to the Treemap_border constructor.
53603
+ *
53604
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
53605
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
53606
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
53607
+ * distribution for backward compatibility.
53608
+ *
53609
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
53610
+ * control to benefit from new charting enhancements and timely support. **
53611
+ *
53612
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
53613
+ * make sure you evaluate it thoroughly before migration.
53614
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
53615
+ */
51241
53616
  export interface $Treemap_borderSettings extends $BaseStructuredTypeSettings {
51242
53617
  /**
51243
53618
  * Set the visibility of the zone edge
@@ -51356,7 +53731,12 @@ declare module "sap/viz/ui5/types/Treemap_tooltip" {
51356
53731
  bEnabled?: boolean
51357
53732
  ): this;
51358
53733
  }
51359
-
53734
+ /**
53735
+ * Describes the settings that can be provided to the Treemap_tooltip constructor.
53736
+ *
53737
+ * @deprecated (since 1.12) - This Property has been deprecated. This interface will be removed from the
53738
+ * SAPUI5 delivery in one of the next releases.
53739
+ */
51360
53740
  export interface $Treemap_tooltipSettings
51361
53741
  extends $BaseStructuredTypeSettings {
51362
53742
  /**
@@ -51764,7 +54144,21 @@ declare module "sap/viz/ui5/types/VerticalBar" {
51764
54144
  oToolTip: VerticalBar_tooltip
51765
54145
  ): this;
51766
54146
  }
51767
-
54147
+ /**
54148
+ * Describes the settings that can be provided to the VerticalBar constructor.
54149
+ *
54150
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
54151
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
54152
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
54153
+ * distribution for backward compatibility.
54154
+ *
54155
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
54156
+ * control to benefit from new charting enhancements and timely support. **
54157
+ *
54158
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
54159
+ * make sure you evaluate it thoroughly before migration.
54160
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
54161
+ */
51768
54162
  export interface $VerticalBarSettings extends $BaseStructuredTypeSettings {
51769
54163
  /**
51770
54164
  * Set the orientation of the plot area.
@@ -52024,7 +54418,21 @@ declare module "sap/viz/ui5/types/VerticalBar_animation" {
52024
54418
  bResizing?: boolean
52025
54419
  ): this;
52026
54420
  }
52027
-
54421
+ /**
54422
+ * Describes the settings that can be provided to the VerticalBar_animation constructor.
54423
+ *
54424
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
54425
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
54426
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
54427
+ * distribution for backward compatibility.
54428
+ *
54429
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
54430
+ * control to benefit from new charting enhancements and timely support. **
54431
+ *
54432
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
54433
+ * make sure you evaluate it thoroughly before migration.
54434
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
54435
+ */
52028
54436
  export interface $VerticalBar_animationSettings
52029
54437
  extends $BaseStructuredTypeSettings {
52030
54438
  /**
@@ -52154,7 +54562,12 @@ declare module "sap/viz/ui5/types/VerticalBar_tooltip" {
52154
54562
  bEnabled?: boolean
52155
54563
  ): this;
52156
54564
  }
52157
-
54565
+ /**
54566
+ * Describes the settings that can be provided to the VerticalBar_tooltip constructor.
54567
+ *
54568
+ * @deprecated (since 1.12) - This Property has been deprecated. This interface will be removed from the
54569
+ * SAPUI5 delivery in one of the next releases.
54570
+ */
52158
54571
  export interface $VerticalBar_tooltipSettings
52159
54572
  extends $BaseStructuredTypeSettings {
52160
54573
  /**
@@ -52287,7 +54700,21 @@ declare module "sap/viz/ui5/types/XYContainer" {
52287
54700
  fYAngle?: float
52288
54701
  ): this;
52289
54702
  }
52290
-
54703
+ /**
54704
+ * Describes the settings that can be provided to the XYContainer constructor.
54705
+ *
54706
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
54707
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
54708
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
54709
+ * distribution for backward compatibility.
54710
+ *
54711
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
54712
+ * control to benefit from new charting enhancements and timely support. **
54713
+ *
54714
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
54715
+ * make sure you evaluate it thoroughly before migration.
54716
+ * @experimental (since 1.7.2) - Charting API is not finished yet and might change completely.
54717
+ */
52291
54718
  export interface $XYContainerSettings extends $BaseStructuredTypeSettings {
52292
54719
  /**
52293
54720
  * Set the angle for the pie chart. This value should be between '-180' and '180'.
@@ -53420,7 +55847,21 @@ declare module "sap/viz/ui5/VizContainer" {
53420
55847
  oOptions: object
53421
55848
  ): void;
53422
55849
  }
53423
-
55850
+ /**
55851
+ * Describes the settings that can be provided to the VizContainer constructor.
55852
+ *
55853
+ * @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
55854
+ * as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
55855
+ * won't receive new features or improvements, only important bug fixes. They will only remain in the SAPUI5
55856
+ * distribution for backward compatibility.
55857
+ *
55858
+ * **SAP strongly recommends that existing consumers of those controls migrate to the new {@link sap.viz.ui5.controls.VizFrame VizFrame }
55859
+ * control to benefit from new charting enhancements and timely support. **
55860
+ *
55861
+ * **Note**: As the feature set, design and API usage of VizFrame might differ from the old chart controls,
55862
+ * make sure you evaluate it thoroughly before migration.
55863
+ * @experimental (since 1.19.0) - API is not finished yet and might change completely
55864
+ */
53424
55865
  export interface $VizContainerSettings extends $BaseControlSettings {
53425
55866
  /**
53426
55867
  * Type for visualization.
@@ -53522,13 +55963,22 @@ declare module "sap/viz/ui5/VizContainer" {
53522
55963
  initialized?: (oEvent: Event) => void;
53523
55964
  }
53524
55965
 
55966
+ /**
55967
+ * Parameters of the VizContainer#deselectData event.
55968
+ */
53525
55969
  export interface VizContainer$DeselectDataEventParameters {}
53526
55970
 
55971
+ /**
55972
+ * Event object of the VizContainer#deselectData event.
55973
+ */
53527
55974
  export type VizContainer$DeselectDataEvent = Event<
53528
55975
  VizContainer$DeselectDataEventParameters,
53529
55976
  VizContainer
53530
55977
  >;
53531
55978
 
55979
+ /**
55980
+ * Parameters of the VizContainer#feedsChanged event.
55981
+ */
53532
55982
  export interface VizContainer$FeedsChangedEventParameters {
53533
55983
  /**
53534
55984
  * An array of changed feeds.
@@ -53536,48 +55986,87 @@ declare module "sap/viz/ui5/VizContainer" {
53536
55986
  feeds?: FeedItem[];
53537
55987
  }
53538
55988
 
55989
+ /**
55990
+ * Event object of the VizContainer#feedsChanged event.
55991
+ */
53539
55992
  export type VizContainer$FeedsChangedEvent = Event<
53540
55993
  VizContainer$FeedsChangedEventParameters,
53541
55994
  VizContainer
53542
55995
  >;
53543
55996
 
55997
+ /**
55998
+ * Parameters of the VizContainer#hideTooltip event.
55999
+ */
53544
56000
  export interface VizContainer$HideTooltipEventParameters {}
53545
56001
 
56002
+ /**
56003
+ * Event object of the VizContainer#hideTooltip event.
56004
+ */
53546
56005
  export type VizContainer$HideTooltipEvent = Event<
53547
56006
  VizContainer$HideTooltipEventParameters,
53548
56007
  VizContainer
53549
56008
  >;
53550
56009
 
56010
+ /**
56011
+ * Parameters of the VizContainer#initialized event.
56012
+ */
53551
56013
  export interface VizContainer$InitializedEventParameters {}
53552
56014
 
56015
+ /**
56016
+ * Event object of the VizContainer#initialized event.
56017
+ */
53553
56018
  export type VizContainer$InitializedEvent = Event<
53554
56019
  VizContainer$InitializedEventParameters,
53555
56020
  VizContainer
53556
56021
  >;
53557
56022
 
56023
+ /**
56024
+ * Parameters of the VizContainer#selectData event.
56025
+ */
53558
56026
  export interface VizContainer$SelectDataEventParameters {}
53559
56027
 
56028
+ /**
56029
+ * Event object of the VizContainer#selectData event.
56030
+ */
53560
56031
  export type VizContainer$SelectDataEvent = Event<
53561
56032
  VizContainer$SelectDataEventParameters,
53562
56033
  VizContainer
53563
56034
  >;
53564
56035
 
56036
+ /**
56037
+ * Parameters of the VizContainer#showTooltip event.
56038
+ */
53565
56039
  export interface VizContainer$ShowTooltipEventParameters {}
53566
56040
 
56041
+ /**
56042
+ * Event object of the VizContainer#showTooltip event.
56043
+ */
53567
56044
  export type VizContainer$ShowTooltipEvent = Event<
53568
56045
  VizContainer$ShowTooltipEventParameters,
53569
56046
  VizContainer
53570
56047
  >;
53571
56048
 
56049
+ /**
56050
+ * Parameters of the VizContainer#vizDefinitionChanged event.
56051
+ */
53572
56052
  export interface VizContainer$VizDefinitionChangedEventParameters {}
53573
56053
 
56054
+ /**
56055
+ * Event object of the VizContainer#vizDefinitionChanged event.
56056
+ */
53574
56057
  export type VizContainer$VizDefinitionChangedEvent = Event<
53575
56058
  VizContainer$VizDefinitionChangedEventParameters,
53576
56059
  VizContainer
53577
56060
  >;
53578
56061
 
56062
+ /**
56063
+ * Parameters of the VizContainer#vizTypeChanged event.
56064
+ */
53579
56065
  export interface VizContainer$VizTypeChangedEventParameters {}
53580
56066
 
56067
+ /**
56068
+ * Event object of the VizContainer#vizTypeChanged event.
56069
+ */
53581
56070
  export type VizContainer$VizTypeChangedEvent = Event<
53582
56071
  VizContainer$VizTypeChangedEventParameters,
53583
56072
  VizContainer