HarveyBallMicroChartItem (#1589)
Some checks are pending
build_downport / build_downport (push) Waiting to run
build_frontend_classic / build_frontend_classic (push) Waiting to run
build_frontend_cloud / build_frontend_cloud (push) Waiting to run
js_transform / Code-Cleanup (push) Waiting to run
ui5lint / test (push) Waiting to run

This commit is contained in:
ABAP for years :) 2024-11-28 08:39:46 +01:00 committed by GitHub
parent 7ba360ae9f
commit 16c37ac766
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1882,6 +1882,16 @@ CLASS z2ui5_cl_xml_view DEFINITION
RETURNING
VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
METHODS harveyballmicrochartitem
IMPORTING
id TYPE clike OPTIONAL
color TYPE clike OPTIONAL
fraction TYPE clike OPTIONAL
fractionScale TYPE clike OPTIONAL
class TYPE clike OPTIONAL
RETURNING
VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
METHODS step_input
IMPORTING
id TYPE clike OPTIONAL
@ -10630,4 +10640,13 @@ CLASS z2ui5_cl_xml_view IMPLEMENTATION.
t_prop = VALUE #( ( n = `colorSelect` v = colorselect ) ) ).
ENDMETHOD.
METHOD HarveyBallMicroChartItem.
result = _generic( name = `HarveyBallMicroChartItem`
ns = `mchart`
t_prop = VALUE #( ( n = `id` v = id )
( n = `class` v = class )
( n = `fraction` v = fraction )
( n = `color` v = color )
( n = `fractionScale` v = fractionScale ) ) ).
ENDMETHOD.
ENDCLASS.