Interior Object
Represents the interior of the specified object.
Using the Interior Object
Use the Interior property to return the Interior object. The following example sets the chart area color to gray and the plot area color to green.
With myChart
.PlotArea.Interior.Color = RGB(0, 100, 150)
.ChartArea.Interior.Color = RGB(50, 10, 50)
End With