Activity Feed
- Posted Re: How to change the width of panels in xml? on Dashboards & Visualizations. 11-08-2018 04:51 PM
- Posted Re: How to change the width of panels in xml? on Dashboards & Visualizations. 11-08-2018 04:47 PM
Topics I've Started
No posts to display.
05-04-2020
08:42 AM
The solution I found was to make the CSS panel 0% by adding an id on the CSS panel and another entry in the CSS code
<panel depends="$alwaysHideCSS$" id="CSSPanel">
<html>
<style>
#CSSPanel{
width:0% !important;
}
#errorSinglePanel{
width:25% !important;
}
#errorStatsPanel{
width:30% !important;
}
#errorLineChartPanel{
width:45% !important;
}
</style>
</html>
</panel>
... View more