no values listed on bottom axis of chart

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
jon bondy
Newbie
Newbie
Posts: 9
Joined: Fri Nov 15, 2002 12:00 am

no values listed on bottom axis of chart

Post by jon bondy » Tue Apr 24, 2007 12:19 pm

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

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Tue Apr 24, 2007 1:26 pm

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.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

jon bondy
Newbie
Newbie
Posts: 9
Joined: Fri Nov 15, 2002 12:00 am

Post by jon bondy » Tue Apr 24, 2007 1:50 pm

Narcis:

That did the trick! Thank you so much!

:)

Jon

Post Reply