Page 1 of 1

Problem with marks

Posted: Wed Dec 30, 2009 11:57 pm
by 10553446
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

Re: Problem with marks

Posted: Mon Jan 04, 2010 10:43 am
by yeray
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.

Re: Problem with marks

Posted: Tue Jan 19, 2010 3:50 pm
by 10553446
When should I expect the next build?
Thank you.

Re: Problem with marks

Posted: Tue Jan 19, 2010 3:54 pm
by narcis
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.

Re: Problem with marks

Posted: Fri Feb 26, 2010 3:50 pm
by 10553446
Still waiting on this build but I do not see one. I will need it soon

Re: Problem with marks

Posted: Fri Feb 26, 2010 3:57 pm
by narcis
Hi efkenis,

Most likely v8.07 will be out next month.

Re: Problem with marks

Posted: Thu Mar 11, 2010 5:02 pm
by 10553446
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?

Re: Problem with marks

Posted: Fri Mar 12, 2010 8:23 am
by narcis
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.

Re: Problem with marks

Posted: Fri Mar 12, 2010 3:18 pm
by 10553446
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

Re: Problem with marks

Posted: Fri Mar 12, 2010 3:34 pm
by narcis
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.

Re: Problem with marks

Posted: Fri Mar 12, 2010 5:52 pm
by 10553446
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

Re: Problem with marks

Posted: Mon Mar 15, 2010 10:12 am
by yeray
Hi efkenis,

I opened your project with D2010 + TeeChart 8.06 and saw the following at design time:
design-time.png
design-time.png (61.65 KiB) Viewed 4915 times
The I executed and got the following result:
runtime.png
runtime.png (26.86 KiB) Viewed 4911 times
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;
I obtain the following result:
runtime2.png
runtime2.png (32.09 KiB) Viewed 4915 times