Hello, I have installed TeeChart 6. I am trying to display a pie graph but nothing shows. I try a bar graph but nothing shows either.
what could be wrong?
I recall there was an issue when installing TeeChart 6 and not removing the standard version that comes with C++Builder.
Any recommendations?
Ilan
Series not showing
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Ilan,
If an application with an empty TChart on it runs fine it would seems you aren't into the installation issue. You should just drop a TChart on a form, double click it and add the series type you want. Then you can add the following code on your FromCreate event:
Run your project and see what's hapenning. This code should populate your series which could be your problem, that series weren't populated.
If an application with an empty TChart on it runs fine it would seems you aren't into the installation issue. You should just drop a TChart on a form, double click it and add the series type you want. Then you can add the following code on your FromCreate event:
Code: Select all
Series1->FillSampleValues(10);
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |