Is there any way to change the chart background color based on a variable's value.
ie.
ie.
Inserted Code
switch(varValue)
{
case 0:/*Change chart background color to light red*/ break;
case 1:/*Change chart background color to light blue*/ break;
case 2:/*Change chart background color to white*/ break;
default:/*Change chart background color to white*/ break;
}