Logic Machine Forum
trend display with lots of elemnts - Printable Version

+- Logic Machine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: Visualization (https://forum.logicmachine.net/forumdisplay.php?fid=9)
+--- Thread: trend display with lots of elemnts (/showthread.php?tid=3907)



trend display with lots of elemnts - domotiqa - 28.02.2022

Hi,
I try to display some specific trend with:
/scada-vis/trends?id=88,89,90,91,92,93,94,95,97,99,100,101,102,103,109,110,111,128,129,130,131,132,133,134,135,138,146,147,152,154,155,156,157,158,159,167,169,170,171,172,173,175,176,177,178,182,192&mode=week&multiple=1

But there is no bar to show the other trend. The list stop at the bottom of the screen:
   

Is there a workaround ?


RE: trend display with lots of elemnts - admin - 28.02.2022

Do you mean that there's no scroll bar for the legend box on the left?


RE: trend display with lots of elemnts - domotiqa - 28.02.2022

(28.02.2022, 11:03)admin Wrote: Do you mean that there's no scroll bar for the legend box on the left?

yes, it only show the first on the legend.


RE: trend display with lots of elemnts - admin - 28.02.2022

Try adding this to Custom CSS:
Code:
.flotr-legend {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 80%;
}
.flotr-legend-label {
  white-space: nowrap;
}



RE: trend display with lots of elemnts - domotiqa - 28.02.2022

(28.02.2022, 11:24)admin Wrote: Try adding this to Custom CSS:
Code:
.flotr-legend {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 80%;
}
.flotr-legend-label {
  white-space: nowrap;
}

Heart  perfect, thank