Hi Team,
I added the below css sysntax in the dashboard. The background color is changed as mentioned but each panel still have white background for the charts.
Can anyone help me making all panels transparency, so tat the background color of the dashboard will be visible.
.dashboard-body {
background-image: radial-gradient(#98d6e9,#05173f);
}
Thanks in advance.
Hello,
A quick look via the inspector shows me that dashboard-panel
has a background of #fff
.
Maybe you want to look there?
I added the below lines and fixed the issue
.dashboard-row .dashboard-panel {
background-color: transparent;
}
Yes, that would do it, for the whole row, not just a panel.
Thank you.