How to have gauges for all these rows and rows can be dyanmic and how to configure it ??
Hi Apurva,
It is not possible to configure a dynamic amount of Gauge components directly from a query result. If all these rows represent parameters and they have parameter metadata, then the selected rows of a table can be linked to a Gauge component. Note that only the selected rows will be shown as Gauges, not all the rows.
Do these have to be Gauge components specifically? It is already possible to create shapes with a dynamic width in templates, which can be displayed for each row of a query result. These could represent a progress bar of some sort.
Update: Config sample
The only thing you need to configure a bar like this is a percentage value that represents the width of the bar. This column (here 'Total Processor Load') can then be used to be linked to the width of the bar.


To point of are these parameter values yes they are but I want something dynamic as for params to show can change based on protocol.

I have added a sample from my config to the answer. This is a dynamic way to display the values as there will always be 1 grid item per row in the query. If the query result updates, the visual will follow.
Hi Apurva,
as you already have the values in a table, you could also use e.g. the table or grid component and some CSS code for a ring or gauge to build your own.
Dynamic Example inside an LCA table column:
Another Example with grid: Dashboard - Using Table Count Data in a Gauge - DataMiner Dojo

Hi Thanks,
It would be really nice if I can get some gif or snippet how to setup that or some live example.

Go to the template editor of grid or table column.
In the editor you need to create a text field.
The value of the field is e.g.:
<div class="yourCSSClassName" minAttribute="{MIN}" maxAttribute="{MAX}>Additional text here if you need it</div>
<style>
.yourCSSClassName {
your CSS code here
}
</style>
Hi Thanks, if possible can you share some sample like how can have layout int his form and how will it pick these values from rows and show