How to group widgets in one line? #552
Replies: 2 comments
-
A colleague pointed out that
I now managed to work around some of the issues by retrieving the dashboard object and adding my widgets there directly. I guess to actually improve the implementation, I need to create a new Monitoring class. The workaround I have now, please ignore if the metrics make sense or not.
|
Beta Was this translation helpful? Give feedback.
-
You should be able to specify a widget type in metricGroups: [
{
title: "Group title",
graphWidgetType: GraphWidgetType.SINGLE_VALUE,
metrics: [
{
metric: new Metric({ ... }),
...
},
],
},
] Otherwise, a |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I am struggling to understand, how to group widgets in a way that they are displayed in one group / same dashboard line.
When trying to use
monitorCustom
it only allows for metrics to be added, which will return aGraph Widget
, but I want to setSingleValueWidgets
etc.Would be great to get some orientation on that one.
Thank you.
What I have so far.
Beta Was this translation helpful? Give feedback.
All reactions