First, if I'm not mistaken, there's no way to change the background color of a chart without using a css style sheet.
- I've created a style sheet in the repository folder and added it to the Custom CSS property at the root of my project.
- Within the file, I've included the following:
.charts
{
background: RGB(245,247,249);
}
- And, for the chart to which I want to apply this change, I've added the name "charts" to the css class property.
Shouldn't these changes apply the background color I've specified to the chart?