Problem with marks
Problem with marks
This 8.06 with delphi 2010
See attach zip file that contains jpg and sample project. The marks do not line up or appear ouside the border
See attach zip file that contains jpg and sample project. The marks do not line up or appear ouside the border
- Attachments
-
- sample.zip
- (85.72 KiB) Downloaded 201 times
Re: Problem with marks
Hi efkenis,
I could reproduce it with TeeChart 8.06 but with the actual sources it seems to work fine so this should be fixed with the next maintenance release.
I could reproduce it with TeeChart 8.06 but with the actual sources it seems to work fine so this should be fixed with the next maintenance release.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Problem with marks
When should I expect the next build?
Thank you.
Thank you.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Problem with marks
Hi efkenis,
A date hasn't been fixed date but I'd say it should be quite soon. Please be aware at this forum or subscribe to our RSS news feed for its announcement.
A date hasn't been fixed date but I'd say it should be quite soon. Please be aware at this forum or subscribe to our RSS news feed for its announcement.
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: Problem with marks
Still waiting on this build but I do not see one. I will need it soon
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Problem with marks
Hi efkenis,
Most likely v8.07 will be out next month.
Most likely v8.07 will be out next month.
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: Problem with marks
I discovered another problem with TChart on Report builder Report. The Differnce TLineSeries is not showing with D2010 but works fined with D2007. There were no changes made and used the same data.
The difference is a Function Subtract and uses Current and Compared To. I double checked the settings of the chart from D2007 and D2010 and they are the same except for a the new properties
See attached images. Are you aware of any issues like this one with the current Build?
The difference is a Function Subtract and uses Current and Compared To. I double checked the settings of the chart from D2007 and D2010 and they are the same except for a the new properties
See attached images. Are you aware of any issues like this one with the current Build?
- Attachments
-
- Delphi2010Graph-INCORRECT.jpg (114.54 KiB) Viewed 5033 times
-
- Delphi2007 Graph-CORRECT.jpg (124.55 KiB) Viewed 5030 times
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Problem with marks
Hi efkenis,
Not that I can think of. Could you please try reproducing this with a TChart component, without using Report Builder? If the problem persists please attach a simple example project we can run "as-is" to reproduce the problem here. Otherwise please contact Digital Metaphors support, they are the manufacturers of Report Builder and its TeeChart wrapper.
Thanks in advance.
Not that I can think of. Could you please try reproducing this with a TChart component, without using Report Builder? If the problem persists please attach a simple example project we can run "as-is" to reproduce the problem here. Otherwise please contact Digital Metaphors support, they are the manufacturers of Report Builder and its TeeChart wrapper.
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: Problem with marks
Please see attached Image.
I noticed that the Source Series does not save and stay as Available even though I moved them to selected.
The following code at run time solves the problem but I should not have to do that
ppDPTeeChart1.Chart.Series[ppDPTeeChart1.Chart.SeriesCount-1].DataSources.add(ppDPTeeChart1.Chart.Series[0]);
ppDPTeeChart1.Chart.Series[ppDPTeeChart1.Chart.SeriesCount-1].DataSources.add(ppDPTeeChart1.Chart.Series[1]);
if you still think is Report builder issue. I will contact them but usually i get bounced back and forth when two vendors are involved
I noticed that the Source Series does not save and stay as Available even though I moved them to selected.
The following code at run time solves the problem but I should not have to do that
ppDPTeeChart1.Chart.Series[ppDPTeeChart1.Chart.SeriesCount-1].DataSources.add(ppDPTeeChart1.Chart.Series[0]);
ppDPTeeChart1.Chart.Series[ppDPTeeChart1.Chart.SeriesCount-1].DataSources.add(ppDPTeeChart1.Chart.Series[1]);
if you still think is Report builder issue. I will contact them but usually i get bounced back and forth when two vendors are involved
- Attachments
-
- Settings.jpg (74.6 KiB) Viewed 5016 times
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Problem with marks
Hi efkenis,
We will be glad to look at the issue here but could you please attach a simple TChart example project with which we can reproduce the problem and let us know the exact steps we should follow to reproduce it?
Thanks in advance.
We will be glad to look at the issue here but could you please attach a simple TChart example project with which we can reproduce the problem and let us know the exact steps we should follow to reproduce it?
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: Problem with marks
Attached is a sample project. The linesSeries (series3) with the subtract function is visible at design time but not at runtime.
Delphi 2010 and Teechart 8.06
Thank you
Delphi 2010 and Teechart 8.06
Thank you
- Attachments
-
- LineSeries.zip
- (1.37 KiB) Downloaded 182 times
Re: Problem with marks
Hi efkenis,
I opened your project with D2010 + TeeChart 8.06 and saw the following at design time: The I executed and got the following result: The problem is that in the FormShow method you populate your bar series but you don't check that data with your Series3. So adding the following line at the end of your Show method:
I obtain the following result:
I opened your project with D2010 + TeeChart 8.06 and saw the following at design time: The I executed and got the following result: The problem is that in the FormShow method you populate your bar series but you don't check that data with your Series3. So adding the following line at the end of your Show method:
Code: Select all
Series3.CheckDataSource;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |