Cannot Zoom if Bottom axis Labels are not visible
Posted: Tue Aug 29, 2006 3:02 pm
When the bottom axis labels are made not visibile, the automatic zooming no longer works correctly. Is there a way to fix this?
Steema Software - Customer Support Forums
http://216.92.243.79/support/
Code: Select all
Private Sub Check1_Click()
TChart1.Axis.Bottom.Labels.Visible = Not TChart1.Axis.Bottom.Labels.Visible
End Sub
Private Sub Form_Load()
TChart1.Series(0).FillSampleValues 10
TChart1.Environment.InternalRepaint 'Workaround
TChart1.Axis.Bottom.Labels.Visible = False
End Sub