04-04-2006 01:33 PM
04-05-2006 10:45 AM
Hi Eric,
There are several methods such as SetMinimum() and SetMinMax() that you can use to reset the X-Axis back to 0. For example, to set the X-Axis to a minimum value fo 0 you could say,
m_graph.GetAxes().Item("XAxis").SetMinimum(0);
Or you could use the SetMinMax() method and say
m_graph.GetAxes().Item("XAxis").SetMinMax(0, 200);
Hope this helps!
Best Regards,
04-06-2006 07:39 AM