Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
sThis snipet of code fails in the with black while trying to set .width = 200
sub a() Set co = ActiveSheet.ChartObjects.Add(cw * 3, rh * 0.5, cw * 8, rh * 20) ' Name it co.Name = "ChartExample" With co.Chart.ChartArea .Width = 200 End With end sub |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I couldn't get it to work either. It gives me an error for both width and
height as unable to set for ChartArea class. It did work for setting the pattern for the chart area, so I'm thinking that this is a Microsoft SNAFU. "TONY" wrote: sThis snipet of code fails in the with black while trying to set .width = 200 sub a() Set co = ActiveSheet.ChartObjects.Add(cw * 3, rh * 0.5, cw * 8, rh * 20) ' Name it co.Name = "ChartExample" With co.Chart.ChartArea .Width = 200 End With end sub |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
The chartarea's width & height properties are read only, determined by the
chartobject's size, just a couple of pixels or so inside allowing for the border. So to change the chartarea's size re-size the chartobject. You can re-size the PlotArea though the chart would need at least one series. In passing, in a chart-sheet the chartarea's size is determined by the sheet's PageSetup settings. Regards, Peter T "TONY" wrote in message ... sThis snipet of code fails in the with black while trying to set .width = 200 sub a() Set co = ActiveSheet.ChartObjects.Add(cw * 3, rh * 0.5, cw * 8, rh * 20) ' Name it co.Name = "ChartExample" With co.Chart.ChartArea .Width = 200 End With end sub |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
setting chart length & width in centimeters | Charts and Charting in Excel | |||
error when setting XValues for chart | Excel Programming | |||
Error when setting chart Axis value | Excel Programming | |||
setting the radius / area of a pie chart? | Charts and Charting in Excel | |||
Setting custom chart causes plot area to collapse | Charts and Charting in Excel |