Update z2ui5_cl_xml_view.clas.abap (#982)

Change on Element proportion_zoom_strategy. Added property zoomLevel

Reason: Gantt Chart with Container ToolBar: Toolbar has the feature zoomlevel and can now be forwarded to the axis

Co-authored-by: oblomov <102328295+oblomov-dev@users.noreply.github.com>
This commit is contained in:
Marchl-Woid 2024-03-01 11:26:10 +01:00 committed by GitHub
parent 159637bb35
commit 570aebd687
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2068,6 +2068,8 @@ CLASS z2ui5_cl_xml_view DEFINITION
RETURNING
VALUE(result) TYPE REF TO z2ui5_cl_xml_view .
METHODS proportion_zoom_strategy
importing
!ZOOMLEVEL type CLIKE optional
RETURNING
VALUE(result) TYPE REF TO z2ui5_cl_xml_view .
METHODS total_horizon
@ -6464,7 +6466,9 @@ CLASS z2ui5_cl_xml_view IMPLEMENTATION.
METHOD proportion_zoom_strategy.
result = _generic( name = `ProportionZoomStrategy`
ns = `axistime` ).
ns = `axistime`
t_prop = VALUE #( ( n = `zoomLevel` v = zoomLevel ) )
).
ENDMETHOD.