@sapui5/ts-types-esm 1.133.0 → 1.134.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.cux.home.d.ts +0 -14
- package/types/sap.esh.search.ui.d.ts +7 -1
- package/types/sap.f.d.ts +53 -9
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +25 -3
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +64 -58
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +192 -136
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +629 -77
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +360 -98
- package/types/sap.suite.ui.commons.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +53 -30
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +107 -7
- package/types/sap.ui.codeeditor.d.ts +9 -7
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +9 -28
- package/types/sap.ui.core.d.ts +46779 -46490
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -3
- package/types/sap.ui.layout.d.ts +4 -2
- package/types/sap.ui.mdc.d.ts +227 -12
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +76 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +41 -47
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +335 -4
- package/types/sap.ui.vk.d.ts +4 -4
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +69 -4
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +7 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/types/sap.gantt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.134.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/gantt/library" {
|
|
4
4
|
import ChartScheme from "sap/gantt/config/ChartScheme";
|
|
@@ -8509,10 +8509,10 @@ declare module "sap/gantt/def/cal/Calendar" {
|
|
|
8509
8509
|
PropertyBindingInfo,
|
|
8510
8510
|
} from "sap/ui/base/ManagedObject";
|
|
8511
8511
|
|
|
8512
|
-
import { ValueSVGPaintServer } from "sap/gantt/library";
|
|
8513
|
-
|
|
8514
8512
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
8515
8513
|
|
|
8514
|
+
import { ValueSVGPaintServer } from "sap/gantt/library";
|
|
8515
|
+
|
|
8516
8516
|
/**
|
|
8517
8517
|
* A calendar that contains a list of time interval definitions.
|
|
8518
8518
|
*
|
|
@@ -8615,17 +8615,6 @@ declare module "sap/gantt/def/cal/Calendar" {
|
|
|
8615
8615
|
* @returns Reference to `this` in order to allow method chaining
|
|
8616
8616
|
*/
|
|
8617
8617
|
destroyTimeIntervals(): this;
|
|
8618
|
-
/**
|
|
8619
|
-
* Gets current value of property {@link #getBackgroundColor backgroundColor}.
|
|
8620
|
-
*
|
|
8621
|
-
* Background color of time intervals.
|
|
8622
|
-
*
|
|
8623
|
-
* Default value is `"#e5e5e5"`.
|
|
8624
|
-
*
|
|
8625
|
-
*
|
|
8626
|
-
* @returns Value of property `backgroundColor`
|
|
8627
|
-
*/
|
|
8628
|
-
getBackgroundColor(): ValueSVGPaintServer;
|
|
8629
8618
|
/**
|
|
8630
8619
|
* Gets current value of property {@link #getKey key}.
|
|
8631
8620
|
*
|
|
@@ -8703,7 +8692,7 @@ declare module "sap/gantt/def/cal/Calendar" {
|
|
|
8703
8692
|
*
|
|
8704
8693
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8705
8694
|
*
|
|
8706
|
-
* Default value is `"
|
|
8695
|
+
* Default value is `"sapChart_Sequence_Neutral_Plus2"`.
|
|
8707
8696
|
*
|
|
8708
8697
|
*
|
|
8709
8698
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -10643,17 +10632,6 @@ declare module "sap/gantt/def/gradient/Stop" {
|
|
|
10643
10632
|
* @returns Value of property `offSet`
|
|
10644
10633
|
*/
|
|
10645
10634
|
getOffSet(): string;
|
|
10646
|
-
/**
|
|
10647
|
-
* Gets current value of property {@link #getStopColor stopColor}.
|
|
10648
|
-
*
|
|
10649
|
-
* Property 'stop-color' of SVG tag 'stop'.
|
|
10650
|
-
*
|
|
10651
|
-
* Default value is `"#FFFFFF"`.
|
|
10652
|
-
*
|
|
10653
|
-
*
|
|
10654
|
-
* @returns Value of property `stopColor`
|
|
10655
|
-
*/
|
|
10656
|
-
getStopColor(): ValueSVGPaintServer;
|
|
10657
10635
|
/**
|
|
10658
10636
|
* Gets current value of property {@link #getStopOpacity stopOpacity}.
|
|
10659
10637
|
*
|
|
@@ -10691,7 +10669,7 @@ declare module "sap/gantt/def/gradient/Stop" {
|
|
|
10691
10669
|
*
|
|
10692
10670
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10693
10671
|
*
|
|
10694
|
-
* Default value is `"
|
|
10672
|
+
* Default value is `"sapChart_ContrastLineColor"`.
|
|
10695
10673
|
*
|
|
10696
10674
|
*
|
|
10697
10675
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -10762,8 +10740,13 @@ declare module "sap/gantt/def/pattern/BackSlashPattern" {
|
|
|
10762
10740
|
* properties.
|
|
10763
10741
|
*
|
|
10764
10742
|
*
|
|
10765
|
-
*
|
|
10766
|
-
*
|
|
10743
|
+
*
|
|
10744
|
+
*
|
|
10745
|
+
*
|
|
10746
|
+
* Tile
|
|
10747
|
+
* Detail: tileHeight tileWidth background
|
|
10748
|
+
* Color strokeColor
|
|
10749
|
+
* strokeWidth
|
|
10767
10750
|
*/
|
|
10768
10751
|
export default class BackSlashPattern extends PatternBase {
|
|
10769
10752
|
/**
|
|
@@ -10935,10 +10918,10 @@ declare module "sap/gantt/def/pattern/BackSlashPattern" {
|
|
|
10935
10918
|
declare module "sap/gantt/def/pattern/PatternBase" {
|
|
10936
10919
|
import { default as DefBase, $DefBaseSettings } from "sap/gantt/def/DefBase";
|
|
10937
10920
|
|
|
10938
|
-
import { ValueSVGPaintServer } from "sap/gantt/library";
|
|
10939
|
-
|
|
10940
10921
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
10941
10922
|
|
|
10923
|
+
import { ValueSVGPaintServer } from "sap/gantt/library";
|
|
10924
|
+
|
|
10942
10925
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
10943
10926
|
|
|
10944
10927
|
/**
|
|
@@ -11010,18 +10993,6 @@ declare module "sap/gantt/def/pattern/PatternBase" {
|
|
|
11010
10993
|
* @returns Metadata object describing this class
|
|
11011
10994
|
*/
|
|
11012
10995
|
static getMetadata(): ElementMetadata;
|
|
11013
|
-
/**
|
|
11014
|
-
* Gets current value of property {@link #getBackgroundColor backgroundColor}.
|
|
11015
|
-
*
|
|
11016
|
-
* Background color of the pattern. Technically a rectangle with the color is added in the beginning of
|
|
11017
|
-
* the pattern definition.
|
|
11018
|
-
*
|
|
11019
|
-
* Default value is `"#fff"`.
|
|
11020
|
-
*
|
|
11021
|
-
*
|
|
11022
|
-
* @returns Value of property `backgroundColor`
|
|
11023
|
-
*/
|
|
11024
|
-
getBackgroundColor(): ValueSVGPaintServer;
|
|
11025
10996
|
/**
|
|
11026
10997
|
* Gets current value of property {@link #getBackgroundFillOpacity backgroundFillOpacity}.
|
|
11027
10998
|
*
|
|
@@ -11063,7 +11034,7 @@ declare module "sap/gantt/def/pattern/PatternBase" {
|
|
|
11063
11034
|
*
|
|
11064
11035
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
11065
11036
|
*
|
|
11066
|
-
* Default value is `"
|
|
11037
|
+
* Default value is `"sapChart_ContrastLineColor"`.
|
|
11067
11038
|
*
|
|
11068
11039
|
*
|
|
11069
11040
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -11173,7 +11144,13 @@ declare module "sap/gantt/def/pattern/SlashPattern" {
|
|
|
11173
11144
|
* properties.
|
|
11174
11145
|
*
|
|
11175
11146
|
*
|
|
11176
|
-
*
|
|
11147
|
+
*
|
|
11148
|
+
*
|
|
11149
|
+
*
|
|
11150
|
+
* Tile Detail:
|
|
11151
|
+
* tileHeight tileWidth
|
|
11152
|
+
* background Color
|
|
11153
|
+
* strokeColor strokeWidth
|
|
11177
11154
|
*/
|
|
11178
11155
|
export default abstract class SlashPattern extends PatternBase {
|
|
11179
11156
|
/**
|
|
@@ -31908,17 +31885,6 @@ declare module "sap/gantt/simple/AdhocLine" {
|
|
|
31908
31885
|
* @returns Value of property `markerType`
|
|
31909
31886
|
*/
|
|
31910
31887
|
getMarkerType(): MarkerType;
|
|
31911
|
-
/**
|
|
31912
|
-
* Gets current value of property {@link #getStroke stroke}.
|
|
31913
|
-
*
|
|
31914
|
-
* Standard SVG 'stroke' attribute. You can provide the stroke attribute with HTML colors and the URL reference
|
|
31915
|
-
* to the paint server. Paint server definitions usually come from paint servers rendered by {@link sap.gantt.simple.GanttChartContainer},
|
|
31916
|
-
* {@link sap.gantt.simple.GanttChartWithTable}.
|
|
31917
|
-
*
|
|
31918
|
-
*
|
|
31919
|
-
* @returns Value of property `stroke`
|
|
31920
|
-
*/
|
|
31921
|
-
getStroke(): ValueSVGPaintServer;
|
|
31922
31888
|
/**
|
|
31923
31889
|
* Gets current value of property {@link #getStrokeDasharray strokeDasharray}.
|
|
31924
31890
|
*
|
|
@@ -32040,6 +32006,8 @@ declare module "sap/gantt/simple/AdhocLine" {
|
|
|
32040
32006
|
*
|
|
32041
32007
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
32042
32008
|
*
|
|
32009
|
+
* Default value is `"sapChart_Sequence_3_BorderColor"`.
|
|
32010
|
+
*
|
|
32043
32011
|
*
|
|
32044
32012
|
* @returns Reference to `this` in order to allow method chaining
|
|
32045
32013
|
*/
|
|
@@ -32047,7 +32015,7 @@ declare module "sap/gantt/simple/AdhocLine" {
|
|
|
32047
32015
|
/**
|
|
32048
32016
|
* New value for property `stroke`
|
|
32049
32017
|
*/
|
|
32050
|
-
sStroke
|
|
32018
|
+
sStroke?: ValueSVGPaintServer
|
|
32051
32019
|
): this;
|
|
32052
32020
|
/**
|
|
32053
32021
|
* Sets a new value for property {@link #getStrokeDasharray strokeDasharray}.
|
|
@@ -32262,6 +32230,8 @@ declare module "sap/gantt/simple/BaseCalendar" {
|
|
|
32262
32230
|
$BaseRectangleSettings,
|
|
32263
32231
|
} from "sap/gantt/simple/BaseRectangle";
|
|
32264
32232
|
|
|
32233
|
+
import { ValueSVGPaintServer } from "sap/gantt/library";
|
|
32234
|
+
|
|
32265
32235
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
32266
32236
|
|
|
32267
32237
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
@@ -32350,6 +32320,18 @@ declare module "sap/gantt/simple/BaseCalendar" {
|
|
|
32350
32320
|
* @returns Value of property `calendarName`
|
|
32351
32321
|
*/
|
|
32352
32322
|
getCalendarName(): string;
|
|
32323
|
+
/**
|
|
32324
|
+
* Gets current value of property {@link #getFill fill}.
|
|
32325
|
+
*
|
|
32326
|
+
* Fill for calendar shape
|
|
32327
|
+
*
|
|
32328
|
+
* Default value is `"sapChart_Sequence_Neutral_Plus2"`.
|
|
32329
|
+
*
|
|
32330
|
+
* @since 1.134
|
|
32331
|
+
*
|
|
32332
|
+
* @returns Value of property `fill`
|
|
32333
|
+
*/
|
|
32334
|
+
getFill(): ValueSVGPaintServer;
|
|
32353
32335
|
/**
|
|
32354
32336
|
* Calendar is not a selectable shape. getSelectable always returns false
|
|
32355
32337
|
*
|
|
@@ -32357,6 +32339,18 @@ declare module "sap/gantt/simple/BaseCalendar" {
|
|
|
32357
32339
|
* @returns false calendar is NOT selectable
|
|
32358
32340
|
*/
|
|
32359
32341
|
getSelectable(): boolean;
|
|
32342
|
+
/**
|
|
32343
|
+
* Gets current value of property {@link #getStroke stroke}.
|
|
32344
|
+
*
|
|
32345
|
+
* stroke for the calendar shape
|
|
32346
|
+
*
|
|
32347
|
+
* Default value is `"sapChart_Sequence_Neutral_BorderColor"`.
|
|
32348
|
+
*
|
|
32349
|
+
* @since 1.134
|
|
32350
|
+
*
|
|
32351
|
+
* @returns Value of property `stroke`
|
|
32352
|
+
*/
|
|
32353
|
+
getStroke(): ValueSVGPaintServer;
|
|
32360
32354
|
/**
|
|
32361
32355
|
* Calendar width If calendarName property is set then return the full width of the gantt chart else if
|
|
32362
32356
|
* the time and endTime are present, return their difference.
|
|
@@ -32394,6 +32388,44 @@ declare module "sap/gantt/simple/BaseCalendar" {
|
|
|
32394
32388
|
*/
|
|
32395
32389
|
sCalendarName: string
|
|
32396
32390
|
): this;
|
|
32391
|
+
/**
|
|
32392
|
+
* Sets a new value for property {@link #getFill fill}.
|
|
32393
|
+
*
|
|
32394
|
+
* Fill for calendar shape
|
|
32395
|
+
*
|
|
32396
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
32397
|
+
*
|
|
32398
|
+
* Default value is `"sapChart_Sequence_Neutral_Plus2"`.
|
|
32399
|
+
*
|
|
32400
|
+
* @since 1.134
|
|
32401
|
+
*
|
|
32402
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
32403
|
+
*/
|
|
32404
|
+
setFill(
|
|
32405
|
+
/**
|
|
32406
|
+
* New value for property `fill`
|
|
32407
|
+
*/
|
|
32408
|
+
sFill?: ValueSVGPaintServer
|
|
32409
|
+
): this;
|
|
32410
|
+
/**
|
|
32411
|
+
* Sets a new value for property {@link #getStroke stroke}.
|
|
32412
|
+
*
|
|
32413
|
+
* stroke for the calendar shape
|
|
32414
|
+
*
|
|
32415
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
32416
|
+
*
|
|
32417
|
+
* Default value is `"sapChart_Sequence_Neutral_BorderColor"`.
|
|
32418
|
+
*
|
|
32419
|
+
* @since 1.134
|
|
32420
|
+
*
|
|
32421
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
32422
|
+
*/
|
|
32423
|
+
setStroke(
|
|
32424
|
+
/**
|
|
32425
|
+
* New value for property `stroke`
|
|
32426
|
+
*/
|
|
32427
|
+
sStroke?: ValueSVGPaintServer
|
|
32428
|
+
): this;
|
|
32397
32429
|
}
|
|
32398
32430
|
/**
|
|
32399
32431
|
* Describes the settings that can be provided to the BaseCalendar constructor.
|
|
@@ -32407,6 +32439,20 @@ declare module "sap/gantt/simple/BaseCalendar" {
|
|
|
32407
32439
|
* even if the calendarName is not available in calendar definitions.
|
|
32408
32440
|
*/
|
|
32409
32441
|
calendarName?: string | PropertyBindingInfo;
|
|
32442
|
+
|
|
32443
|
+
/**
|
|
32444
|
+
* Fill for calendar shape
|
|
32445
|
+
*
|
|
32446
|
+
* @since 1.134
|
|
32447
|
+
*/
|
|
32448
|
+
fill?: ValueSVGPaintServer | PropertyBindingInfo | `{${string}}`;
|
|
32449
|
+
|
|
32450
|
+
/**
|
|
32451
|
+
* stroke for the calendar shape
|
|
32452
|
+
*
|
|
32453
|
+
* @since 1.134
|
|
32454
|
+
*/
|
|
32455
|
+
stroke?: ValueSVGPaintServer | PropertyBindingInfo | `{${string}}`;
|
|
32410
32456
|
}
|
|
32411
32457
|
}
|
|
32412
32458
|
|
|
@@ -36808,6 +36854,8 @@ declare module "sap/gantt/simple/BaseText" {
|
|
|
36808
36854
|
$BaseShapeSettings,
|
|
36809
36855
|
} from "sap/gantt/simple/BaseShape";
|
|
36810
36856
|
|
|
36857
|
+
import { ValueSVGPaintServer } from "sap/gantt/library";
|
|
36858
|
+
|
|
36811
36859
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
36812
36860
|
|
|
36813
36861
|
import RenderManager from "sap/ui/core/RenderManager";
|
|
@@ -36880,13 +36928,24 @@ declare module "sap/gantt/simple/BaseText" {
|
|
|
36880
36928
|
* @returns Metadata object describing this class
|
|
36881
36929
|
*/
|
|
36882
36930
|
static getMetadata(): ElementMetadata;
|
|
36931
|
+
/**
|
|
36932
|
+
* Gets current value of property {@link #getFill fill}.
|
|
36933
|
+
*
|
|
36934
|
+
* The color of the text
|
|
36935
|
+
*
|
|
36936
|
+
* Default value is `"sapTextColor"`.
|
|
36937
|
+
*
|
|
36938
|
+
*
|
|
36939
|
+
* @returns Value of property `fill`
|
|
36940
|
+
*/
|
|
36941
|
+
getFill(): ValueSVGPaintServer;
|
|
36883
36942
|
/**
|
|
36884
36943
|
* Gets current value of property {@link #getFontFamily fontFamily}.
|
|
36885
36944
|
*
|
|
36886
36945
|
* This property indicates which font family will be used to render the text, specified as a prioritized
|
|
36887
36946
|
* list of font family names and/or generic family names
|
|
36888
36947
|
*
|
|
36889
|
-
* Default value is `"
|
|
36948
|
+
* Default value is `"sapFontFamily"`.
|
|
36890
36949
|
*
|
|
36891
36950
|
*
|
|
36892
36951
|
* @returns Value of property `fontFamily`
|
|
@@ -37000,6 +37059,24 @@ declare module "sap/gantt/simple/BaseText" {
|
|
|
37000
37059
|
*/
|
|
37001
37060
|
oElement: BaseText
|
|
37002
37061
|
): void;
|
|
37062
|
+
/**
|
|
37063
|
+
* Sets a new value for property {@link #getFill fill}.
|
|
37064
|
+
*
|
|
37065
|
+
* The color of the text
|
|
37066
|
+
*
|
|
37067
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
37068
|
+
*
|
|
37069
|
+
* Default value is `"sapTextColor"`.
|
|
37070
|
+
*
|
|
37071
|
+
*
|
|
37072
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
37073
|
+
*/
|
|
37074
|
+
setFill(
|
|
37075
|
+
/**
|
|
37076
|
+
* New value for property `fill`
|
|
37077
|
+
*/
|
|
37078
|
+
sFill?: ValueSVGPaintServer
|
|
37079
|
+
): this;
|
|
37003
37080
|
/**
|
|
37004
37081
|
* Sets a new value for property {@link #getFontFamily fontFamily}.
|
|
37005
37082
|
*
|
|
@@ -37008,7 +37085,7 @@ declare module "sap/gantt/simple/BaseText" {
|
|
|
37008
37085
|
*
|
|
37009
37086
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
37010
37087
|
*
|
|
37011
|
-
* Default value is `"
|
|
37088
|
+
* Default value is `"sapFontFamily"`.
|
|
37012
37089
|
*
|
|
37013
37090
|
*
|
|
37014
37091
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -37214,6 +37291,11 @@ declare module "sap/gantt/simple/BaseText" {
|
|
|
37214
37291
|
* @since 1.93
|
|
37215
37292
|
*/
|
|
37216
37293
|
isLabel?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
37294
|
+
|
|
37295
|
+
/**
|
|
37296
|
+
* The color of the text
|
|
37297
|
+
*/
|
|
37298
|
+
fill?: ValueSVGPaintServer | PropertyBindingInfo | `{${string}}`;
|
|
37217
37299
|
}
|
|
37218
37300
|
}
|
|
37219
37301
|
|
|
@@ -39993,17 +40075,6 @@ declare module "sap/gantt/simple/DeltaLine" {
|
|
|
39993
40075
|
* @returns Value of property `resizable`
|
|
39994
40076
|
*/
|
|
39995
40077
|
getResizable(): boolean;
|
|
39996
|
-
/**
|
|
39997
|
-
* Gets current value of property {@link #getStroke stroke}.
|
|
39998
|
-
*
|
|
39999
|
-
* Standard SVG 'stroke' attribute. You can provide the stroke attribute with HTML colors and URL reference
|
|
40000
|
-
* to the paint server. Paint server definitions usually come from paint servers rendered by {@link sap.gantt.GanttChartContainer},
|
|
40001
|
-
* {@link sap.gantt.GanttChartWithTable} or {@link sap.gantt.GanttChart}.
|
|
40002
|
-
*
|
|
40003
|
-
*
|
|
40004
|
-
* @returns Value of property `stroke`
|
|
40005
|
-
*/
|
|
40006
|
-
getStroke(): ValueSVGPaintServer;
|
|
40007
40078
|
/**
|
|
40008
40079
|
* Gets current value of property {@link #getStrokeDasharray strokeDasharray}.
|
|
40009
40080
|
*
|
|
@@ -40147,6 +40218,8 @@ declare module "sap/gantt/simple/DeltaLine" {
|
|
|
40147
40218
|
*
|
|
40148
40219
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
40149
40220
|
*
|
|
40221
|
+
* Default value is `"sapChart_Sequence_3_BorderColor"`.
|
|
40222
|
+
*
|
|
40150
40223
|
*
|
|
40151
40224
|
* @returns Reference to `this` in order to allow method chaining
|
|
40152
40225
|
*/
|
|
@@ -40154,7 +40227,7 @@ declare module "sap/gantt/simple/DeltaLine" {
|
|
|
40154
40227
|
/**
|
|
40155
40228
|
* New value for property `stroke`
|
|
40156
40229
|
*/
|
|
40157
|
-
sStroke
|
|
40230
|
+
sStroke?: ValueSVGPaintServer
|
|
40158
40231
|
): this;
|
|
40159
40232
|
/**
|
|
40160
40233
|
* Sets a new value for property {@link #getStrokeDasharray strokeDasharray}.
|
|
@@ -42761,9 +42834,9 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
42761
42834
|
import OverflowToolbar from "sap/m/OverflowToolbar";
|
|
42762
42835
|
|
|
42763
42836
|
import {
|
|
42837
|
+
ValueSVGPaintServer,
|
|
42764
42838
|
simple,
|
|
42765
42839
|
DragOrientation,
|
|
42766
|
-
ValueSVGPaintServer,
|
|
42767
42840
|
SelectionMode,
|
|
42768
42841
|
dragdrop,
|
|
42769
42842
|
} from "sap/gantt/library";
|
|
@@ -44472,13 +44545,13 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
44472
44545
|
* Property to add custom color to the highlighted area between delta lines. This would default to Fiori
|
|
44473
44546
|
* standard color
|
|
44474
44547
|
*
|
|
44475
|
-
* Default value is `"
|
|
44548
|
+
* Default value is `"sapUiListSelectionBackgroundColor"`.
|
|
44476
44549
|
*
|
|
44477
44550
|
* @since 1.86
|
|
44478
44551
|
*
|
|
44479
44552
|
* @returns Value of property `deltaAreaHighlightColor`
|
|
44480
44553
|
*/
|
|
44481
|
-
getDeltaAreaHighlightColor():
|
|
44554
|
+
getDeltaAreaHighlightColor(): ValueSVGPaintServer;
|
|
44482
44555
|
/**
|
|
44483
44556
|
* Gets current value of property {@link #getDeltaLineLayer deltaLineLayer}.
|
|
44484
44557
|
*
|
|
@@ -44912,6 +44985,8 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
44912
44985
|
* The rowHighlightAndHoverFill property defines the color that is filled for the highlighted and hovered
|
|
44913
44986
|
* rows when a shape is being dragged The highlighted rows are the ones where the shape drop is allowed
|
|
44914
44987
|
*
|
|
44988
|
+
* Default value is `"sapChart_Sequence_1_Plus1"`.
|
|
44989
|
+
*
|
|
44915
44990
|
* @since 1.108
|
|
44916
44991
|
*
|
|
44917
44992
|
* @returns Value of property `rowHighlightAndHoverFill`
|
|
@@ -44923,6 +44998,8 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
44923
44998
|
* The rowHighlightFill property defines the color that is filled for the highlighted rows when a shape
|
|
44924
44999
|
* is being dragged The highlighted rows are the ones where the shape drop is allowed
|
|
44925
45000
|
*
|
|
45001
|
+
* Default value is `"sapChart_Sequence_1_Plus3"`.
|
|
45002
|
+
*
|
|
44926
45003
|
* @since 1.108
|
|
44927
45004
|
*
|
|
44928
45005
|
* @returns Value of property `rowHighlightFill`
|
|
@@ -44977,7 +45054,7 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
44977
45054
|
* ```javascript
|
|
44978
45055
|
*
|
|
44979
45056
|
* {
|
|
44980
|
-
* color: "
|
|
45057
|
+
* color: "@sapChart_Sequence_9_Plus2",
|
|
44981
45058
|
* strokeWidth: 2,
|
|
44982
45059
|
* strokeDasharray: "5,1"
|
|
44983
45060
|
* shapeColor: null,
|
|
@@ -45080,7 +45157,7 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
45080
45157
|
* ```javascript
|
|
45081
45158
|
*
|
|
45082
45159
|
* {
|
|
45083
|
-
* color: "
|
|
45160
|
+
* color: "@sapChart_Sequence_9_Plus2",
|
|
45084
45161
|
* strokeWidth: 2,
|
|
45085
45162
|
* strokeDasharray: "5,1"
|
|
45086
45163
|
* shapeColor: null,
|
|
@@ -45816,7 +45893,7 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
45816
45893
|
*
|
|
45817
45894
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
45818
45895
|
*
|
|
45819
|
-
* Default value is `"
|
|
45896
|
+
* Default value is `"sapUiListSelectionBackgroundColor"`.
|
|
45820
45897
|
*
|
|
45821
45898
|
* @since 1.86
|
|
45822
45899
|
*
|
|
@@ -45826,7 +45903,7 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
45826
45903
|
/**
|
|
45827
45904
|
* New value for property `deltaAreaHighlightColor`
|
|
45828
45905
|
*/
|
|
45829
|
-
sDeltaAreaHighlightColor?:
|
|
45906
|
+
sDeltaAreaHighlightColor?: ValueSVGPaintServer
|
|
45830
45907
|
): this;
|
|
45831
45908
|
/**
|
|
45832
45909
|
* Sets a new value for property {@link #getDeltaLineLayer deltaLineLayer}.
|
|
@@ -46475,6 +46552,8 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
46475
46552
|
*
|
|
46476
46553
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
46477
46554
|
*
|
|
46555
|
+
* Default value is `"sapChart_Sequence_1_Plus1"`.
|
|
46556
|
+
*
|
|
46478
46557
|
* @since 1.108
|
|
46479
46558
|
*
|
|
46480
46559
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -46483,7 +46562,7 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
46483
46562
|
/**
|
|
46484
46563
|
* New value for property `rowHighlightAndHoverFill`
|
|
46485
46564
|
*/
|
|
46486
|
-
sRowHighlightAndHoverFill
|
|
46565
|
+
sRowHighlightAndHoverFill?: ValueSVGPaintServer
|
|
46487
46566
|
): this;
|
|
46488
46567
|
/**
|
|
46489
46568
|
* Sets a new value for property {@link #getRowHighlightFill rowHighlightFill}.
|
|
@@ -46493,6 +46572,8 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
46493
46572
|
*
|
|
46494
46573
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
46495
46574
|
*
|
|
46575
|
+
* Default value is `"sapChart_Sequence_1_Plus3"`.
|
|
46576
|
+
*
|
|
46496
46577
|
* @since 1.108
|
|
46497
46578
|
*
|
|
46498
46579
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -46501,7 +46582,7 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
46501
46582
|
/**
|
|
46502
46583
|
* New value for property `rowHighlightFill`
|
|
46503
46584
|
*/
|
|
46504
|
-
sRowHighlightFill
|
|
46585
|
+
sRowHighlightFill?: ValueSVGPaintServer
|
|
46505
46586
|
): this;
|
|
46506
46587
|
/**
|
|
46507
46588
|
* Call for 'setRowSettingsTemplate' method of table is made with invalidate Also, create the promise to
|
|
@@ -47060,7 +47141,7 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
47060
47141
|
* ```javascript
|
|
47061
47142
|
*
|
|
47062
47143
|
* {
|
|
47063
|
-
* color: "
|
|
47144
|
+
* color: "@sapChart_Sequence_9_Plus2",
|
|
47064
47145
|
* strokeWidth: 2,
|
|
47065
47146
|
* strokeDasharray: "5,1"
|
|
47066
47147
|
* shapeColor: null,
|
|
@@ -47077,7 +47158,7 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
47077
47158
|
* ```javascript
|
|
47078
47159
|
*
|
|
47079
47160
|
* {
|
|
47080
|
-
* color: "
|
|
47161
|
+
* color: "@sapChart_Sequence_9_Plus2",
|
|
47081
47162
|
* strokeWidth: 2,
|
|
47082
47163
|
* strokeDasharray: "5,1"
|
|
47083
47164
|
* shapeColor: null,
|
|
@@ -47305,7 +47386,10 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
47305
47386
|
*
|
|
47306
47387
|
* @since 1.86
|
|
47307
47388
|
*/
|
|
47308
|
-
deltaAreaHighlightColor?:
|
|
47389
|
+
deltaAreaHighlightColor?:
|
|
47390
|
+
| ValueSVGPaintServer
|
|
47391
|
+
| PropertyBindingInfo
|
|
47392
|
+
| `{${string}}`;
|
|
47309
47393
|
|
|
47310
47394
|
/**
|
|
47311
47395
|
* Enables inversion on shape selection while drawing lasso
|
|
@@ -54555,6 +54639,8 @@ declare module "sap/gantt/simple/StockChartDimension" {
|
|
|
54555
54639
|
*
|
|
54556
54640
|
* Sets the dimension path color
|
|
54557
54641
|
*
|
|
54642
|
+
* Default value is `"sapContent_ForegroundBorderColor"`.
|
|
54643
|
+
*
|
|
54558
54644
|
*
|
|
54559
54645
|
* @returns Value of property `dimensionPathColor`
|
|
54560
54646
|
*/
|
|
@@ -54618,6 +54704,8 @@ declare module "sap/gantt/simple/StockChartDimension" {
|
|
|
54618
54704
|
*
|
|
54619
54705
|
* Sets the remaining capacity color
|
|
54620
54706
|
*
|
|
54707
|
+
* Default value is `"sapChart_Sequence_Neutral_Plus1"`.
|
|
54708
|
+
*
|
|
54621
54709
|
*
|
|
54622
54710
|
* @returns Value of property `remainCapacityColor`
|
|
54623
54711
|
*/
|
|
@@ -54627,6 +54715,8 @@ declare module "sap/gantt/simple/StockChartDimension" {
|
|
|
54627
54715
|
*
|
|
54628
54716
|
* Sets the remaining capacity color for negative values
|
|
54629
54717
|
*
|
|
54718
|
+
* Default value is `"sapChart_Sequence_Bad_Plus1"`.
|
|
54719
|
+
*
|
|
54630
54720
|
*
|
|
54631
54721
|
* @returns Value of property `remainCapacityColorNegative`
|
|
54632
54722
|
*/
|
|
@@ -54699,6 +54789,8 @@ declare module "sap/gantt/simple/StockChartDimension" {
|
|
|
54699
54789
|
*
|
|
54700
54790
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
54701
54791
|
*
|
|
54792
|
+
* Default value is `"sapContent_ForegroundBorderColor"`.
|
|
54793
|
+
*
|
|
54702
54794
|
*
|
|
54703
54795
|
* @returns Reference to `this` in order to allow method chaining
|
|
54704
54796
|
*/
|
|
@@ -54706,7 +54798,7 @@ declare module "sap/gantt/simple/StockChartDimension" {
|
|
|
54706
54798
|
/**
|
|
54707
54799
|
* New value for property `dimensionPathColor`
|
|
54708
54800
|
*/
|
|
54709
|
-
sDimensionPathColor
|
|
54801
|
+
sDimensionPathColor?: ValueSVGPaintServer
|
|
54710
54802
|
): this;
|
|
54711
54803
|
/**
|
|
54712
54804
|
* Sets a new value for property {@link #getDimensionStrokeDasharray dimensionStrokeDasharray}.
|
|
@@ -54804,6 +54896,8 @@ declare module "sap/gantt/simple/StockChartDimension" {
|
|
|
54804
54896
|
*
|
|
54805
54897
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
54806
54898
|
*
|
|
54899
|
+
* Default value is `"sapChart_Sequence_Neutral_Plus1"`.
|
|
54900
|
+
*
|
|
54807
54901
|
*
|
|
54808
54902
|
* @returns Reference to `this` in order to allow method chaining
|
|
54809
54903
|
*/
|
|
@@ -54811,7 +54905,7 @@ declare module "sap/gantt/simple/StockChartDimension" {
|
|
|
54811
54905
|
/**
|
|
54812
54906
|
* New value for property `remainCapacityColor`
|
|
54813
54907
|
*/
|
|
54814
|
-
sRemainCapacityColor
|
|
54908
|
+
sRemainCapacityColor?: ValueSVGPaintServer
|
|
54815
54909
|
): this;
|
|
54816
54910
|
/**
|
|
54817
54911
|
* Sets a new value for property {@link #getRemainCapacityColorNegative remainCapacityColorNegative}.
|
|
@@ -54820,6 +54914,8 @@ declare module "sap/gantt/simple/StockChartDimension" {
|
|
|
54820
54914
|
*
|
|
54821
54915
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
54822
54916
|
*
|
|
54917
|
+
* Default value is `"sapChart_Sequence_Bad_Plus1"`.
|
|
54918
|
+
*
|
|
54823
54919
|
*
|
|
54824
54920
|
* @returns Reference to `this` in order to allow method chaining
|
|
54825
54921
|
*/
|
|
@@ -54827,7 +54923,7 @@ declare module "sap/gantt/simple/StockChartDimension" {
|
|
|
54827
54923
|
/**
|
|
54828
54924
|
* New value for property `remainCapacityColorNegative`
|
|
54829
54925
|
*/
|
|
54830
|
-
sRemainCapacityColorNegative
|
|
54926
|
+
sRemainCapacityColorNegative?: ValueSVGPaintServer
|
|
54831
54927
|
): this;
|
|
54832
54928
|
}
|
|
54833
54929
|
/**
|
|
@@ -55088,10 +55184,10 @@ declare module "sap/gantt/simple/UtilizationBarChart" {
|
|
|
55088
55184
|
|
|
55089
55185
|
import UtilizationPeriod from "sap/gantt/simple/UtilizationPeriod";
|
|
55090
55186
|
|
|
55091
|
-
import { ValueSVGPaintServer } from "sap/gantt/library";
|
|
55092
|
-
|
|
55093
55187
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
55094
55188
|
|
|
55189
|
+
import { ValueSVGPaintServer } from "sap/gantt/library";
|
|
55190
|
+
|
|
55095
55191
|
import {
|
|
55096
55192
|
PropertyBindingInfo,
|
|
55097
55193
|
AggregationBindingInfo,
|
|
@@ -55184,17 +55280,6 @@ declare module "sap/gantt/simple/UtilizationBarChart" {
|
|
|
55184
55280
|
* @returns Reference to `this` in order to allow method chaining
|
|
55185
55281
|
*/
|
|
55186
55282
|
destroyPeriods(): this;
|
|
55187
|
-
/**
|
|
55188
|
-
* Gets current value of property {@link #getConsumptionColor consumptionColor}.
|
|
55189
|
-
*
|
|
55190
|
-
* The color fills in capacity consumption
|
|
55191
|
-
*
|
|
55192
|
-
* Default value is `"lightgray"`.
|
|
55193
|
-
*
|
|
55194
|
-
*
|
|
55195
|
-
* @returns Value of property `consumptionColor`
|
|
55196
|
-
*/
|
|
55197
|
-
getConsumptionColor(): ValueSVGPaintServer;
|
|
55198
55283
|
/**
|
|
55199
55284
|
* Gets content of aggregation {@link #getPeriods periods}.
|
|
55200
55285
|
*
|
|
@@ -55275,7 +55360,7 @@ declare module "sap/gantt/simple/UtilizationBarChart" {
|
|
|
55275
55360
|
*
|
|
55276
55361
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
55277
55362
|
*
|
|
55278
|
-
* Default value is `"
|
|
55363
|
+
* Default value is `"sapContent_ForegroundColor"`.
|
|
55279
55364
|
*
|
|
55280
55365
|
*
|
|
55281
55366
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -55401,17 +55486,6 @@ declare module "sap/gantt/simple/UtilizationChart" {
|
|
|
55401
55486
|
* @returns Value of property `height`
|
|
55402
55487
|
*/
|
|
55403
55488
|
getHeight(): SVGLength;
|
|
55404
|
-
/**
|
|
55405
|
-
* Gets current value of property {@link #getOverConsumptionColor overConsumptionColor}.
|
|
55406
|
-
*
|
|
55407
|
-
* Defines the over comsumption color, or fill pattern.
|
|
55408
|
-
*
|
|
55409
|
-
* Default value is `"red"`.
|
|
55410
|
-
*
|
|
55411
|
-
*
|
|
55412
|
-
* @returns Value of property `overConsumptionColor`
|
|
55413
|
-
*/
|
|
55414
|
-
getOverConsumptionColor(): ValueSVGPaintServer;
|
|
55415
55489
|
/**
|
|
55416
55490
|
* Gets current value of property {@link #getOverConsumptionMargin overConsumptionMargin}.
|
|
55417
55491
|
*
|
|
@@ -55423,17 +55497,6 @@ declare module "sap/gantt/simple/UtilizationChart" {
|
|
|
55423
55497
|
* @returns Value of property `overConsumptionMargin`
|
|
55424
55498
|
*/
|
|
55425
55499
|
getOverConsumptionMargin(): float;
|
|
55426
|
-
/**
|
|
55427
|
-
* Gets current value of property {@link #getRemainCapacityColor remainCapacityColor}.
|
|
55428
|
-
*
|
|
55429
|
-
* Defines the remain capacity color.
|
|
55430
|
-
*
|
|
55431
|
-
* Default value is `"lightgray"`.
|
|
55432
|
-
*
|
|
55433
|
-
*
|
|
55434
|
-
* @returns Value of property `remainCapacityColor`
|
|
55435
|
-
*/
|
|
55436
|
-
getRemainCapacityColor(): ValueSVGPaintServer;
|
|
55437
55500
|
/**
|
|
55438
55501
|
* Calculate the actual width of the shape. The width is calculated based on the time range provided by
|
|
55439
55502
|
* property `time` and `endTime` bindings.
|
|
@@ -55476,7 +55539,7 @@ declare module "sap/gantt/simple/UtilizationChart" {
|
|
|
55476
55539
|
*
|
|
55477
55540
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
55478
55541
|
*
|
|
55479
|
-
* Default value is `"
|
|
55542
|
+
* Default value is `"sapChart_Sequence_Bad_Plus1"`.
|
|
55480
55543
|
*
|
|
55481
55544
|
*
|
|
55482
55545
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -55512,7 +55575,7 @@ declare module "sap/gantt/simple/UtilizationChart" {
|
|
|
55512
55575
|
*
|
|
55513
55576
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
55514
55577
|
*
|
|
55515
|
-
* Default value is `"
|
|
55578
|
+
* Default value is `"sapContent_ForegroundColor"`.
|
|
55516
55579
|
*
|
|
55517
55580
|
*
|
|
55518
55581
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -55561,10 +55624,10 @@ declare module "sap/gantt/simple/UtilizationDimension" {
|
|
|
55561
55624
|
|
|
55562
55625
|
import UtilizationPeriod from "sap/gantt/simple/UtilizationPeriod";
|
|
55563
55626
|
|
|
55564
|
-
import { ValueSVGPaintServer } from "sap/gantt/library";
|
|
55565
|
-
|
|
55566
55627
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
55567
55628
|
|
|
55629
|
+
import { ValueSVGPaintServer } from "sap/gantt/library";
|
|
55630
|
+
|
|
55568
55631
|
import {
|
|
55569
55632
|
PropertyBindingInfo,
|
|
55570
55633
|
AggregationBindingInfo,
|
|
@@ -55656,15 +55719,6 @@ declare module "sap/gantt/simple/UtilizationDimension" {
|
|
|
55656
55719
|
* @returns Reference to `this` in order to allow method chaining
|
|
55657
55720
|
*/
|
|
55658
55721
|
destroyPeriods(): this;
|
|
55659
|
-
/**
|
|
55660
|
-
* Gets current value of property {@link #getDimensionColor dimensionColor}.
|
|
55661
|
-
*
|
|
55662
|
-
* Sets the dimension color
|
|
55663
|
-
*
|
|
55664
|
-
*
|
|
55665
|
-
* @returns Value of property `dimensionColor`
|
|
55666
|
-
*/
|
|
55667
|
-
getDimensionColor(): ValueSVGPaintServer;
|
|
55668
55722
|
/**
|
|
55669
55723
|
* Gets current value of property {@link #getName name}.
|
|
55670
55724
|
*
|
|
@@ -55742,6 +55796,8 @@ declare module "sap/gantt/simple/UtilizationDimension" {
|
|
|
55742
55796
|
*
|
|
55743
55797
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
55744
55798
|
*
|
|
55799
|
+
* Default value is `"sapContent_ForegroundBorderColor"`.
|
|
55800
|
+
*
|
|
55745
55801
|
*
|
|
55746
55802
|
* @returns Reference to `this` in order to allow method chaining
|
|
55747
55803
|
*/
|
|
@@ -55749,7 +55805,7 @@ declare module "sap/gantt/simple/UtilizationDimension" {
|
|
|
55749
55805
|
/**
|
|
55750
55806
|
* New value for property `dimensionColor`
|
|
55751
55807
|
*/
|
|
55752
|
-
sDimensionColor
|
|
55808
|
+
sDimensionColor?: ValueSVGPaintServer
|
|
55753
55809
|
): this;
|
|
55754
55810
|
/**
|
|
55755
55811
|
* Sets a new value for property {@link #getName name}.
|