Page 1 of 1

no values listed on bottom axis of chart

Posted: Tue Apr 24, 2007 12:19 pm
by 8437895
I have a chart (with a fast line graph series) with about XY 40 points on it, with X values ranging from about 500 to 4000. The chart shows values listed along the X axis at design time, but there are no visible values at run-time, although there are vertical lines! I must be doing something wrong at run time to make the values disappear, but I can't see what that might be. Any thoughts or suggestions?

The chart has 4 series in it, but I've cleared and avoided entering data into all but one for the time being, to debug the situation

Thanks!

Jon

Posted: Tue Apr 24, 2007 1:26 pm
by narcis
Hi Jon,

You can try adding the code below to your code.

Code: Select all

  Chart1.Axes.Bottom.Labels:=true;
  Chart1.Axes.Bottom.LabelStyle:=talValue;
If the problem persists could you please send us a simple example project we can run "as-is" to reproduce the problem here? You can either post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.

Posted: Tue Apr 24, 2007 1:50 pm
by 8437895
Narcis:

That did the trick! Thank you so much!

:)

Jon