Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Also, you can streamline the code by, for example, changing this
chtChart.PlotArea.Select With Selection.Border .ColorIndex = 16 .Weight = xlThin .LineStyle = xlContinuous End With With Selection.Interior .ColorIndex = 2 .PatternColorIndex = 1 .Pattern = xlSolid End With to this With chtChart.PlotArea With .Border .ColorIndex = 16 .Weight = xlThin .LineStyle = xlContinuous End With With .Interior .ColorIndex = 2 .PatternColorIndex = 1 .Pattern = xlSolid End With End With - Jon ------- Jon Peltier, Microsoft Excel MVP Tutorials and Custom Solutions Peltier Technical Services, Inc. - http://PeltierTech.com _______ "Dan" wrote in message ... "ward376" wrote: Dan - did you try turning off screen updating until after the chart's created? application.screenupdating = false 'make chart application.screenupdating = true Cliff Edwards WOW! That is a very good trick! Thanks a lot Ed! |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel chart, changing into sections to color | Charts and Charting in Excel | |||
Cell background color (interior color) setting not working | Excel Programming | |||
Range: changing interior color | Excel Programming | |||
Events... Changing the Interior Color | Excel Programming | |||
Passing Back Color to Interior Color | Excel Programming |