A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Charts and Charting
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Ho do I resize multiple charts?



 
 
Thread Tools Display Modes
  #11  
Old February 4th, 2009, 06:14 PM posted to microsoft.public.excel.charting
Jon Peltier
external usenet poster
 
Posts: 5,018
Default Ho do I resize multiple charts?

Is there an empty white area around the chart area of each chart, or is it
only gray? That is, does the chart area resize on its own, or is the actual
usable page size (page size minus margins) changing?

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services, Inc.
http://PeltierTech.com/WordPress/
_______


"chairboy" wrote in message
...
Thanks John,

I went back and reread your earlier mail, and investigated the glossary,
and
my problem isn't just in the plot area, it's in the entire chart area. I
originally made my chart and it bcame part of the worksheet it
represented. I
then moved the chart to its own worksheet. The new worksheet had a blue
field
for the background, and a window, and the whole chart area fit perfectly
in
the window. When I clicked on a corner of the chart, and got Chart Tools,
and
selected the Format Tab, the size was 6.87" h x 9.48" w. That was back in
the
good old days.

One day I opened my spreadsheet and the chart size was 9.21" h x 12.68" w.
The window on the worksheet is still the same size, so a lot of the chart
is
no longer visible, and you can't see the legend either.

It would be one thing if I just needed to resize this one chart, but my
spreadsheet has 52 of these charts, and 52 of another chart, and all were
resized.

But we're talking chart area, not plot area, so when I say the
instructions
didn't work, I didn't realize the difference, and I hadn't selected just
the
plot area.

I could send you screenshots if that would help.

Thanks,
Bob Venezia

"Jon Peltier" wrote:

"couldn't get it to work" is a big topic. If you indicate what the error
was, or what happened or didn't happen, it would be easier to figure out
what went wrong.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services, Inc.
http://PeltierTech.com/WordPress/




  #12  
Old February 4th, 2009, 07:09 PM posted to microsoft.public.excel.charting
chairboy
external usenet poster
 
Posts: 8
Default Ho do I resize multiple charts?

I've sent you an email with screenshots showing what my charts look like,
before they're fixed, and after.

Bob

"Jon Peltier" wrote:

Is there an empty white area around the chart area of each chart, or is it
only gray? That is, does the chart area resize on its own, or is the actual
usable page size (page size minus margins) changing?

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services, Inc.
http://PeltierTech.com/WordPress/
_______


"chairboy" wrote in message
...
Thanks John,

I went back and reread your earlier mail, and investigated the glossary,
and
my problem isn't just in the plot area, it's in the entire chart area. I
originally made my chart and it bcame part of the worksheet it
represented. I
then moved the chart to its own worksheet. The new worksheet had a blue
field
for the background, and a window, and the whole chart area fit perfectly
in
the window. When I clicked on a corner of the chart, and got Chart Tools,
and
selected the Format Tab, the size was 6.87" h x 9.48" w. That was back in
the
good old days.

One day I opened my spreadsheet and the chart size was 9.21" h x 12.68" w.
The window on the worksheet is still the same size, so a lot of the chart
is
no longer visible, and you can't see the legend either.

It would be one thing if I just needed to resize this one chart, but my
spreadsheet has 52 of these charts, and 52 of another chart, and all were
resized.

But we're talking chart area, not plot area, so when I say the
instructions
didn't work, I didn't realize the difference, and I hadn't selected just
the
plot area.

I could send you screenshots if that would help.

Thanks,
Bob Venezia

"Jon Peltier" wrote:

"couldn't get it to work" is a big topic. If you indicate what the error
was, or what happened or didn't happen, it would be easier to figure out
what went wrong.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services, Inc.
http://PeltierTech.com/WordPress/





  #13  
Old February 4th, 2009, 07:51 PM posted to microsoft.public.excel.charting
Jon Peltier
external usenet poster
 
Posts: 5,018
Default Ho do I resize multiple charts?

Unbelievable. The chart area is allowed to expand to a larger size than the
available page size.

Okay, let's retool the earlier procedure.

Sub FixCharts()
Dim cht As Chart

If Not ActiveChart Is Nothing Then
For Each cht In ActiveWorkbook.Charts
If cht.Name ActiveChart.Name Then
''cht.ChartArea.Left = ActiveChart.ChartArea.Left
''cht.ChartArea.Top = ActiveChart.ChartArea.Top
cht.ChartArea.Left = 0
cht.ChartArea.Top = 0
cht.ChartArea.Width = ActiveChart.ChartArea.Width
cht.ChartArea.Height = ActiveChart.ChartArea.Height

cht.PlotArea.Width = ActiveChart.PlotArea.Width / 2
cht.PlotArea.Height = ActiveChart.PlotArea.Height / 2
cht.PlotArea.Left = ActiveChart.PlotArea.Left
cht.PlotArea.Top = ActiveChart.PlotArea.Top
cht.PlotArea.Width = ActiveChart.PlotArea.Width
cht.PlotArea.Height = ActiveChart.PlotArea.Height
End If
Next
End If
End Sub

The two lines I've commented out should work, but don't. If they are used
the other charts are offset right and down a few points.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services, Inc.
http://PeltierTech.com/WordPress/
_______


"chairboy" wrote in message
...
I've sent you an email with screenshots showing what my charts look like,
before they're fixed, and after.

Bob

"Jon Peltier" wrote:

Is there an empty white area around the chart area of each chart, or is
it
only gray? That is, does the chart area resize on its own, or is the
actual
usable page size (page size minus margins) changing?

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services, Inc.
http://PeltierTech.com/WordPress/
_______


"chairboy" wrote in message
...
Thanks John,

I went back and reread your earlier mail, and investigated the
glossary,
and
my problem isn't just in the plot area, it's in the entire chart area.
I
originally made my chart and it bcame part of the worksheet it
represented. I
then moved the chart to its own worksheet. The new worksheet had a blue
field
for the background, and a window, and the whole chart area fit
perfectly
in
the window. When I clicked on a corner of the chart, and got Chart
Tools,
and
selected the Format Tab, the size was 6.87" h x 9.48" w. That was back
in
the
good old days.

One day I opened my spreadsheet and the chart size was 9.21" h x 12.68"
w.
The window on the worksheet is still the same size, so a lot of the
chart
is
no longer visible, and you can't see the legend either.

It would be one thing if I just needed to resize this one chart, but my
spreadsheet has 52 of these charts, and 52 of another chart, and all
were
resized.

But we're talking chart area, not plot area, so when I say the
instructions
didn't work, I didn't realize the difference, and I hadn't selected
just
the
plot area.

I could send you screenshots if that would help.

Thanks,
Bob Venezia

"Jon Peltier" wrote:

"couldn't get it to work" is a big topic. If you indicate what the
error
was, or what happened or didn't happen, it would be easier to figure
out
what went wrong.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services, Inc.
http://PeltierTech.com/WordPress/






 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 04:41 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.