Graph to enlarge when clicked then to go back to normal ??

posfog

Board Regular
Joined
Jun 2, 2009
Messages
171
Morning All,
I have a table with data showing on it and a small graph underneath it showing what the table is above. Due to size restrictions on this i am unable to show the graph in a decent size so wondered how i can get the graph to go full size when "Clicked" and for it to go back to normal when "Clicked" again.

Any advice would be greatly received

Regards
P
 
Same thing with a simpler syntax:

Code:
Sub MyChart_Click()
Dim chto As ChartObject
Dim rSmall As Range, rBig As Range
Static b As Boolean

With Worksheets("Sheet1")
    Set chto = .ChartObjects(1)
    Set rSmall = .Range("E10:J20")
    Set rBig = .Range("C10:M25")
End With

With IIf(b, rSmall, rBig)
    chto.Width = .Width
    chto.Height = .Height
    chto.Left = .Left
    chto.Top = .Top
End With

b = Not b
End Sub
 
Upvote 0

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.

Forum statistics

Threads
1,215,197
Messages
6,123,585
Members
449,108
Latest member
rache47

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