Page 1 of 1

Removing Custom Axis Labels

Posted: Tue Mar 25, 2008 3:06 am
by 10547355
When I remove custom axis labels by calling Chart->BottomAxis->Items->Clear (), the bottom axis items are correctly removed. However, the axis remains blank. How can I get the standard labels back?

Posted: Tue Mar 25, 2008 10:06 am
by narcis
Hi Kevin,

Try this:

Code: Select all

	Chart1->Axes->Bottom->Items->Automatic=true;
	Chart1->Draw();