Background Tip
If you’re designing a dashboard using a dark background, you might have noticed that while it’s possible to change the background of the dashboard itself, it’s still always hosted on a white surface area. There are currently no properties in Dundas BI to allow you to change the color of the surface area, but it is possible to change with a simple script.
With a dark background, you might want to have a background color the same or matching your dashboard background for consistency rather than a contrasting white color.
BEFORE
[
AFTER
[
Just add a CSS override like this to your Ready event and reload the page.
$( “#dashboardSurface” ).css( “background-color”, “#0C1E3D” );
Note: You must reload the page as code in the Ready event will not be executed by simply switching to View mode