mirror of
https://github.com/abap2UI5/abap2UI5.git
synced 2025-04-29 15:16:15 +08:00
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
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:
parent
7ba360ae9f
commit
16c37ac766
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue
Block a user