Can I make a chart size increase and decrease?

tonywatsonhelp

Well-known Member
Joined
Feb 24, 2014
Messages
3,201
Office Version
  1. 365
  2. 2019
  3. 2016
Platform
  1. Windows
Hi Everyone,

I'm not sure this is possible, but I was wondering if anyone knows a way I could increase and decrease the size of a chart according to the number of data lines I'm using?

I have a chart just called "Chart6" (its a horizontal bar chart) it is dynamic and increases and decrease in the number of bars show according to the number of weeks chosen,

So if you 2 weeks it show just 2 bars, but if you choose 52 weeks it show 52 bars,

the problem I have is you could choose 300 weeks? and have 300 bars, now trying to create a chart that looks nice that can cater for 2week and also 300 weeks is proving difficult.

So I was wonder if I could have a macro change the chart height according to the number of bars displayed.

I have the data in Sheet2 column B and could easily do a count to show the number if rows in cell C2

so if this cant be done another way maybe we could do a macro the says "Chart height = C2" and take C2 as 1cm (or any size)?

anyway any ideas please help


Tony
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Hi Tony. I used the Macro recorder to see what happens whenever I change the height of a chart. The result was that every 1/10th of an inch of height is recorded as 7.2 pixels. So if you wanted, you could do something like this:

Code:
ActiveSheet.Shapes("Chart6").Height = 100 + (7.2 * [C2] * 3)

where 100 is an arbitrary base height for the chart (so you don't end up with a 0 height chart) and I am multiplying the value in C2 by 3 to represent 3/10ths of an inch for each bar. Those numbers should of course be adjusted to where you want them for your specific chart. You could put this line of code in the worksheet change event and trigger it whenever the value in C2 is changed, if you felt like it.
 
Upvote 0

Forum statistics

Threads
1,216,089
Messages
6,128,750
Members
449,466
Latest member
Peter Juhnke

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top