The Data Table on v8.06 and v8.07 seems behave differently. Below image shows a TeeChart of the same program. Upper one is TeeChart v8.06 on D2007. Lower one is v8.07 on D2007.
After upgraded to v8.07, Data Table with more number of columns seems okay, but if number of columns is smaller, like 3, the Data Table grid falled out of the TChart boundary. Some charts even worse.
v8.06 vs v8.07 Data Table issue
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: v8.06 vs v8.07 Data Table issue
Hi Chula,
Can you please attach a simple example project we can run "as-is" to reproduce the problem here?
Thanks in advance.
Can you please attach a simple example project we can run "as-is" to reproduce the problem here?
Thanks in advance.
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 |
Re: v8.06 vs v8.07 Data Table issue
I have created a sample and attached. When you try 3 columns (bars), the data table will exceed boundary when enlarged. But if the number of columns is larger, no such issue.
I am not sure why, my live project (released) has no such problem. But by developmetnt environment has such issue after upgraded to v2010 and rollbacked.
I am not sure why, my live project (released) has no such problem. But by developmetnt environment has such issue after upgraded to v2010 and rollbacked.
- Attachments
-
- Data Table Issue.zip
- Data Table Enlarge problem
- (5.66 KiB) Downloaded 286 times
Re: v8.06 vs v8.07 Data Table issue
One more thing.
Even I fine-tuned the layout with enlarged size in design-time with 3 columns of random data and put everything well in place. Once I started drawing the Data Table still expanded out of boundary.
Even I fine-tuned the layout with enlarged size in design-time with 3 columns of random data and put everything well in place. Once I started drawing the Data Table still expanded out of boundary.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: v8.06 vs v8.07 Data Table issue
Hi Chula,
Thanks for the information. I have added the issue to the defect list (TV52014808) to be fixed for future releases.
Thanks for the information. I have added the issue to the defect list (TV52014808) to be fixed for future releases.
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 |
Re: v8.06 vs v8.07 Data Table issue
My temporary solution is add these two statement everytime I change or enlarge the chart:
Chart1.BottomAxis.MinimumOffset := 0;
Chart1.BottomAxis.MaximumOffset := 0;
So, the problem was not related to the Data Table. v8.07 will alter the above two properties automatically. Sometimes even I set it in the Edtior during design-time, these two properteis will automatically changed to whatever it wants.
Chart1.BottomAxis.MinimumOffset := 0;
Chart1.BottomAxis.MaximumOffset := 0;
So, the problem was not related to the Data Table. v8.07 will alter the above two properties automatically. Sometimes even I set it in the Edtior during design-time, these two properteis will automatically changed to whatever it wants.