@sapui5/ts-types 1.116.0 → 1.117.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/index.d.ts +1 -0
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +144 -57
- package/types/sap.chart.d.ts +29 -8
- package/types/sap.collaboration.d.ts +5 -2
- package/types/sap.esh.search.ui.d.ts +9 -3
- package/types/sap.f.d.ts +160 -63
- package/types/sap.fe.core.d.ts +21 -35
- package/types/sap.fe.macros.d.ts +148 -16
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.optimisticBatch.d.ts +3 -0
- 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 +344 -1208
- package/types/sap.insights.d.ts +251 -11
- package/types/sap.landvisz.d.ts +64 -25
- package/types/sap.m.d.ts +2259 -806
- package/types/sap.makit.d.ts +22 -7
- package/types/sap.me.d.ts +40 -16
- package/types/sap.ndc.d.ts +20 -15
- package/types/sap.ovp.d.ts +24 -111
- package/types/sap.rules.ui.d.ts +17 -5
- package/types/sap.sac.df.d.ts +87 -1
- package/types/sap.suite.ui.commons.d.ts +531 -182
- package/types/sap.suite.ui.generic.template.d.ts +5 -2
- package/types/sap.suite.ui.microchart.d.ts +85 -34
- package/types/sap.tnt.d.ts +13 -4
- package/types/sap.ui.codeeditor.d.ts +9 -3
- package/types/sap.ui.commons.d.ts +297 -116
- package/types/sap.ui.comp.d.ts +631 -256
- package/types/sap.ui.core.d.ts +976 -286
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +193 -3
- package/types/sap.ui.fl.d.ts +25 -10
- 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 +90 -23
- package/types/sap.ui.layout.d.ts +93 -30
- package/types/sap.ui.mdc.d.ts +6507 -6291
- package/types/sap.ui.richtexteditor.d.ts +17 -5
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +9 -3
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +149 -43
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +265 -103
- package/types/sap.ui.ux3.d.ts +300 -120
- package/types/sap.ui.vbm.d.ts +288 -120
- package/types/sap.ui.vk.d.ts +685 -271
- package/types/sap.ui.vtm.d.ts +177 -72
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +170 -68
- package/types/sap.ui.webc.main.d.ts +495 -198
- package/types/sap.uiext.inbox.d.ts +64 -25
- package/types/sap.ushell.d.ts +658 -47
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +51 -21
- package/types/sap.viz.d.ts +675 -267
- 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 +35 -14
package/types/sap.gantt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -943,14 +943,6 @@ declare namespace sap {
|
|
|
943
943
|
* Aria label of the checkbox
|
|
944
944
|
*/
|
|
945
945
|
displayText?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
946
|
-
|
|
947
|
-
/**
|
|
948
|
-
* private property. Set this to true for all standard settings
|
|
949
|
-
*/
|
|
950
|
-
_isStandard?:
|
|
951
|
-
| boolean
|
|
952
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
953
|
-
| `{${string}}`;
|
|
954
946
|
}
|
|
955
947
|
|
|
956
948
|
interface $ShapeSettings extends sap.ui.core.$ElementSettings {
|
|
@@ -3843,16 +3835,6 @@ declare namespace sap {
|
|
|
3843
3835
|
* @returns Metadata object describing this class
|
|
3844
3836
|
*/
|
|
3845
3837
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3846
|
-
/**
|
|
3847
|
-
* Gets current value of property {@link #get_isStandard _isStandard}.
|
|
3848
|
-
*
|
|
3849
|
-
* private property. Set this to true for all standard settings
|
|
3850
|
-
*
|
|
3851
|
-
* Default value is `false`.
|
|
3852
|
-
*
|
|
3853
|
-
* @returns Value of property `_isStandard`
|
|
3854
|
-
*/
|
|
3855
|
-
get_isStandard(): boolean;
|
|
3856
3838
|
/**
|
|
3857
3839
|
* Gets current value of property {@link #getChecked checked}.
|
|
3858
3840
|
*
|
|
@@ -3879,23 +3861,6 @@ declare namespace sap {
|
|
|
3879
3861
|
* @returns Value of property `key`
|
|
3880
3862
|
*/
|
|
3881
3863
|
getKey(): string;
|
|
3882
|
-
/**
|
|
3883
|
-
* Sets a new value for property {@link #get_isStandard _isStandard}.
|
|
3884
|
-
*
|
|
3885
|
-
* private property. Set this to true for all standard settings
|
|
3886
|
-
*
|
|
3887
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3888
|
-
*
|
|
3889
|
-
* Default value is `false`.
|
|
3890
|
-
*
|
|
3891
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3892
|
-
*/
|
|
3893
|
-
set_isStandard(
|
|
3894
|
-
/**
|
|
3895
|
-
* New value for property `_isStandard`
|
|
3896
|
-
*/
|
|
3897
|
-
b_isStandard?: boolean
|
|
3898
|
-
): this;
|
|
3899
3864
|
/**
|
|
3900
3865
|
* Sets a new value for property {@link #getChecked checked}.
|
|
3901
3866
|
*
|
|
@@ -21082,7 +21047,10 @@ declare namespace sap {
|
|
|
21082
21047
|
Unchecked = "unchecked",
|
|
21083
21048
|
}
|
|
21084
21049
|
|
|
21085
|
-
type ListLegend$CheckBoxChangeEvent = sap.ui.base.Event<
|
|
21050
|
+
type ListLegend$CheckBoxChangeEvent = sap.ui.base.Event<
|
|
21051
|
+
ListLegend$CheckBoxChangeEventParameters,
|
|
21052
|
+
ListLegend
|
|
21053
|
+
>;
|
|
21086
21054
|
}
|
|
21087
21055
|
|
|
21088
21056
|
namespace misc {
|
|
@@ -22464,14 +22432,6 @@ declare namespace sap {
|
|
|
22464
22432
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
22465
22433
|
| `{${string}}`;
|
|
22466
22434
|
|
|
22467
|
-
/**
|
|
22468
|
-
* Standard SVG 'stroke-width' attribute.
|
|
22469
|
-
*/
|
|
22470
|
-
_strokeWidth?:
|
|
22471
|
-
| float
|
|
22472
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
22473
|
-
| `{${string}}`;
|
|
22474
|
-
|
|
22475
22435
|
/**
|
|
22476
22436
|
* Standard SVG 'stroke-dasharray' attribute.
|
|
22477
22437
|
*/
|
|
@@ -22523,22 +22483,6 @@ declare namespace sap {
|
|
|
22523
22483
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
22524
22484
|
| `{${string}}`;
|
|
22525
22485
|
|
|
22526
|
-
/**
|
|
22527
|
-
* Line Selected
|
|
22528
|
-
*/
|
|
22529
|
-
_selected?:
|
|
22530
|
-
| boolean
|
|
22531
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
22532
|
-
| `{${string}}`;
|
|
22533
|
-
|
|
22534
|
-
/**
|
|
22535
|
-
* Level of markers in the header.
|
|
22536
|
-
*/
|
|
22537
|
-
_level?:
|
|
22538
|
-
| int
|
|
22539
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
22540
|
-
| `{${string}}`;
|
|
22541
|
-
|
|
22542
22486
|
/**
|
|
22543
22487
|
* @since 1.88
|
|
22544
22488
|
*
|
|
@@ -22549,21 +22493,6 @@ declare namespace sap {
|
|
|
22549
22493
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
22550
22494
|
| `{${string}}`;
|
|
22551
22495
|
|
|
22552
|
-
/**
|
|
22553
|
-
* Adhoc Line
|
|
22554
|
-
*/
|
|
22555
|
-
_line?: sap.gantt.simple.BaseLine;
|
|
22556
|
-
|
|
22557
|
-
/**
|
|
22558
|
-
* Adhoc Marker
|
|
22559
|
-
*/
|
|
22560
|
-
_marker?: sap.gantt.simple.AdhocDiamond;
|
|
22561
|
-
|
|
22562
|
-
/**
|
|
22563
|
-
* Adhoc Marker
|
|
22564
|
-
*/
|
|
22565
|
-
_headerLine?: sap.gantt.simple.BaseLine;
|
|
22566
|
-
|
|
22567
22496
|
/**
|
|
22568
22497
|
* Fires when the adhoc marker is pressed.
|
|
22569
22498
|
*/
|
|
@@ -23409,26 +23338,6 @@ declare namespace sap {
|
|
|
23409
23338
|
| boolean
|
|
23410
23339
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
23411
23340
|
| `{${string}}`;
|
|
23412
|
-
|
|
23413
|
-
/**
|
|
23414
|
-
* @since 1.96
|
|
23415
|
-
*
|
|
23416
|
-
* property to check if shape is cropped by the visible horizon
|
|
23417
|
-
*/
|
|
23418
|
-
_shapeCropped?:
|
|
23419
|
-
| boolean
|
|
23420
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
23421
|
-
| `{${string}}`;
|
|
23422
|
-
|
|
23423
|
-
/**
|
|
23424
|
-
* @since 1.96
|
|
23425
|
-
*
|
|
23426
|
-
* xBaised value to be added to cropped shape when horizontalTextAligment is set to "Dynamic"
|
|
23427
|
-
*/
|
|
23428
|
-
_xBiassed?:
|
|
23429
|
-
| float
|
|
23430
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
23431
|
-
| `{${string}}`;
|
|
23432
23341
|
}
|
|
23433
23342
|
|
|
23434
23343
|
interface $BaseTriangleSettings
|
|
@@ -23675,19 +23584,6 @@ declare namespace sap {
|
|
|
23675
23584
|
| sap.gantt.simple.ContainerToolbarPlaceholderType
|
|
23676
23585
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
23677
23586
|
| `{${string}}`;
|
|
23678
|
-
|
|
23679
|
-
/**
|
|
23680
|
-
* Shows or hides the represented control.
|
|
23681
|
-
*/
|
|
23682
|
-
_show?:
|
|
23683
|
-
| boolean
|
|
23684
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
23685
|
-
| `{${string}}`;
|
|
23686
|
-
|
|
23687
|
-
/**
|
|
23688
|
-
* Represented control.
|
|
23689
|
-
*/
|
|
23690
|
-
_control?: sap.ui.core.Control;
|
|
23691
23587
|
}
|
|
23692
23588
|
|
|
23693
23589
|
interface $CustomVariantHandlerSettings
|
|
@@ -23701,13 +23597,6 @@ declare namespace sap {
|
|
|
23701
23597
|
| string[]
|
|
23702
23598
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
23703
23599
|
| `{${string}}`;
|
|
23704
|
-
|
|
23705
|
-
/**
|
|
23706
|
-
* @since 1.88
|
|
23707
|
-
*
|
|
23708
|
-
* The event is triggered when custom variant data is set to update gantt chart with table
|
|
23709
|
-
*/
|
|
23710
|
-
setDataComplete?: (oEvent: sap.ui.base.Event) => void;
|
|
23711
23600
|
}
|
|
23712
23601
|
|
|
23713
23602
|
interface $DeltaLineSettings extends sap.ui.core.$ElementSettings {
|
|
@@ -23721,14 +23610,6 @@ declare namespace sap {
|
|
|
23721
23610
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
23722
23611
|
| `{${string}}`;
|
|
23723
23612
|
|
|
23724
|
-
/**
|
|
23725
|
-
* Standard SVG 'stroke-width' attribute.
|
|
23726
|
-
*/
|
|
23727
|
-
_strokeWidth?:
|
|
23728
|
-
| float
|
|
23729
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
23730
|
-
| `{${string}}`;
|
|
23731
|
-
|
|
23732
23613
|
/**
|
|
23733
23614
|
* Standard SVG 'stroke-dasharray' attribute.
|
|
23734
23615
|
*/
|
|
@@ -23807,78 +23688,6 @@ declare namespace sap {
|
|
|
23807
23688
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
23808
23689
|
| `{${string}}`;
|
|
23809
23690
|
|
|
23810
|
-
/**
|
|
23811
|
-
* Background area between Delta Lines
|
|
23812
|
-
*/
|
|
23813
|
-
_enableChartDeltaAreaHighlight?:
|
|
23814
|
-
| boolean
|
|
23815
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
23816
|
-
| `{${string}}`;
|
|
23817
|
-
|
|
23818
|
-
/**
|
|
23819
|
-
* Selection property of the Delta Markers
|
|
23820
|
-
*/
|
|
23821
|
-
_isSelected?:
|
|
23822
|
-
| boolean
|
|
23823
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
23824
|
-
| `{${string}}`;
|
|
23825
|
-
|
|
23826
|
-
/**
|
|
23827
|
-
* Level of markers in the header.
|
|
23828
|
-
*/
|
|
23829
|
-
_level?:
|
|
23830
|
-
| int
|
|
23831
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
23832
|
-
| `{${string}}`;
|
|
23833
|
-
|
|
23834
|
-
/**
|
|
23835
|
-
* Visibility of the Delta Markers
|
|
23836
|
-
*/
|
|
23837
|
-
_visibleMarker?:
|
|
23838
|
-
| boolean
|
|
23839
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
23840
|
-
| `{${string}}`;
|
|
23841
|
-
|
|
23842
|
-
/**
|
|
23843
|
-
* Start line of the Delta Line
|
|
23844
|
-
*/
|
|
23845
|
-
_startLine?: sap.gantt.simple.BaseLine;
|
|
23846
|
-
|
|
23847
|
-
/**
|
|
23848
|
-
* End line of the Delta Line
|
|
23849
|
-
*/
|
|
23850
|
-
_endLine?: sap.gantt.simple.BaseLine;
|
|
23851
|
-
|
|
23852
|
-
/**
|
|
23853
|
-
* Forward Delta Marker
|
|
23854
|
-
*/
|
|
23855
|
-
_forwardMarker?: sap.gantt.simple.BaseTriangle;
|
|
23856
|
-
|
|
23857
|
-
/**
|
|
23858
|
-
* Backward Delta Marker
|
|
23859
|
-
*/
|
|
23860
|
-
_backwardMarker?: sap.gantt.simple.BaseTriangle;
|
|
23861
|
-
|
|
23862
|
-
/**
|
|
23863
|
-
* Header area between the Delta Markers
|
|
23864
|
-
*/
|
|
23865
|
-
_headerDeltaArea?: sap.gantt.simple.BaseDeltaRectangle;
|
|
23866
|
-
|
|
23867
|
-
/**
|
|
23868
|
-
* Header start line
|
|
23869
|
-
*/
|
|
23870
|
-
_headerStartLine?: sap.gantt.simple.BaseLine;
|
|
23871
|
-
|
|
23872
|
-
/**
|
|
23873
|
-
* Header end line
|
|
23874
|
-
*/
|
|
23875
|
-
_headerEndLine?: sap.gantt.simple.BaseLine;
|
|
23876
|
-
|
|
23877
|
-
/**
|
|
23878
|
-
* Chart area between Delta Lines
|
|
23879
|
-
*/
|
|
23880
|
-
_chartDeltaArea?: sap.gantt.simple.BaseDeltaRectangle;
|
|
23881
|
-
|
|
23882
23691
|
press?: (oEvent: sap.ui.base.Event) => void;
|
|
23883
23692
|
|
|
23884
23693
|
mouseEnter?: (oEvent: sap.ui.base.Event) => void;
|
|
@@ -24097,26 +23906,6 @@ declare namespace sap {
|
|
|
24097
23906
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
24098
23907
|
| `{${string}}`;
|
|
24099
23908
|
|
|
24100
|
-
/**
|
|
24101
|
-
* @since 1.91
|
|
24102
|
-
*
|
|
24103
|
-
* Flag to enable and disable RTA mode.
|
|
24104
|
-
*/
|
|
24105
|
-
_enableRTA?:
|
|
24106
|
-
| boolean
|
|
24107
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
24108
|
-
| `{${string}}`;
|
|
24109
|
-
|
|
24110
|
-
/**
|
|
24111
|
-
* @experimental (since 1.100)
|
|
24112
|
-
*
|
|
24113
|
-
* Flag to enable and disable search side panel.
|
|
24114
|
-
*/
|
|
24115
|
-
showSearchSidePanel?:
|
|
24116
|
-
| boolean
|
|
24117
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
24118
|
-
| `{${string}}`;
|
|
24119
|
-
|
|
24120
23909
|
/**
|
|
24121
23910
|
* @experimental (since 1.106)
|
|
24122
23911
|
*
|
|
@@ -24614,16 +24403,6 @@ declare namespace sap {
|
|
|
24614
24403
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
24615
24404
|
| `{${string}}`;
|
|
24616
24405
|
|
|
24617
|
-
/**
|
|
24618
|
-
* @since 1.91
|
|
24619
|
-
*
|
|
24620
|
-
* Flag to enable and disable Runtime Adaptation (RTA) mode.
|
|
24621
|
-
*/
|
|
24622
|
-
_enableRTA?:
|
|
24623
|
-
| boolean
|
|
24624
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
24625
|
-
| `{${string}}`;
|
|
24626
|
-
|
|
24627
24406
|
/**
|
|
24628
24407
|
* @since 1.91
|
|
24629
24408
|
*
|
|
@@ -24766,7 +24545,7 @@ declare namespace sap {
|
|
|
24766
24545
|
| `{${string}}`;
|
|
24767
24546
|
|
|
24768
24547
|
/**
|
|
24769
|
-
* @since 1.109
|
|
24548
|
+
* @experimental (since 1.109)
|
|
24770
24549
|
*
|
|
24771
24550
|
* Set to true if Gantt chart is configured to be lazy loaded horizontally. Application should fetch the
|
|
24772
24551
|
* data only for the visible horizon. Application also should make sure to fetch the relevant data on user
|
|
@@ -24779,6 +24558,8 @@ declare namespace sap {
|
|
|
24779
24558
|
| `{${string}}`;
|
|
24780
24559
|
|
|
24781
24560
|
/**
|
|
24561
|
+
* @experimental (since 1.110)
|
|
24562
|
+
*
|
|
24782
24563
|
* Optimizes the rendering of overlapping shapes
|
|
24783
24564
|
*/
|
|
24784
24565
|
enablePseudoShapes?:
|
|
@@ -24822,8 +24603,7 @@ declare namespace sap {
|
|
|
24822
24603
|
| `{${string}}`;
|
|
24823
24604
|
|
|
24824
24605
|
/**
|
|
24825
|
-
* @since 1.115
|
|
24826
|
-
* @experimental
|
|
24606
|
+
* @experimental (since 1.115)
|
|
24827
24607
|
*
|
|
24828
24608
|
* Flag to check whether the DateFormat should be used for Fiori launchpad timezone support. This flag is
|
|
24829
24609
|
* experimental, and it might be removed in a future release. When the flag is enabled, the start and end
|
|
@@ -24888,11 +24668,6 @@ declare namespace sap {
|
|
|
24888
24668
|
*/
|
|
24889
24669
|
svgDefs?: sap.gantt.def.SvgDefs;
|
|
24890
24670
|
|
|
24891
|
-
/**
|
|
24892
|
-
* SVG reusable element definitions for pseudo shapes.
|
|
24893
|
-
*/
|
|
24894
|
-
_pseudoSvgDefs?: sap.gantt.def.SvgDefs;
|
|
24895
|
-
|
|
24896
24671
|
/**
|
|
24897
24672
|
* Shape schemes of Gantt Chart.
|
|
24898
24673
|
*
|
|
@@ -25388,11 +25163,6 @@ declare namespace sap {
|
|
|
25388
25163
|
| sap.gantt.simple.BaseShape
|
|
25389
25164
|
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
25390
25165
|
| `{${string}}`;
|
|
25391
|
-
|
|
25392
|
-
/**
|
|
25393
|
-
* Pseudo shape template
|
|
25394
|
-
*/
|
|
25395
|
-
pseudoShapeTemplate?: sap.gantt.simple.MultiActivityGroup;
|
|
25396
25166
|
}
|
|
25397
25167
|
|
|
25398
25168
|
interface $RelationshipSettings
|
|
@@ -25518,11 +25288,6 @@ declare namespace sap {
|
|
|
25518
25288
|
| boolean
|
|
25519
25289
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
25520
25290
|
| `{${string}}`;
|
|
25521
|
-
|
|
25522
|
-
/**
|
|
25523
|
-
* _lMarker determines up/down relation of L type .
|
|
25524
|
-
*/
|
|
25525
|
-
_lMarker?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
25526
25291
|
}
|
|
25527
25292
|
|
|
25528
25293
|
interface $ShapeSchemeSettings extends sap.ui.core.$ElementSettings {
|
|
@@ -25923,8 +25688,6 @@ declare namespace sap {
|
|
|
25923
25688
|
selectedItem?: sap.ui.core.Item;
|
|
25924
25689
|
}
|
|
25925
25690
|
|
|
25926
|
-
interface CustomVariantHandler$SetDataCompleteEventParameters {}
|
|
25927
|
-
|
|
25928
25691
|
interface DeltaLine$DeltalineDropEventParameters {
|
|
25929
25692
|
newStartTime?: string;
|
|
25930
25693
|
|
|
@@ -26840,24 +26603,6 @@ declare namespace sap {
|
|
|
26840
26603
|
*/
|
|
26841
26604
|
oListener?: object
|
|
26842
26605
|
): this;
|
|
26843
|
-
/**
|
|
26844
|
-
* Destroys the _headerLine in the aggregation {@link #get_headerLine _headerLine}.
|
|
26845
|
-
*
|
|
26846
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
26847
|
-
*/
|
|
26848
|
-
destroy_headerLine(): this;
|
|
26849
|
-
/**
|
|
26850
|
-
* Destroys the _line in the aggregation {@link #get_line _line}.
|
|
26851
|
-
*
|
|
26852
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
26853
|
-
*/
|
|
26854
|
-
destroy_line(): this;
|
|
26855
|
-
/**
|
|
26856
|
-
* Destroys the _marker in the aggregation {@link #get_marker _marker}.
|
|
26857
|
-
*
|
|
26858
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
26859
|
-
*/
|
|
26860
|
-
destroy_marker(): this;
|
|
26861
26606
|
/**
|
|
26862
26607
|
* @since 1.88
|
|
26863
26608
|
*
|
|
@@ -26984,54 +26729,6 @@ declare namespace sap {
|
|
|
26984
26729
|
*/
|
|
26985
26730
|
mParameters?: object
|
|
26986
26731
|
): this;
|
|
26987
|
-
/**
|
|
26988
|
-
* Gets content of aggregation {@link #get_headerLine _headerLine}.
|
|
26989
|
-
*
|
|
26990
|
-
* Adhoc Marker
|
|
26991
|
-
*/
|
|
26992
|
-
get_headerLine(): sap.gantt.simple.BaseLine;
|
|
26993
|
-
/**
|
|
26994
|
-
* Gets current value of property {@link #get_level _level}.
|
|
26995
|
-
*
|
|
26996
|
-
* Level of markers in the header.
|
|
26997
|
-
*
|
|
26998
|
-
* Default value is `1`.
|
|
26999
|
-
*
|
|
27000
|
-
* @returns Value of property `_level`
|
|
27001
|
-
*/
|
|
27002
|
-
get_level(): int;
|
|
27003
|
-
/**
|
|
27004
|
-
* Gets content of aggregation {@link #get_line _line}.
|
|
27005
|
-
*
|
|
27006
|
-
* Adhoc Line
|
|
27007
|
-
*/
|
|
27008
|
-
get_line(): sap.gantt.simple.BaseLine;
|
|
27009
|
-
/**
|
|
27010
|
-
* Gets content of aggregation {@link #get_marker _marker}.
|
|
27011
|
-
*
|
|
27012
|
-
* Adhoc Marker
|
|
27013
|
-
*/
|
|
27014
|
-
get_marker(): sap.gantt.simple.AdhocDiamond;
|
|
27015
|
-
/**
|
|
27016
|
-
* Gets current value of property {@link #get_selected _selected}.
|
|
27017
|
-
*
|
|
27018
|
-
* Line Selected
|
|
27019
|
-
*
|
|
27020
|
-
* Default value is `false`.
|
|
27021
|
-
*
|
|
27022
|
-
* @returns Value of property `_selected`
|
|
27023
|
-
*/
|
|
27024
|
-
get_selected(): boolean;
|
|
27025
|
-
/**
|
|
27026
|
-
* Gets current value of property {@link #get_strokeWidth _strokeWidth}.
|
|
27027
|
-
*
|
|
27028
|
-
* Standard SVG 'stroke-width' attribute.
|
|
27029
|
-
*
|
|
27030
|
-
* Default value is `1`.
|
|
27031
|
-
*
|
|
27032
|
-
* @returns Value of property `_strokeWidth`
|
|
27033
|
-
*/
|
|
27034
|
-
get_strokeWidth(): float;
|
|
27035
26732
|
/**
|
|
27036
26733
|
* Gets current value of property {@link #getDescription description}.
|
|
27037
26734
|
*
|
|
@@ -27120,90 +26817,6 @@ declare namespace sap {
|
|
|
27120
26817
|
* @returns Value of property `visible`
|
|
27121
26818
|
*/
|
|
27122
26819
|
getVisible(): boolean;
|
|
27123
|
-
/**
|
|
27124
|
-
* Sets the aggregated {@link #get_headerLine _headerLine}.
|
|
27125
|
-
*
|
|
27126
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
27127
|
-
*/
|
|
27128
|
-
set_headerLine(
|
|
27129
|
-
/**
|
|
27130
|
-
* The _headerLine to set
|
|
27131
|
-
*/
|
|
27132
|
-
o_headerLine: sap.gantt.simple.BaseLine
|
|
27133
|
-
): this;
|
|
27134
|
-
/**
|
|
27135
|
-
* Sets a new value for property {@link #get_level _level}.
|
|
27136
|
-
*
|
|
27137
|
-
* Level of markers in the header.
|
|
27138
|
-
*
|
|
27139
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
27140
|
-
*
|
|
27141
|
-
* Default value is `1`.
|
|
27142
|
-
*
|
|
27143
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
27144
|
-
*/
|
|
27145
|
-
set_level(
|
|
27146
|
-
/**
|
|
27147
|
-
* New value for property `_level`
|
|
27148
|
-
*/
|
|
27149
|
-
i_level?: int
|
|
27150
|
-
): this;
|
|
27151
|
-
/**
|
|
27152
|
-
* Sets the aggregated {@link #get_line _line}.
|
|
27153
|
-
*
|
|
27154
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
27155
|
-
*/
|
|
27156
|
-
set_line(
|
|
27157
|
-
/**
|
|
27158
|
-
* The _line to set
|
|
27159
|
-
*/
|
|
27160
|
-
o_line: sap.gantt.simple.BaseLine
|
|
27161
|
-
): this;
|
|
27162
|
-
/**
|
|
27163
|
-
* Sets the aggregated {@link #get_marker _marker}.
|
|
27164
|
-
*
|
|
27165
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
27166
|
-
*/
|
|
27167
|
-
set_marker(
|
|
27168
|
-
/**
|
|
27169
|
-
* The _marker to set
|
|
27170
|
-
*/
|
|
27171
|
-
o_marker: sap.gantt.simple.AdhocDiamond
|
|
27172
|
-
): this;
|
|
27173
|
-
/**
|
|
27174
|
-
* Sets a new value for property {@link #get_selected _selected}.
|
|
27175
|
-
*
|
|
27176
|
-
* Line Selected
|
|
27177
|
-
*
|
|
27178
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
27179
|
-
*
|
|
27180
|
-
* Default value is `false`.
|
|
27181
|
-
*
|
|
27182
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
27183
|
-
*/
|
|
27184
|
-
set_selected(
|
|
27185
|
-
/**
|
|
27186
|
-
* New value for property `_selected`
|
|
27187
|
-
*/
|
|
27188
|
-
b_selected?: boolean
|
|
27189
|
-
): this;
|
|
27190
|
-
/**
|
|
27191
|
-
* Sets a new value for property {@link #get_strokeWidth _strokeWidth}.
|
|
27192
|
-
*
|
|
27193
|
-
* Standard SVG 'stroke-width' attribute.
|
|
27194
|
-
*
|
|
27195
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
27196
|
-
*
|
|
27197
|
-
* Default value is `1`.
|
|
27198
|
-
*
|
|
27199
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
27200
|
-
*/
|
|
27201
|
-
set_strokeWidth(
|
|
27202
|
-
/**
|
|
27203
|
-
* New value for property `_strokeWidth`
|
|
27204
|
-
*/
|
|
27205
|
-
f_strokeWidth?: float
|
|
27206
|
-
): this;
|
|
27207
26820
|
/**
|
|
27208
26821
|
* Sets a new value for property {@link #getDescription description}.
|
|
27209
26822
|
*
|
|
@@ -30882,28 +30495,6 @@ declare namespace sap {
|
|
|
30882
30495
|
* @returns Metadata object describing this class
|
|
30883
30496
|
*/
|
|
30884
30497
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
30885
|
-
/**
|
|
30886
|
-
* @since 1.96
|
|
30887
|
-
*
|
|
30888
|
-
* Gets current value of property {@link #get_shapeCropped _shapeCropped}.
|
|
30889
|
-
*
|
|
30890
|
-
* property to check if shape is cropped by the visible horizon
|
|
30891
|
-
*
|
|
30892
|
-
* Default value is `false`.
|
|
30893
|
-
*
|
|
30894
|
-
* @returns Value of property `_shapeCropped`
|
|
30895
|
-
*/
|
|
30896
|
-
get_shapeCropped(): boolean;
|
|
30897
|
-
/**
|
|
30898
|
-
* @since 1.96
|
|
30899
|
-
*
|
|
30900
|
-
* Gets current value of property {@link #get_xBiassed _xBiassed}.
|
|
30901
|
-
*
|
|
30902
|
-
* xBaised value to be added to cropped shape when horizontalTextAligment is set to "Dynamic"
|
|
30903
|
-
*
|
|
30904
|
-
* @returns Value of property `_xBiassed`
|
|
30905
|
-
*/
|
|
30906
|
-
get_xBiassed(): float;
|
|
30907
30498
|
/**
|
|
30908
30499
|
* Gets current value of property {@link #getFontFamily fontFamily}.
|
|
30909
30500
|
*
|
|
@@ -31016,42 +30607,6 @@ declare namespace sap {
|
|
|
31016
30607
|
*/
|
|
31017
30608
|
oElement: sap.gantt.simple.BaseText
|
|
31018
30609
|
): void;
|
|
31019
|
-
/**
|
|
31020
|
-
* @since 1.96
|
|
31021
|
-
*
|
|
31022
|
-
* Sets a new value for property {@link #get_shapeCropped _shapeCropped}.
|
|
31023
|
-
*
|
|
31024
|
-
* property to check if shape is cropped by the visible horizon
|
|
31025
|
-
*
|
|
31026
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
31027
|
-
*
|
|
31028
|
-
* Default value is `false`.
|
|
31029
|
-
*
|
|
31030
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
31031
|
-
*/
|
|
31032
|
-
set_shapeCropped(
|
|
31033
|
-
/**
|
|
31034
|
-
* New value for property `_shapeCropped`
|
|
31035
|
-
*/
|
|
31036
|
-
b_shapeCropped?: boolean
|
|
31037
|
-
): this;
|
|
31038
|
-
/**
|
|
31039
|
-
* @since 1.96
|
|
31040
|
-
*
|
|
31041
|
-
* Sets a new value for property {@link #get_xBiassed _xBiassed}.
|
|
31042
|
-
*
|
|
31043
|
-
* xBaised value to be added to cropped shape when horizontalTextAligment is set to "Dynamic"
|
|
31044
|
-
*
|
|
31045
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
31046
|
-
*
|
|
31047
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
31048
|
-
*/
|
|
31049
|
-
set_xBiassed(
|
|
31050
|
-
/**
|
|
31051
|
-
* New value for property `_xBiassed`
|
|
31052
|
-
*/
|
|
31053
|
-
f_xBiassed: float
|
|
31054
|
-
): this;
|
|
31055
30610
|
/**
|
|
31056
30611
|
* Sets a new value for property {@link #getFontFamily fontFamily}.
|
|
31057
30612
|
*
|
|
@@ -32841,28 +32396,6 @@ declare namespace sap {
|
|
|
32841
32396
|
* @returns Metadata object describing this class
|
|
32842
32397
|
*/
|
|
32843
32398
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
32844
|
-
/**
|
|
32845
|
-
* Destroys the _control in the aggregation {@link #get_control _control}.
|
|
32846
|
-
*
|
|
32847
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
32848
|
-
*/
|
|
32849
|
-
destroy_control(): this;
|
|
32850
|
-
/**
|
|
32851
|
-
* Gets content of aggregation {@link #get_control _control}.
|
|
32852
|
-
*
|
|
32853
|
-
* Represented control.
|
|
32854
|
-
*/
|
|
32855
|
-
get_control(): sap.ui.core.Control;
|
|
32856
|
-
/**
|
|
32857
|
-
* Gets current value of property {@link #get_show _show}.
|
|
32858
|
-
*
|
|
32859
|
-
* Shows or hides the represented control.
|
|
32860
|
-
*
|
|
32861
|
-
* Default value is `false`.
|
|
32862
|
-
*
|
|
32863
|
-
* @returns Value of property `_show`
|
|
32864
|
-
*/
|
|
32865
|
-
get_show(): boolean;
|
|
32866
32399
|
/**
|
|
32867
32400
|
* Enables the `sap.m.ContainerToolbarPlaceholder` to move inside the {@link sap.m.OverflowToolbar}. Required
|
|
32868
32401
|
* by the {@link sap.m.IOverflowToolbarContent} interface.
|
|
@@ -32878,34 +32411,6 @@ declare namespace sap {
|
|
|
32878
32411
|
* @returns Value of property `type`
|
|
32879
32412
|
*/
|
|
32880
32413
|
getType(): sap.gantt.simple.ContainerToolbarPlaceholderType;
|
|
32881
|
-
/**
|
|
32882
|
-
* Sets the aggregated {@link #get_control _control}.
|
|
32883
|
-
*
|
|
32884
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
32885
|
-
*/
|
|
32886
|
-
set_control(
|
|
32887
|
-
/**
|
|
32888
|
-
* The _control to set
|
|
32889
|
-
*/
|
|
32890
|
-
o_control: sap.ui.core.Control
|
|
32891
|
-
): this;
|
|
32892
|
-
/**
|
|
32893
|
-
* Sets a new value for property {@link #get_show _show}.
|
|
32894
|
-
*
|
|
32895
|
-
* Shows or hides the represented control.
|
|
32896
|
-
*
|
|
32897
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
32898
|
-
*
|
|
32899
|
-
* Default value is `false`.
|
|
32900
|
-
*
|
|
32901
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
32902
|
-
*/
|
|
32903
|
-
set_show(
|
|
32904
|
-
/**
|
|
32905
|
-
* New value for property `_show`
|
|
32906
|
-
*/
|
|
32907
|
-
b_show?: boolean
|
|
32908
|
-
): this;
|
|
32909
32414
|
/**
|
|
32910
32415
|
* Sets a new value for property {@link #getType type}.
|
|
32911
32416
|
*
|
|
@@ -32986,93 +32491,6 @@ declare namespace sap {
|
|
|
32986
32491
|
* @returns Metadata object describing this class
|
|
32987
32492
|
*/
|
|
32988
32493
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
32989
|
-
/**
|
|
32990
|
-
* @since 1.88
|
|
32991
|
-
*
|
|
32992
|
-
* Attaches event handler `fnFunction` to the {@link #event:setDataComplete setDataComplete} event of this
|
|
32993
|
-
* `sap.gantt.simple.CustomVariantHandler`.
|
|
32994
|
-
*
|
|
32995
|
-
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
32996
|
-
* otherwise it will be bound to this `sap.gantt.simple.CustomVariantHandler` itself.
|
|
32997
|
-
*
|
|
32998
|
-
* The event is triggered when custom variant data is set to update gantt chart with table
|
|
32999
|
-
*
|
|
33000
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33001
|
-
*/
|
|
33002
|
-
attachSetDataComplete(
|
|
33003
|
-
/**
|
|
33004
|
-
* An application-specific payload object that will be passed to the event handler along with the event
|
|
33005
|
-
* object when firing the event
|
|
33006
|
-
*/
|
|
33007
|
-
oData: object,
|
|
33008
|
-
/**
|
|
33009
|
-
* The function to be called when the event occurs
|
|
33010
|
-
*/
|
|
33011
|
-
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
33012
|
-
/**
|
|
33013
|
-
* Context object to call the event handler with. Defaults to this `sap.gantt.simple.CustomVariantHandler`
|
|
33014
|
-
* itself
|
|
33015
|
-
*/
|
|
33016
|
-
oListener?: object
|
|
33017
|
-
): this;
|
|
33018
|
-
/**
|
|
33019
|
-
* @since 1.88
|
|
33020
|
-
*
|
|
33021
|
-
* Attaches event handler `fnFunction` to the {@link #event:setDataComplete setDataComplete} event of this
|
|
33022
|
-
* `sap.gantt.simple.CustomVariantHandler`.
|
|
33023
|
-
*
|
|
33024
|
-
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
33025
|
-
* otherwise it will be bound to this `sap.gantt.simple.CustomVariantHandler` itself.
|
|
33026
|
-
*
|
|
33027
|
-
* The event is triggered when custom variant data is set to update gantt chart with table
|
|
33028
|
-
*
|
|
33029
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33030
|
-
*/
|
|
33031
|
-
attachSetDataComplete(
|
|
33032
|
-
/**
|
|
33033
|
-
* The function to be called when the event occurs
|
|
33034
|
-
*/
|
|
33035
|
-
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
33036
|
-
/**
|
|
33037
|
-
* Context object to call the event handler with. Defaults to this `sap.gantt.simple.CustomVariantHandler`
|
|
33038
|
-
* itself
|
|
33039
|
-
*/
|
|
33040
|
-
oListener?: object
|
|
33041
|
-
): this;
|
|
33042
|
-
/**
|
|
33043
|
-
* @since 1.88
|
|
33044
|
-
*
|
|
33045
|
-
* Detaches event handler `fnFunction` from the {@link #event:setDataComplete setDataComplete} event of
|
|
33046
|
-
* this `sap.gantt.simple.CustomVariantHandler`.
|
|
33047
|
-
*
|
|
33048
|
-
* The passed function and listener object must match the ones used for event registration.
|
|
33049
|
-
*
|
|
33050
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33051
|
-
*/
|
|
33052
|
-
detachSetDataComplete(
|
|
33053
|
-
/**
|
|
33054
|
-
* The function to be called, when the event occurs
|
|
33055
|
-
*/
|
|
33056
|
-
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
33057
|
-
/**
|
|
33058
|
-
* Context object on which the given function had to be called
|
|
33059
|
-
*/
|
|
33060
|
-
oListener?: object
|
|
33061
|
-
): this;
|
|
33062
|
-
/**
|
|
33063
|
-
* @since 1.88
|
|
33064
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
33065
|
-
*
|
|
33066
|
-
* Fires event {@link #event:setDataComplete setDataComplete} to attached listeners.
|
|
33067
|
-
*
|
|
33068
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33069
|
-
*/
|
|
33070
|
-
fireSetDataComplete(
|
|
33071
|
-
/**
|
|
33072
|
-
* Parameters to pass along with the event
|
|
33073
|
-
*/
|
|
33074
|
-
mParameters?: object
|
|
33075
|
-
): this;
|
|
33076
32494
|
/**
|
|
33077
32495
|
* Gets current value of property {@link #getData data}.
|
|
33078
32496
|
*
|
|
@@ -33389,54 +32807,6 @@ declare namespace sap {
|
|
|
33389
32807
|
*/
|
|
33390
32808
|
oListener?: object
|
|
33391
32809
|
): this;
|
|
33392
|
-
/**
|
|
33393
|
-
* Destroys the _backwardMarker in the aggregation {@link #get_backwardMarker _backwardMarker}.
|
|
33394
|
-
*
|
|
33395
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33396
|
-
*/
|
|
33397
|
-
destroy_backwardMarker(): this;
|
|
33398
|
-
/**
|
|
33399
|
-
* Destroys the _chartDeltaArea in the aggregation {@link #get_chartDeltaArea _chartDeltaArea}.
|
|
33400
|
-
*
|
|
33401
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33402
|
-
*/
|
|
33403
|
-
destroy_chartDeltaArea(): this;
|
|
33404
|
-
/**
|
|
33405
|
-
* Destroys the _endLine in the aggregation {@link #get_endLine _endLine}.
|
|
33406
|
-
*
|
|
33407
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33408
|
-
*/
|
|
33409
|
-
destroy_endLine(): this;
|
|
33410
|
-
/**
|
|
33411
|
-
* Destroys the _forwardMarker in the aggregation {@link #get_forwardMarker _forwardMarker}.
|
|
33412
|
-
*
|
|
33413
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33414
|
-
*/
|
|
33415
|
-
destroy_forwardMarker(): this;
|
|
33416
|
-
/**
|
|
33417
|
-
* Destroys the _headerDeltaArea in the aggregation {@link #get_headerDeltaArea _headerDeltaArea}.
|
|
33418
|
-
*
|
|
33419
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33420
|
-
*/
|
|
33421
|
-
destroy_headerDeltaArea(): this;
|
|
33422
|
-
/**
|
|
33423
|
-
* Destroys the _headerEndLine in the aggregation {@link #get_headerEndLine _headerEndLine}.
|
|
33424
|
-
*
|
|
33425
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33426
|
-
*/
|
|
33427
|
-
destroy_headerEndLine(): this;
|
|
33428
|
-
/**
|
|
33429
|
-
* Destroys the _headerStartLine in the aggregation {@link #get_headerStartLine _headerStartLine}.
|
|
33430
|
-
*
|
|
33431
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33432
|
-
*/
|
|
33433
|
-
destroy_headerStartLine(): this;
|
|
33434
|
-
/**
|
|
33435
|
-
* Destroys the _startLine in the aggregation {@link #get_startLine _startLine}.
|
|
33436
|
-
*
|
|
33437
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33438
|
-
*/
|
|
33439
|
-
destroy_startLine(): this;
|
|
33440
32810
|
/**
|
|
33441
32811
|
* @since 1.88
|
|
33442
32812
|
*
|
|
@@ -33595,104 +32965,6 @@ declare namespace sap {
|
|
|
33595
32965
|
*/
|
|
33596
32966
|
mParameters?: object
|
|
33597
32967
|
): this;
|
|
33598
|
-
/**
|
|
33599
|
-
* Gets content of aggregation {@link #get_backwardMarker _backwardMarker}.
|
|
33600
|
-
*
|
|
33601
|
-
* Backward Delta Marker
|
|
33602
|
-
*/
|
|
33603
|
-
get_backwardMarker(): sap.gantt.simple.BaseTriangle;
|
|
33604
|
-
/**
|
|
33605
|
-
* Gets content of aggregation {@link #get_chartDeltaArea _chartDeltaArea}.
|
|
33606
|
-
*
|
|
33607
|
-
* Chart area between Delta Lines
|
|
33608
|
-
*/
|
|
33609
|
-
get_chartDeltaArea(): sap.gantt.simple.BaseDeltaRectangle;
|
|
33610
|
-
/**
|
|
33611
|
-
* Gets current value of property {@link #get_enableChartDeltaAreaHighlight _enableChartDeltaAreaHighlight}.
|
|
33612
|
-
*
|
|
33613
|
-
* Background area between Delta Lines
|
|
33614
|
-
*
|
|
33615
|
-
* Default value is `true`.
|
|
33616
|
-
*
|
|
33617
|
-
* @returns Value of property `_enableChartDeltaAreaHighlight`
|
|
33618
|
-
*/
|
|
33619
|
-
get_enableChartDeltaAreaHighlight(): boolean;
|
|
33620
|
-
/**
|
|
33621
|
-
* Gets content of aggregation {@link #get_endLine _endLine}.
|
|
33622
|
-
*
|
|
33623
|
-
* End line of the Delta Line
|
|
33624
|
-
*/
|
|
33625
|
-
get_endLine(): sap.gantt.simple.BaseLine;
|
|
33626
|
-
/**
|
|
33627
|
-
* Gets content of aggregation {@link #get_forwardMarker _forwardMarker}.
|
|
33628
|
-
*
|
|
33629
|
-
* Forward Delta Marker
|
|
33630
|
-
*/
|
|
33631
|
-
get_forwardMarker(): sap.gantt.simple.BaseTriangle;
|
|
33632
|
-
/**
|
|
33633
|
-
* Gets content of aggregation {@link #get_headerDeltaArea _headerDeltaArea}.
|
|
33634
|
-
*
|
|
33635
|
-
* Header area between the Delta Markers
|
|
33636
|
-
*/
|
|
33637
|
-
get_headerDeltaArea(): sap.gantt.simple.BaseDeltaRectangle;
|
|
33638
|
-
/**
|
|
33639
|
-
* Gets content of aggregation {@link #get_headerEndLine _headerEndLine}.
|
|
33640
|
-
*
|
|
33641
|
-
* Header end line
|
|
33642
|
-
*/
|
|
33643
|
-
get_headerEndLine(): sap.gantt.simple.BaseLine;
|
|
33644
|
-
/**
|
|
33645
|
-
* Gets content of aggregation {@link #get_headerStartLine _headerStartLine}.
|
|
33646
|
-
*
|
|
33647
|
-
* Header start line
|
|
33648
|
-
*/
|
|
33649
|
-
get_headerStartLine(): sap.gantt.simple.BaseLine;
|
|
33650
|
-
/**
|
|
33651
|
-
* Gets current value of property {@link #get_isSelected _isSelected}.
|
|
33652
|
-
*
|
|
33653
|
-
* Selection property of the Delta Markers
|
|
33654
|
-
*
|
|
33655
|
-
* Default value is `false`.
|
|
33656
|
-
*
|
|
33657
|
-
* @returns Value of property `_isSelected`
|
|
33658
|
-
*/
|
|
33659
|
-
get_isSelected(): boolean;
|
|
33660
|
-
/**
|
|
33661
|
-
* Gets current value of property {@link #get_level _level}.
|
|
33662
|
-
*
|
|
33663
|
-
* Level of markers in the header.
|
|
33664
|
-
*
|
|
33665
|
-
* Default value is `1`.
|
|
33666
|
-
*
|
|
33667
|
-
* @returns Value of property `_level`
|
|
33668
|
-
*/
|
|
33669
|
-
get_level(): int;
|
|
33670
|
-
/**
|
|
33671
|
-
* Gets content of aggregation {@link #get_startLine _startLine}.
|
|
33672
|
-
*
|
|
33673
|
-
* Start line of the Delta Line
|
|
33674
|
-
*/
|
|
33675
|
-
get_startLine(): sap.gantt.simple.BaseLine;
|
|
33676
|
-
/**
|
|
33677
|
-
* Gets current value of property {@link #get_strokeWidth _strokeWidth}.
|
|
33678
|
-
*
|
|
33679
|
-
* Standard SVG 'stroke-width' attribute.
|
|
33680
|
-
*
|
|
33681
|
-
* Default value is `1`.
|
|
33682
|
-
*
|
|
33683
|
-
* @returns Value of property `_strokeWidth`
|
|
33684
|
-
*/
|
|
33685
|
-
get_strokeWidth(): float;
|
|
33686
|
-
/**
|
|
33687
|
-
* Gets current value of property {@link #get_visibleMarker _visibleMarker}.
|
|
33688
|
-
*
|
|
33689
|
-
* Visibility of the Delta Markers
|
|
33690
|
-
*
|
|
33691
|
-
* Default value is `false`.
|
|
33692
|
-
*
|
|
33693
|
-
* @returns Value of property `_visibleMarker`
|
|
33694
|
-
*/
|
|
33695
|
-
get_visibleMarker(): boolean;
|
|
33696
32968
|
/**
|
|
33697
32969
|
* Gets current value of property {@link #getDescription description}.
|
|
33698
32970
|
*
|
|
@@ -33803,179 +33075,6 @@ declare namespace sap {
|
|
|
33803
33075
|
* @returns Value of property `visibleDeltaStartEndLines`
|
|
33804
33076
|
*/
|
|
33805
33077
|
getVisibleDeltaStartEndLines(): boolean;
|
|
33806
|
-
/**
|
|
33807
|
-
* Sets the aggregated {@link #get_backwardMarker _backwardMarker}.
|
|
33808
|
-
*
|
|
33809
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33810
|
-
*/
|
|
33811
|
-
set_backwardMarker(
|
|
33812
|
-
/**
|
|
33813
|
-
* The _backwardMarker to set
|
|
33814
|
-
*/
|
|
33815
|
-
o_backwardMarker: sap.gantt.simple.BaseTriangle
|
|
33816
|
-
): this;
|
|
33817
|
-
/**
|
|
33818
|
-
* Sets the aggregated {@link #get_chartDeltaArea _chartDeltaArea}.
|
|
33819
|
-
*
|
|
33820
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33821
|
-
*/
|
|
33822
|
-
set_chartDeltaArea(
|
|
33823
|
-
/**
|
|
33824
|
-
* The _chartDeltaArea to set
|
|
33825
|
-
*/
|
|
33826
|
-
o_chartDeltaArea: sap.gantt.simple.BaseDeltaRectangle
|
|
33827
|
-
): this;
|
|
33828
|
-
/**
|
|
33829
|
-
* Sets a new value for property {@link #get_enableChartDeltaAreaHighlight _enableChartDeltaAreaHighlight}.
|
|
33830
|
-
*
|
|
33831
|
-
* Background area between Delta Lines
|
|
33832
|
-
*
|
|
33833
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
33834
|
-
*
|
|
33835
|
-
* Default value is `true`.
|
|
33836
|
-
*
|
|
33837
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33838
|
-
*/
|
|
33839
|
-
set_enableChartDeltaAreaHighlight(
|
|
33840
|
-
/**
|
|
33841
|
-
* New value for property `_enableChartDeltaAreaHighlight`
|
|
33842
|
-
*/
|
|
33843
|
-
b_enableChartDeltaAreaHighlight?: boolean
|
|
33844
|
-
): this;
|
|
33845
|
-
/**
|
|
33846
|
-
* Sets the aggregated {@link #get_endLine _endLine}.
|
|
33847
|
-
*
|
|
33848
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33849
|
-
*/
|
|
33850
|
-
set_endLine(
|
|
33851
|
-
/**
|
|
33852
|
-
* The _endLine to set
|
|
33853
|
-
*/
|
|
33854
|
-
o_endLine: sap.gantt.simple.BaseLine
|
|
33855
|
-
): this;
|
|
33856
|
-
/**
|
|
33857
|
-
* Sets the aggregated {@link #get_forwardMarker _forwardMarker}.
|
|
33858
|
-
*
|
|
33859
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33860
|
-
*/
|
|
33861
|
-
set_forwardMarker(
|
|
33862
|
-
/**
|
|
33863
|
-
* The _forwardMarker to set
|
|
33864
|
-
*/
|
|
33865
|
-
o_forwardMarker: sap.gantt.simple.BaseTriangle
|
|
33866
|
-
): this;
|
|
33867
|
-
/**
|
|
33868
|
-
* Sets the aggregated {@link #get_headerDeltaArea _headerDeltaArea}.
|
|
33869
|
-
*
|
|
33870
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33871
|
-
*/
|
|
33872
|
-
set_headerDeltaArea(
|
|
33873
|
-
/**
|
|
33874
|
-
* The _headerDeltaArea to set
|
|
33875
|
-
*/
|
|
33876
|
-
o_headerDeltaArea: sap.gantt.simple.BaseDeltaRectangle
|
|
33877
|
-
): this;
|
|
33878
|
-
/**
|
|
33879
|
-
* Sets the aggregated {@link #get_headerEndLine _headerEndLine}.
|
|
33880
|
-
*
|
|
33881
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33882
|
-
*/
|
|
33883
|
-
set_headerEndLine(
|
|
33884
|
-
/**
|
|
33885
|
-
* The _headerEndLine to set
|
|
33886
|
-
*/
|
|
33887
|
-
o_headerEndLine: sap.gantt.simple.BaseLine
|
|
33888
|
-
): this;
|
|
33889
|
-
/**
|
|
33890
|
-
* Sets the aggregated {@link #get_headerStartLine _headerStartLine}.
|
|
33891
|
-
*
|
|
33892
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33893
|
-
*/
|
|
33894
|
-
set_headerStartLine(
|
|
33895
|
-
/**
|
|
33896
|
-
* The _headerStartLine to set
|
|
33897
|
-
*/
|
|
33898
|
-
o_headerStartLine: sap.gantt.simple.BaseLine
|
|
33899
|
-
): this;
|
|
33900
|
-
/**
|
|
33901
|
-
* Sets a new value for property {@link #get_isSelected _isSelected}.
|
|
33902
|
-
*
|
|
33903
|
-
* Selection property of the Delta Markers
|
|
33904
|
-
*
|
|
33905
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
33906
|
-
*
|
|
33907
|
-
* Default value is `false`.
|
|
33908
|
-
*
|
|
33909
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33910
|
-
*/
|
|
33911
|
-
set_isSelected(
|
|
33912
|
-
/**
|
|
33913
|
-
* New value for property `_isSelected`
|
|
33914
|
-
*/
|
|
33915
|
-
b_isSelected?: boolean
|
|
33916
|
-
): this;
|
|
33917
|
-
/**
|
|
33918
|
-
* Sets a new value for property {@link #get_level _level}.
|
|
33919
|
-
*
|
|
33920
|
-
* Level of markers in the header.
|
|
33921
|
-
*
|
|
33922
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
33923
|
-
*
|
|
33924
|
-
* Default value is `1`.
|
|
33925
|
-
*
|
|
33926
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33927
|
-
*/
|
|
33928
|
-
set_level(
|
|
33929
|
-
/**
|
|
33930
|
-
* New value for property `_level`
|
|
33931
|
-
*/
|
|
33932
|
-
i_level?: int
|
|
33933
|
-
): this;
|
|
33934
|
-
/**
|
|
33935
|
-
* Sets the aggregated {@link #get_startLine _startLine}.
|
|
33936
|
-
*
|
|
33937
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33938
|
-
*/
|
|
33939
|
-
set_startLine(
|
|
33940
|
-
/**
|
|
33941
|
-
* The _startLine to set
|
|
33942
|
-
*/
|
|
33943
|
-
o_startLine: sap.gantt.simple.BaseLine
|
|
33944
|
-
): this;
|
|
33945
|
-
/**
|
|
33946
|
-
* Sets a new value for property {@link #get_strokeWidth _strokeWidth}.
|
|
33947
|
-
*
|
|
33948
|
-
* Standard SVG 'stroke-width' attribute.
|
|
33949
|
-
*
|
|
33950
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
33951
|
-
*
|
|
33952
|
-
* Default value is `1`.
|
|
33953
|
-
*
|
|
33954
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33955
|
-
*/
|
|
33956
|
-
set_strokeWidth(
|
|
33957
|
-
/**
|
|
33958
|
-
* New value for property `_strokeWidth`
|
|
33959
|
-
*/
|
|
33960
|
-
f_strokeWidth?: float
|
|
33961
|
-
): this;
|
|
33962
|
-
/**
|
|
33963
|
-
* Sets a new value for property {@link #get_visibleMarker _visibleMarker}.
|
|
33964
|
-
*
|
|
33965
|
-
* Visibility of the Delta Markers
|
|
33966
|
-
*
|
|
33967
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
33968
|
-
*
|
|
33969
|
-
* Default value is `false`.
|
|
33970
|
-
*
|
|
33971
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
33972
|
-
*/
|
|
33973
|
-
set_visibleMarker(
|
|
33974
|
-
/**
|
|
33975
|
-
* New value for property `_visibleMarker`
|
|
33976
|
-
*/
|
|
33977
|
-
b_visibleMarker?: boolean
|
|
33978
|
-
): this;
|
|
33979
33078
|
/**
|
|
33980
33079
|
* Sets a new value for property {@link #getDescription description}.
|
|
33981
33080
|
*
|
|
@@ -34930,18 +34029,6 @@ declare namespace sap {
|
|
|
34930
34029
|
*/
|
|
34931
34030
|
mParameters?: object
|
|
34932
34031
|
): this;
|
|
34933
|
-
/**
|
|
34934
|
-
* @since 1.91
|
|
34935
|
-
*
|
|
34936
|
-
* Gets current value of property {@link #get_enableRTA _enableRTA}.
|
|
34937
|
-
*
|
|
34938
|
-
* Flag to enable and disable RTA mode.
|
|
34939
|
-
*
|
|
34940
|
-
* Default value is `false`.
|
|
34941
|
-
*
|
|
34942
|
-
* @returns Value of property `_enableRTA`
|
|
34943
|
-
*/
|
|
34944
|
-
get_enableRTA(): boolean;
|
|
34945
34032
|
/**
|
|
34946
34033
|
* @experimental (since 1.106)
|
|
34947
34034
|
*
|
|
@@ -35148,18 +34235,6 @@ declare namespace sap {
|
|
|
35148
34235
|
* List of search results displayed on the side panel of Find and Select operation
|
|
35149
34236
|
*/
|
|
35150
34237
|
getSearchSidePanelList(): /* was: sap.tnt.NavigationList */ any;
|
|
35151
|
-
/**
|
|
35152
|
-
* @experimental (since 1.100)
|
|
35153
|
-
*
|
|
35154
|
-
* Gets current value of property {@link #getShowSearchSidePanel showSearchSidePanel}.
|
|
35155
|
-
*
|
|
35156
|
-
* Flag to enable and disable search side panel.
|
|
35157
|
-
*
|
|
35158
|
-
* Default value is `false`.
|
|
35159
|
-
*
|
|
35160
|
-
* @returns Value of property `showSearchSidePanel`
|
|
35161
|
-
*/
|
|
35162
|
-
getShowSearchSidePanel(): boolean;
|
|
35163
34238
|
/**
|
|
35164
34239
|
* Gets content of aggregation {@link #getStatusBar statusBar}.
|
|
35165
34240
|
*
|
|
@@ -35284,25 +34359,6 @@ declare namespace sap {
|
|
|
35284
34359
|
*/
|
|
35285
34360
|
vGanttChart: int | string | sap.gantt.simple.GanttChartWithTable
|
|
35286
34361
|
): sap.gantt.simple.GanttChartWithTable | null;
|
|
35287
|
-
/**
|
|
35288
|
-
* @since 1.91
|
|
35289
|
-
*
|
|
35290
|
-
* Sets a new value for property {@link #get_enableRTA _enableRTA}.
|
|
35291
|
-
*
|
|
35292
|
-
* Flag to enable and disable RTA mode.
|
|
35293
|
-
*
|
|
35294
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
35295
|
-
*
|
|
35296
|
-
* Default value is `false`.
|
|
35297
|
-
*
|
|
35298
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
35299
|
-
*/
|
|
35300
|
-
set_enableRTA(
|
|
35301
|
-
/**
|
|
35302
|
-
* New value for property `_enableRTA`
|
|
35303
|
-
*/
|
|
35304
|
-
b_enableRTA?: boolean
|
|
35305
|
-
): this;
|
|
35306
34362
|
/**
|
|
35307
34363
|
* @experimental (since 1.106)
|
|
35308
34364
|
*
|
|
@@ -35618,25 +34674,6 @@ declare namespace sap {
|
|
|
35618
34674
|
*/
|
|
35619
34675
|
oSearchSidePanelList: /* was: sap.tnt.NavigationList */ any
|
|
35620
34676
|
): this;
|
|
35621
|
-
/**
|
|
35622
|
-
* @experimental (since 1.100)
|
|
35623
|
-
*
|
|
35624
|
-
* Sets a new value for property {@link #getShowSearchSidePanel showSearchSidePanel}.
|
|
35625
|
-
*
|
|
35626
|
-
* Flag to enable and disable search side panel.
|
|
35627
|
-
*
|
|
35628
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
35629
|
-
*
|
|
35630
|
-
* Default value is `false`.
|
|
35631
|
-
*
|
|
35632
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
35633
|
-
*/
|
|
35634
|
-
setShowSearchSidePanel(
|
|
35635
|
-
/**
|
|
35636
|
-
* New value for property `showSearchSidePanel`
|
|
35637
|
-
*/
|
|
35638
|
-
bShowSearchSidePanel?: boolean
|
|
35639
|
-
): this;
|
|
35640
34677
|
/**
|
|
35641
34678
|
* Sets the aggregated {@link #getStatusBar statusBar}.
|
|
35642
34679
|
*
|
|
@@ -36710,12 +35747,6 @@ declare namespace sap {
|
|
|
36710
35747
|
*/
|
|
36711
35748
|
aShapeUids: string[]
|
|
36712
35749
|
): this;
|
|
36713
|
-
/**
|
|
36714
|
-
* Destroys the _pseudoSvgDefs in the aggregation {@link #get_pseudoSvgDefs _pseudoSvgDefs}.
|
|
36715
|
-
*
|
|
36716
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
36717
|
-
*/
|
|
36718
|
-
destroy_pseudoSvgDefs(): this;
|
|
36719
35750
|
/**
|
|
36720
35751
|
* @deprecated (since 1.84) - use {@link sap.gantt.simple.AdhocLine} instead.
|
|
36721
35752
|
*
|
|
@@ -37336,24 +36367,6 @@ declare namespace sap {
|
|
|
37336
36367
|
* @returns return true if gantt chart is in fullscreen mode.
|
|
37337
36368
|
*/
|
|
37338
36369
|
fullScreenMode(): boolean;
|
|
37339
|
-
/**
|
|
37340
|
-
* @since 1.91
|
|
37341
|
-
*
|
|
37342
|
-
* Gets current value of property {@link #get_enableRTA _enableRTA}.
|
|
37343
|
-
*
|
|
37344
|
-
* Flag to enable and disable Runtime Adaptation (RTA) mode.
|
|
37345
|
-
*
|
|
37346
|
-
* Default value is `false`.
|
|
37347
|
-
*
|
|
37348
|
-
* @returns Value of property `_enableRTA`
|
|
37349
|
-
*/
|
|
37350
|
-
get_enableRTA(): boolean;
|
|
37351
|
-
/**
|
|
37352
|
-
* Gets content of aggregation {@link #get_pseudoSvgDefs _pseudoSvgDefs}.
|
|
37353
|
-
*
|
|
37354
|
-
* SVG reusable element definitions for pseudo shapes.
|
|
37355
|
-
*/
|
|
37356
|
-
get_pseudoSvgDefs(): sap.gantt.def.SvgDefs;
|
|
37357
36370
|
/**
|
|
37358
36371
|
* Gets current value of property {@link #getAdhocLineLayer adhocLineLayer}.
|
|
37359
36372
|
*
|
|
@@ -37564,8 +36577,7 @@ declare namespace sap {
|
|
|
37564
36577
|
*/
|
|
37565
36578
|
getEnableCursorLine(): boolean;
|
|
37566
36579
|
/**
|
|
37567
|
-
* @since 1.115
|
|
37568
|
-
* @experimental
|
|
36580
|
+
* @experimental (since 1.115)
|
|
37569
36581
|
*
|
|
37570
36582
|
* Gets current value of property {@link #getEnableDateTimezoneFormatter enableDateTimezoneFormatter}.
|
|
37571
36583
|
*
|
|
@@ -37648,6 +36660,8 @@ declare namespace sap {
|
|
|
37648
36660
|
*/
|
|
37649
36661
|
getEnableNowLine(): boolean;
|
|
37650
36662
|
/**
|
|
36663
|
+
* @experimental (since 1.110)
|
|
36664
|
+
*
|
|
37651
36665
|
* Gets current value of property {@link #getEnablePseudoShapes enablePseudoShapes}.
|
|
37652
36666
|
*
|
|
37653
36667
|
* Optimizes the rendering of overlapping shapes
|
|
@@ -37750,7 +36764,7 @@ declare namespace sap {
|
|
|
37750
36764
|
*/
|
|
37751
36765
|
getHighlightedShapeUid(): Object[];
|
|
37752
36766
|
/**
|
|
37753
|
-
* @since 1.109
|
|
36767
|
+
* @experimental (since 1.109)
|
|
37754
36768
|
*
|
|
37755
36769
|
* Gets current value of property {@link #getHorizontalLazyLoadingEnabled horizontalLazyLoadingEnabled}.
|
|
37756
36770
|
*
|
|
@@ -38601,36 +37615,6 @@ declare namespace sap {
|
|
|
38601
37615
|
*/
|
|
38602
37616
|
bExclusive: boolean
|
|
38603
37617
|
): this;
|
|
38604
|
-
/**
|
|
38605
|
-
* @since 1.91
|
|
38606
|
-
*
|
|
38607
|
-
* Sets a new value for property {@link #get_enableRTA _enableRTA}.
|
|
38608
|
-
*
|
|
38609
|
-
* Flag to enable and disable Runtime Adaptation (RTA) mode.
|
|
38610
|
-
*
|
|
38611
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
38612
|
-
*
|
|
38613
|
-
* Default value is `false`.
|
|
38614
|
-
*
|
|
38615
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
38616
|
-
*/
|
|
38617
|
-
set_enableRTA(
|
|
38618
|
-
/**
|
|
38619
|
-
* New value for property `_enableRTA`
|
|
38620
|
-
*/
|
|
38621
|
-
b_enableRTA?: boolean
|
|
38622
|
-
): this;
|
|
38623
|
-
/**
|
|
38624
|
-
* Sets the aggregated {@link #get_pseudoSvgDefs _pseudoSvgDefs}.
|
|
38625
|
-
*
|
|
38626
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
38627
|
-
*/
|
|
38628
|
-
set_pseudoSvgDefs(
|
|
38629
|
-
/**
|
|
38630
|
-
* The _pseudoSvgDefs to set
|
|
38631
|
-
*/
|
|
38632
|
-
o_pseudoSvgDefs: sap.gantt.def.SvgDefs
|
|
38633
|
-
): this;
|
|
38634
37618
|
/**
|
|
38635
37619
|
* Sets a new value for property {@link #getAdhocLineLayer adhocLineLayer}.
|
|
38636
37620
|
*
|
|
@@ -39032,6 +38016,8 @@ declare namespace sap {
|
|
|
39032
38016
|
bEnableNowLine?: boolean
|
|
39033
38017
|
): this;
|
|
39034
38018
|
/**
|
|
38019
|
+
* @experimental (since 1.110)
|
|
38020
|
+
*
|
|
39035
38021
|
* Sets a new value for property {@link #getEnablePseudoShapes enablePseudoShapes}.
|
|
39036
38022
|
*
|
|
39037
38023
|
* Optimizes the rendering of overlapping shapes
|
|
@@ -39184,7 +38170,7 @@ declare namespace sap {
|
|
|
39184
38170
|
sHeight?: sap.ui.core.CSSSize
|
|
39185
38171
|
): this;
|
|
39186
38172
|
/**
|
|
39187
|
-
* @since 1.109
|
|
38173
|
+
* @experimental (since 1.109)
|
|
39188
38174
|
*
|
|
39189
38175
|
* Sets a new value for property {@link #getHorizontalLazyLoadingEnabled horizontalLazyLoadingEnabled}.
|
|
39190
38176
|
*
|
|
@@ -42422,24 +41408,12 @@ declare namespace sap {
|
|
|
42422
41408
|
*/
|
|
42423
41409
|
oTask: sap.gantt.simple.BaseShape
|
|
42424
41410
|
): this;
|
|
42425
|
-
/**
|
|
42426
|
-
* Destroys the pseudoShapeTemplate in the aggregation {@link #getPseudoShapeTemplate pseudoShapeTemplate}.
|
|
42427
|
-
*
|
|
42428
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
42429
|
-
*/
|
|
42430
|
-
destroyPseudoShapeTemplate(): this;
|
|
42431
41411
|
/**
|
|
42432
41412
|
* Destroys all the tasks in the aggregation {@link #getTasks tasks}.
|
|
42433
41413
|
*
|
|
42434
41414
|
* @returns Reference to `this` in order to allow method chaining
|
|
42435
41415
|
*/
|
|
42436
41416
|
destroyTasks(): this;
|
|
42437
|
-
/**
|
|
42438
|
-
* Gets content of aggregation {@link #getPseudoShapeTemplate pseudoShapeTemplate}.
|
|
42439
|
-
*
|
|
42440
|
-
* Pseudo shape template
|
|
42441
|
-
*/
|
|
42442
|
-
getPseudoShapeTemplate(): sap.gantt.simple.MultiActivityGroup;
|
|
42443
41417
|
/**
|
|
42444
41418
|
* Gets content of aggregation {@link #getTasks tasks}.
|
|
42445
41419
|
*
|
|
@@ -42494,17 +41468,6 @@ declare namespace sap {
|
|
|
42494
41468
|
*/
|
|
42495
41469
|
vTask: int | string | sap.gantt.simple.BaseShape
|
|
42496
41470
|
): sap.gantt.simple.BaseShape | null;
|
|
42497
|
-
/**
|
|
42498
|
-
* Sets the aggregated {@link #getPseudoShapeTemplate pseudoShapeTemplate}.
|
|
42499
|
-
*
|
|
42500
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
42501
|
-
*/
|
|
42502
|
-
setPseudoShapeTemplate(
|
|
42503
|
-
/**
|
|
42504
|
-
* The pseudoShapeTemplate to set
|
|
42505
|
-
*/
|
|
42506
|
-
oPseudoShapeTemplate: sap.gantt.simple.MultiActivityGroup
|
|
42507
|
-
): this;
|
|
42508
41471
|
}
|
|
42509
41472
|
/**
|
|
42510
41473
|
* Enables users to visualize the relationship between visiable objects.
|
|
@@ -42557,14 +41520,6 @@ declare namespace sap {
|
|
|
42557
41520
|
* @returns Metadata object describing this class
|
|
42558
41521
|
*/
|
|
42559
41522
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
42560
|
-
/**
|
|
42561
|
-
* Gets current value of property {@link #get_lMarker _lMarker}.
|
|
42562
|
-
*
|
|
42563
|
-
* _lMarker determines up/down relation of L type .
|
|
42564
|
-
*
|
|
42565
|
-
* @returns Value of property `_lMarker`
|
|
42566
|
-
*/
|
|
42567
|
-
get_lMarker(): string;
|
|
42568
41523
|
/**
|
|
42569
41524
|
* Gets current value of property {@link #getEnableCurvedEdge enableCurvedEdge}.
|
|
42570
41525
|
*
|
|
@@ -42709,21 +41664,6 @@ declare namespace sap {
|
|
|
42709
41664
|
* @returns Value of property `type`
|
|
42710
41665
|
*/
|
|
42711
41666
|
getType(): sap.gantt.simple.RelationshipType;
|
|
42712
|
-
/**
|
|
42713
|
-
* Sets a new value for property {@link #get_lMarker _lMarker}.
|
|
42714
|
-
*
|
|
42715
|
-
* _lMarker determines up/down relation of L type .
|
|
42716
|
-
*
|
|
42717
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
42718
|
-
*
|
|
42719
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
42720
|
-
*/
|
|
42721
|
-
set_lMarker(
|
|
42722
|
-
/**
|
|
42723
|
-
* New value for property `_lMarker`
|
|
42724
|
-
*/
|
|
42725
|
-
s_lMarker: string
|
|
42726
|
-
): this;
|
|
42727
41667
|
/**
|
|
42728
41668
|
* Sets a new value for property {@link #getEnableCurvedEdge enableCurvedEdge}.
|
|
42729
41669
|
*
|
|
@@ -45147,97 +44087,230 @@ declare namespace sap {
|
|
|
45147
44087
|
ThresholdwithUOM = "ThresholdwithUOM",
|
|
45148
44088
|
}
|
|
45149
44089
|
|
|
45150
|
-
type AdhocDiamond$MouseEnterEvent = sap.ui.base.Event<
|
|
45151
|
-
|
|
45152
|
-
|
|
45153
|
-
|
|
45154
|
-
|
|
45155
|
-
|
|
45156
|
-
|
|
45157
|
-
|
|
45158
|
-
|
|
45159
|
-
|
|
45160
|
-
type
|
|
45161
|
-
|
|
45162
|
-
|
|
45163
|
-
|
|
45164
|
-
|
|
45165
|
-
|
|
45166
|
-
|
|
45167
|
-
|
|
45168
|
-
|
|
45169
|
-
|
|
45170
|
-
type
|
|
45171
|
-
|
|
45172
|
-
|
|
45173
|
-
|
|
45174
|
-
|
|
45175
|
-
|
|
45176
|
-
|
|
45177
|
-
|
|
45178
|
-
|
|
45179
|
-
|
|
45180
|
-
type
|
|
45181
|
-
|
|
45182
|
-
|
|
45183
|
-
|
|
45184
|
-
|
|
45185
|
-
|
|
45186
|
-
|
|
45187
|
-
|
|
45188
|
-
|
|
45189
|
-
|
|
45190
|
-
type
|
|
45191
|
-
|
|
45192
|
-
|
|
45193
|
-
|
|
45194
|
-
|
|
45195
|
-
|
|
45196
|
-
|
|
45197
|
-
|
|
45198
|
-
|
|
45199
|
-
|
|
45200
|
-
type
|
|
45201
|
-
|
|
45202
|
-
|
|
45203
|
-
|
|
45204
|
-
|
|
45205
|
-
|
|
45206
|
-
|
|
45207
|
-
|
|
45208
|
-
|
|
45209
|
-
|
|
45210
|
-
type
|
|
45211
|
-
|
|
45212
|
-
|
|
45213
|
-
|
|
45214
|
-
|
|
45215
|
-
|
|
45216
|
-
|
|
45217
|
-
|
|
45218
|
-
|
|
45219
|
-
|
|
45220
|
-
type
|
|
45221
|
-
|
|
45222
|
-
|
|
45223
|
-
|
|
45224
|
-
|
|
45225
|
-
|
|
45226
|
-
|
|
45227
|
-
|
|
45228
|
-
|
|
45229
|
-
|
|
45230
|
-
type
|
|
45231
|
-
|
|
45232
|
-
|
|
45233
|
-
|
|
45234
|
-
|
|
45235
|
-
|
|
45236
|
-
|
|
45237
|
-
|
|
45238
|
-
|
|
45239
|
-
|
|
45240
|
-
type
|
|
44090
|
+
type AdhocDiamond$MouseEnterEvent = sap.ui.base.Event<
|
|
44091
|
+
AdhocDiamond$MouseEnterEventParameters,
|
|
44092
|
+
AdhocDiamond
|
|
44093
|
+
>;
|
|
44094
|
+
|
|
44095
|
+
type AdhocDiamond$MouseLeaveEvent = sap.ui.base.Event<
|
|
44096
|
+
AdhocDiamond$MouseLeaveEventParameters,
|
|
44097
|
+
AdhocDiamond
|
|
44098
|
+
>;
|
|
44099
|
+
|
|
44100
|
+
type AdhocDiamond$PressEvent = sap.ui.base.Event<
|
|
44101
|
+
AdhocDiamond$PressEventParameters,
|
|
44102
|
+
AdhocDiamond
|
|
44103
|
+
>;
|
|
44104
|
+
|
|
44105
|
+
type AdhocLine$AdhoclineDropEvent = sap.ui.base.Event<
|
|
44106
|
+
AdhocLine$AdhoclineDropEventParameters,
|
|
44107
|
+
AdhocLine
|
|
44108
|
+
>;
|
|
44109
|
+
|
|
44110
|
+
type AdhocLine$MarkerMouseEnterEvent = sap.ui.base.Event<
|
|
44111
|
+
AdhocLine$MarkerMouseEnterEventParameters,
|
|
44112
|
+
AdhocLine
|
|
44113
|
+
>;
|
|
44114
|
+
|
|
44115
|
+
type AdhocLine$MarkerMouseLeaveEvent = sap.ui.base.Event<
|
|
44116
|
+
AdhocLine$MarkerMouseLeaveEventParameters,
|
|
44117
|
+
AdhocLine
|
|
44118
|
+
>;
|
|
44119
|
+
|
|
44120
|
+
type AdhocLine$MarkerPressEvent = sap.ui.base.Event<
|
|
44121
|
+
AdhocLine$MarkerPressEventParameters,
|
|
44122
|
+
AdhocLine
|
|
44123
|
+
>;
|
|
44124
|
+
|
|
44125
|
+
type BaseDeltaRectangle$MouseEnterEvent = sap.ui.base.Event<
|
|
44126
|
+
BaseDeltaRectangle$MouseEnterEventParameters,
|
|
44127
|
+
BaseDeltaRectangle
|
|
44128
|
+
>;
|
|
44129
|
+
|
|
44130
|
+
type BaseDeltaRectangle$MouseLeaveEvent = sap.ui.base.Event<
|
|
44131
|
+
BaseDeltaRectangle$MouseLeaveEventParameters,
|
|
44132
|
+
BaseDeltaRectangle
|
|
44133
|
+
>;
|
|
44134
|
+
|
|
44135
|
+
type BaseDeltaRectangle$PressEvent = sap.ui.base.Event<
|
|
44136
|
+
BaseDeltaRectangle$PressEventParameters,
|
|
44137
|
+
BaseDeltaRectangle
|
|
44138
|
+
>;
|
|
44139
|
+
|
|
44140
|
+
type BaseTriangle$MouseEnterEvent = sap.ui.base.Event<
|
|
44141
|
+
BaseTriangle$MouseEnterEventParameters,
|
|
44142
|
+
BaseTriangle
|
|
44143
|
+
>;
|
|
44144
|
+
|
|
44145
|
+
type BaseTriangle$MouseLeaveEvent = sap.ui.base.Event<
|
|
44146
|
+
BaseTriangle$MouseLeaveEventParameters,
|
|
44147
|
+
BaseTriangle
|
|
44148
|
+
>;
|
|
44149
|
+
|
|
44150
|
+
type BaseTriangle$PressEvent = sap.ui.base.Event<
|
|
44151
|
+
BaseTriangle$PressEventParameters,
|
|
44152
|
+
BaseTriangle
|
|
44153
|
+
>;
|
|
44154
|
+
|
|
44155
|
+
type ContainerToolbar$BirdEyeButtonPressEvent = sap.ui.base.Event<
|
|
44156
|
+
ContainerToolbar$BirdEyeButtonPressEventParameters,
|
|
44157
|
+
ContainerToolbar
|
|
44158
|
+
>;
|
|
44159
|
+
|
|
44160
|
+
type ContainerToolbar$CloseFindButtonPressEvent = sap.ui.base.Event<
|
|
44161
|
+
ContainerToolbar$CloseFindButtonPressEventParameters,
|
|
44162
|
+
ContainerToolbar
|
|
44163
|
+
>;
|
|
44164
|
+
|
|
44165
|
+
type ContainerToolbar$CloseSidePanelButtonPressEvent = sap.ui.base.Event<
|
|
44166
|
+
ContainerToolbar$CloseSidePanelButtonPressEventParameters,
|
|
44167
|
+
ContainerToolbar
|
|
44168
|
+
>;
|
|
44169
|
+
|
|
44170
|
+
type ContainerToolbar$DisplayTypeChangeEvent = sap.ui.base.Event<
|
|
44171
|
+
ContainerToolbar$DisplayTypeChangeEventParameters,
|
|
44172
|
+
ContainerToolbar
|
|
44173
|
+
>;
|
|
44174
|
+
|
|
44175
|
+
type ContainerToolbar$FindButtonPressEvent = sap.ui.base.Event<
|
|
44176
|
+
ContainerToolbar$FindButtonPressEventParameters,
|
|
44177
|
+
ContainerToolbar
|
|
44178
|
+
>;
|
|
44179
|
+
|
|
44180
|
+
type ContainerToolbar$FindPopupButtonPressEvent = sap.ui.base.Event<
|
|
44181
|
+
ContainerToolbar$FindPopupButtonPressEventParameters,
|
|
44182
|
+
ContainerToolbar
|
|
44183
|
+
>;
|
|
44184
|
+
|
|
44185
|
+
type ContainerToolbar$GanttSidePanelEvent = sap.ui.base.Event<
|
|
44186
|
+
ContainerToolbar$GanttSidePanelEventParameters,
|
|
44187
|
+
ContainerToolbar
|
|
44188
|
+
>;
|
|
44189
|
+
|
|
44190
|
+
type ContainerToolbar$ZoomStopChangeEvent = sap.ui.base.Event<
|
|
44191
|
+
ContainerToolbar$ZoomStopChangeEventParameters,
|
|
44192
|
+
ContainerToolbar
|
|
44193
|
+
>;
|
|
44194
|
+
|
|
44195
|
+
type DeltaLine$DeltalineDropEvent = sap.ui.base.Event<
|
|
44196
|
+
DeltaLine$DeltalineDropEventParameters,
|
|
44197
|
+
DeltaLine
|
|
44198
|
+
>;
|
|
44199
|
+
|
|
44200
|
+
type DeltaLine$DeltalineResizeEvent = sap.ui.base.Event<
|
|
44201
|
+
DeltaLine$DeltalineResizeEventParameters,
|
|
44202
|
+
DeltaLine
|
|
44203
|
+
>;
|
|
44204
|
+
|
|
44205
|
+
type DeltaLine$MouseEnterEvent = sap.ui.base.Event<
|
|
44206
|
+
DeltaLine$MouseEnterEventParameters,
|
|
44207
|
+
DeltaLine
|
|
44208
|
+
>;
|
|
44209
|
+
|
|
44210
|
+
type DeltaLine$MouseLeaveEvent = sap.ui.base.Event<
|
|
44211
|
+
DeltaLine$MouseLeaveEventParameters,
|
|
44212
|
+
DeltaLine
|
|
44213
|
+
>;
|
|
44214
|
+
|
|
44215
|
+
type DeltaLine$PressEvent = sap.ui.base.Event<
|
|
44216
|
+
DeltaLine$PressEventParameters,
|
|
44217
|
+
DeltaLine
|
|
44218
|
+
>;
|
|
44219
|
+
|
|
44220
|
+
type GanttChartContainer$CustomGanttSearchResultEvent = sap.ui.base.Event<
|
|
44221
|
+
GanttChartContainer$CustomGanttSearchResultEventParameters,
|
|
44222
|
+
GanttChartContainer
|
|
44223
|
+
>;
|
|
44224
|
+
|
|
44225
|
+
type GanttChartContainer$CustomSettingChangeEvent = sap.ui.base.Event<
|
|
44226
|
+
GanttChartContainer$CustomSettingChangeEventParameters,
|
|
44227
|
+
GanttChartContainer
|
|
44228
|
+
>;
|
|
44229
|
+
|
|
44230
|
+
type GanttChartContainer$GanttSearchSidePanelListEvent = sap.ui.base.Event<
|
|
44231
|
+
GanttChartContainer$GanttSearchSidePanelListEventParameters,
|
|
44232
|
+
GanttChartContainer
|
|
44233
|
+
>;
|
|
44234
|
+
|
|
44235
|
+
type GanttChartContainer$VariantAppliedEvent = sap.ui.base.Event<
|
|
44236
|
+
GanttChartContainer$VariantAppliedEventParameters,
|
|
44237
|
+
GanttChartContainer
|
|
44238
|
+
>;
|
|
44239
|
+
|
|
44240
|
+
type GanttChartWithTable$DragStartEvent = sap.ui.base.Event<
|
|
44241
|
+
GanttChartWithTable$DragStartEventParameters,
|
|
44242
|
+
GanttChartWithTable
|
|
44243
|
+
>;
|
|
44244
|
+
|
|
44245
|
+
type GanttChartWithTable$RenderingCompleteEvent = sap.ui.base.Event<
|
|
44246
|
+
GanttChartWithTable$RenderingCompleteEventParameters,
|
|
44247
|
+
GanttChartWithTable
|
|
44248
|
+
>;
|
|
44249
|
+
|
|
44250
|
+
type GanttChartWithTable$ShapeConnectEvent = sap.ui.base.Event<
|
|
44251
|
+
GanttChartWithTable$ShapeConnectEventParameters,
|
|
44252
|
+
GanttChartWithTable
|
|
44253
|
+
>;
|
|
44254
|
+
|
|
44255
|
+
type GanttChartWithTable$ShapeConnectorListEvent = sap.ui.base.Event<
|
|
44256
|
+
GanttChartWithTable$ShapeConnectorListEventParameters,
|
|
44257
|
+
GanttChartWithTable
|
|
44258
|
+
>;
|
|
44259
|
+
|
|
44260
|
+
type GanttChartWithTable$ShapeContextMenuEvent = sap.ui.base.Event<
|
|
44261
|
+
GanttChartWithTable$ShapeContextMenuEventParameters,
|
|
44262
|
+
GanttChartWithTable
|
|
44263
|
+
>;
|
|
44264
|
+
|
|
44265
|
+
type GanttChartWithTable$ShapeDoubleClickEvent = sap.ui.base.Event<
|
|
44266
|
+
GanttChartWithTable$ShapeDoubleClickEventParameters,
|
|
44267
|
+
GanttChartWithTable
|
|
44268
|
+
>;
|
|
44269
|
+
|
|
44270
|
+
type GanttChartWithTable$ShapeDropEvent = sap.ui.base.Event<
|
|
44271
|
+
GanttChartWithTable$ShapeDropEventParameters,
|
|
44272
|
+
GanttChartWithTable
|
|
44273
|
+
>;
|
|
44274
|
+
|
|
44275
|
+
type GanttChartWithTable$ShapeHighlightChangeEvent = sap.ui.base.Event<
|
|
44276
|
+
GanttChartWithTable$ShapeHighlightChangeEventParameters,
|
|
44277
|
+
GanttChartWithTable
|
|
44278
|
+
>;
|
|
44279
|
+
|
|
44280
|
+
type GanttChartWithTable$ShapeMouseEnterEvent = sap.ui.base.Event<
|
|
44281
|
+
GanttChartWithTable$ShapeMouseEnterEventParameters,
|
|
44282
|
+
GanttChartWithTable
|
|
44283
|
+
>;
|
|
44284
|
+
|
|
44285
|
+
type GanttChartWithTable$ShapeMouseLeaveEvent = sap.ui.base.Event<
|
|
44286
|
+
GanttChartWithTable$ShapeMouseLeaveEventParameters,
|
|
44287
|
+
GanttChartWithTable
|
|
44288
|
+
>;
|
|
44289
|
+
|
|
44290
|
+
type GanttChartWithTable$ShapePressEvent = sap.ui.base.Event<
|
|
44291
|
+
GanttChartWithTable$ShapePressEventParameters,
|
|
44292
|
+
GanttChartWithTable
|
|
44293
|
+
>;
|
|
44294
|
+
|
|
44295
|
+
type GanttChartWithTable$ShapeResizeEvent = sap.ui.base.Event<
|
|
44296
|
+
GanttChartWithTable$ShapeResizeEventParameters,
|
|
44297
|
+
GanttChartWithTable
|
|
44298
|
+
>;
|
|
44299
|
+
|
|
44300
|
+
type GanttChartWithTable$ShapeSelectionChangeEvent = sap.ui.base.Event<
|
|
44301
|
+
GanttChartWithTable$ShapeSelectionChangeEventParameters,
|
|
44302
|
+
GanttChartWithTable
|
|
44303
|
+
>;
|
|
44304
|
+
|
|
44305
|
+
type GanttChartWithTable$VisibleHorizonUpdateEvent = sap.ui.base.Event<
|
|
44306
|
+
GanttChartWithTable$VisibleHorizonUpdateEventParameters,
|
|
44307
|
+
GanttChartWithTable
|
|
44308
|
+
>;
|
|
44309
|
+
|
|
44310
|
+
type ListLegendItem$InteractiveChangeEvent = sap.ui.base.Event<
|
|
44311
|
+
ListLegendItem$InteractiveChangeEventParameters,
|
|
44312
|
+
ListLegendItem
|
|
44313
|
+
>;
|
|
45241
44314
|
}
|
|
45242
44315
|
|
|
45243
44316
|
interface $AdhocLineSettings extends sap.ui.core.$ElementSettings {
|
|
@@ -51597,47 +50670,110 @@ declare namespace sap {
|
|
|
51597
50670
|
*/
|
|
51598
50671
|
type ValueSVGPaintServer = string;
|
|
51599
50672
|
|
|
51600
|
-
type GanttChartBase$ChartClickEvent = sap.ui.base.Event<
|
|
51601
|
-
|
|
51602
|
-
|
|
51603
|
-
|
|
51604
|
-
|
|
51605
|
-
|
|
51606
|
-
|
|
51607
|
-
|
|
51608
|
-
|
|
51609
|
-
|
|
51610
|
-
type GanttChartBase$
|
|
51611
|
-
|
|
51612
|
-
|
|
51613
|
-
|
|
51614
|
-
|
|
51615
|
-
|
|
51616
|
-
|
|
51617
|
-
|
|
51618
|
-
|
|
51619
|
-
|
|
51620
|
-
type GanttChartBase$
|
|
51621
|
-
|
|
51622
|
-
|
|
51623
|
-
|
|
51624
|
-
|
|
51625
|
-
|
|
51626
|
-
|
|
51627
|
-
|
|
51628
|
-
|
|
51629
|
-
|
|
51630
|
-
type GanttChartBase$
|
|
51631
|
-
|
|
51632
|
-
|
|
51633
|
-
|
|
51634
|
-
|
|
51635
|
-
|
|
51636
|
-
|
|
51637
|
-
|
|
51638
|
-
|
|
51639
|
-
|
|
51640
|
-
type
|
|
50673
|
+
type GanttChartBase$ChartClickEvent = sap.ui.base.Event<
|
|
50674
|
+
GanttChartBase$ChartClickEventParameters,
|
|
50675
|
+
GanttChartBase
|
|
50676
|
+
>;
|
|
50677
|
+
|
|
50678
|
+
type GanttChartBase$ChartDoubleClickEvent = sap.ui.base.Event<
|
|
50679
|
+
GanttChartBase$ChartDoubleClickEventParameters,
|
|
50680
|
+
GanttChartBase
|
|
50681
|
+
>;
|
|
50682
|
+
|
|
50683
|
+
type GanttChartBase$ChartDragEnterEvent = sap.ui.base.Event<
|
|
50684
|
+
GanttChartBase$ChartDragEnterEventParameters,
|
|
50685
|
+
GanttChartBase
|
|
50686
|
+
>;
|
|
50687
|
+
|
|
50688
|
+
type GanttChartBase$ChartDragLeaveEvent = sap.ui.base.Event<
|
|
50689
|
+
GanttChartBase$ChartDragLeaveEventParameters,
|
|
50690
|
+
GanttChartBase
|
|
50691
|
+
>;
|
|
50692
|
+
|
|
50693
|
+
type GanttChartBase$ChartMouseOverEvent = sap.ui.base.Event<
|
|
50694
|
+
GanttChartBase$ChartMouseOverEventParameters,
|
|
50695
|
+
GanttChartBase
|
|
50696
|
+
>;
|
|
50697
|
+
|
|
50698
|
+
type GanttChartBase$ChartRightClickEvent = sap.ui.base.Event<
|
|
50699
|
+
GanttChartBase$ChartRightClickEventParameters,
|
|
50700
|
+
GanttChartBase
|
|
50701
|
+
>;
|
|
50702
|
+
|
|
50703
|
+
type GanttChartBase$GanttChartSwitchRequestedEvent = sap.ui.base.Event<
|
|
50704
|
+
GanttChartBase$GanttChartSwitchRequestedEventParameters,
|
|
50705
|
+
GanttChartBase
|
|
50706
|
+
>;
|
|
50707
|
+
|
|
50708
|
+
type GanttChartBase$HorizontalScrollEvent = sap.ui.base.Event<
|
|
50709
|
+
GanttChartBase$HorizontalScrollEventParameters,
|
|
50710
|
+
GanttChartBase
|
|
50711
|
+
>;
|
|
50712
|
+
|
|
50713
|
+
type GanttChartBase$RelationshipSelectionChangeEvent = sap.ui.base.Event<
|
|
50714
|
+
GanttChartBase$RelationshipSelectionChangeEventParameters,
|
|
50715
|
+
GanttChartBase
|
|
50716
|
+
>;
|
|
50717
|
+
|
|
50718
|
+
type GanttChartBase$RowSelectionChangeEvent = sap.ui.base.Event<
|
|
50719
|
+
GanttChartBase$RowSelectionChangeEventParameters,
|
|
50720
|
+
GanttChartBase
|
|
50721
|
+
>;
|
|
50722
|
+
|
|
50723
|
+
type GanttChartBase$ShapeDragEndEvent = sap.ui.base.Event<
|
|
50724
|
+
GanttChartBase$ShapeDragEndEventParameters,
|
|
50725
|
+
GanttChartBase
|
|
50726
|
+
>;
|
|
50727
|
+
|
|
50728
|
+
type GanttChartBase$ShapeMouseEnterEvent = sap.ui.base.Event<
|
|
50729
|
+
GanttChartBase$ShapeMouseEnterEventParameters,
|
|
50730
|
+
GanttChartBase
|
|
50731
|
+
>;
|
|
50732
|
+
|
|
50733
|
+
type GanttChartBase$ShapeMouseLeaveEvent = sap.ui.base.Event<
|
|
50734
|
+
GanttChartBase$ShapeMouseLeaveEventParameters,
|
|
50735
|
+
GanttChartBase
|
|
50736
|
+
>;
|
|
50737
|
+
|
|
50738
|
+
type GanttChartBase$ShapeResizeEndEvent = sap.ui.base.Event<
|
|
50739
|
+
GanttChartBase$ShapeResizeEndEventParameters,
|
|
50740
|
+
GanttChartBase
|
|
50741
|
+
>;
|
|
50742
|
+
|
|
50743
|
+
type GanttChartBase$ShapeSelectionChangeEvent = sap.ui.base.Event<
|
|
50744
|
+
GanttChartBase$ShapeSelectionChangeEventParameters,
|
|
50745
|
+
GanttChartBase
|
|
50746
|
+
>;
|
|
50747
|
+
|
|
50748
|
+
type GanttChartBase$SplitterResizeEvent = sap.ui.base.Event<
|
|
50749
|
+
GanttChartBase$SplitterResizeEventParameters,
|
|
50750
|
+
GanttChartBase
|
|
50751
|
+
>;
|
|
50752
|
+
|
|
50753
|
+
type GanttChartBase$TreeTableToggleEventEvent = sap.ui.base.Event<
|
|
50754
|
+
GanttChartBase$TreeTableToggleEventEventParameters,
|
|
50755
|
+
GanttChartBase
|
|
50756
|
+
>;
|
|
50757
|
+
|
|
50758
|
+
type GanttChartBase$VerticalScrollEvent = sap.ui.base.Event<
|
|
50759
|
+
GanttChartBase$VerticalScrollEventParameters,
|
|
50760
|
+
GanttChartBase
|
|
50761
|
+
>;
|
|
50762
|
+
|
|
50763
|
+
type GanttChartContainer$CustomSettingChangeEvent = sap.ui.base.Event<
|
|
50764
|
+
GanttChartContainer$CustomSettingChangeEventParameters,
|
|
50765
|
+
GanttChartContainer
|
|
50766
|
+
>;
|
|
50767
|
+
|
|
50768
|
+
type GanttChartContainer$GanttChartChangeRequestedEvent = sap.ui.base.Event<
|
|
50769
|
+
GanttChartContainer$GanttChartChangeRequestedEventParameters,
|
|
50770
|
+
GanttChartContainer
|
|
50771
|
+
>;
|
|
50772
|
+
|
|
50773
|
+
type GanttChartContainer$TreeTableToggleEventEvent = sap.ui.base.Event<
|
|
50774
|
+
GanttChartContainer$TreeTableToggleEventEventParameters,
|
|
50775
|
+
GanttChartContainer
|
|
50776
|
+
>;
|
|
51641
50777
|
}
|
|
51642
50778
|
|
|
51643
50779
|
interface IUI5DefineDependencyNames {
|