How to have gauges for all these rows and rows can be dyanmic and how to configure it ??
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


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,
It would be really nice if I can get some gif or snippet how to setup that or some live example.