Change background on excel chart

J

JLGWhiz

From VBA help file:


With Charts("Chart1").ChartArea
.Interior.ColorIndex = 3
.Border.ColorIndex = 5
End With
 
Top