Unzoom after import

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
JayG
Newbie
Newbie
Posts: 71
Joined: Mon Sep 04, 2006 12:00 am

Unzoom after import

Post by JayG » Tue Apr 17, 2007 7:49 pm

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

Marjan
Site Admin
Site Admin
Posts: 745
Joined: Fri Nov 07, 2003 5:00 am
Location: Slovenia
Contact:

Post by Marjan » Wed Apr 18, 2007 6:55 am

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;
Marjan Slatinek,
http://www.steema.com

Post Reply