Click to See Complete Forum and Search --> : Hide MSChart


ohadbp
September 5th, 2001, 10:38 AM
hi,

is there a way to hide the MSChart object??
i want to hide and show the chart by clicking on a command button.

thanks,
ohad.

DSJ
September 5th, 2001, 11:10 AM
This code behind a button should toggle it back and forth...


private Sub Command1_Click()
MSChart1.Visible = Not MSChart1.Visible
End Sub