Description
Can class Row accepts list of widgets or maybe implement a method for adding new widgets?
Now we need to explicitly write all widgets when defining a new row as below:
cloudwatch.Row(widget1, widget2, widgetN)
Use Case
To generate widgets in a loop and add them in batch in a programmatic way.
Proposed Solution
Thus there is no option to add a generated list of widgets or add widgets in a loop
cloudwatch.Row(widget_list=[])
cloudwatch.Row().add_widget(widget)
Other information
No response
Acknowledge
Description
Can class Row accepts list of widgets or maybe implement a method for adding new widgets?
Now we need to explicitly write all widgets when defining a new row as below:
cloudwatch.Row(widget1, widget2, widgetN)Use Case
To generate widgets in a loop and add them in batch in a programmatic way.
Proposed Solution
Thus there is no option to add a generated list of widgets or add widgets in a loop
cloudwatch.Row(widget_list=[])cloudwatch.Row().add_widget(widget)Other information
No response
Acknowledge