Page 1 of 1

Unzoom after import

Posted: Tue Apr 17, 2007 7:49 pm
by 9792387
If I save a chart to a .ten file after it has been zoomed, then import it again, how can I get it to unzoom to the original full chart?

Jay

Posted: Wed Apr 18, 2007 6:55 am
by Marjan
Hi, Jay.

One solution is to set all axis Automatic property to true after importing chart. For example

Code: Select all

foreach (Axis axis in yourChart.Axes)
  axis.Automatic = true;