problems with logarithmic chart using curvefitting

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
BlueMonkey
Newbie
Newbie
Posts: 34
Joined: Tue Nov 04, 2008 12:00 am

problems with logarithmic chart using curvefitting

Post by BlueMonkey » Mon Dec 29, 2008 9:40 pm

I am using BDS 2006 and TeeChart 8.1

I have uploaded my application to your site with the name Bluemonkey1.zip. It demonstrates 3 problems.

1. Scrolling chart causes unexpected jump. You must cancel zoom to return to original display of chart.
2. Point series marks are visible outside the chart. (scroll up or down).
3. The logarithmic axis does not display axis labels between zero and 1,000.

Thanks,
Kent

Pep
Site Admin
Site Admin
Posts: 3295
Joined: Fri Nov 14, 2003 5:00 am
Contact:

Post by Pep » Tue Dec 30, 2008 9:48 am

Hi Kent,

where have you upload the demo project ? I've not found at steema.public.attachments newsgroup neither into the upload page.

BlueMonkey
Newbie
Newbie
Posts: 34
Joined: Tue Nov 04, 2008 12:00 am

Post by BlueMonkey » Tue Dec 30, 2008 4:55 pm

I posted to the www.steema.net/upload page. That link was provided in another forum posting.

My company's IT group does not allow us to use newsgroups. If the upload page did not work, can you provide an ftp site?

Thanks,
Kent

Pep
Site Admin
Site Admin
Posts: 3295
Joined: Fri Nov 14, 2003 5:00 am
Contact:

Post by Pep » Wed Dec 31, 2008 10:31 am

Hi Kent,

ok, now I've found it. I'm investigating all your problems, I'll back to you asap.
About 2) You can clip the Marks by using Series1.Marks.Clip:=true;

BlueMonkey
Newbie
Newbie
Posts: 34
Joined: Tue Nov 04, 2008 12:00 am

shadows around marks not clipped

Post by BlueMonkey » Mon Jan 05, 2009 7:57 pm

I tried your suggestion for clipping the marks. I was able to successfully hide the rectangle and the label inside the marks, but the shadow still appears outside the chart area. I tried series.marks.shadow.clip := true, but that had no effect. Is there another property that I must set to clip the shadow?

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

Post by Narcís » Wed Jan 07, 2009 8:57 am

Hi BlueMonkey,

The only solution I can think of is making marks shadow not visible:

Code: Select all

  Series1.Marks.Shadow.Visible:=false;
I'll add this to the wish-list to be enhanced for next 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
Image Image Image Image Image Image
Instructions - How to post in this forum

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

Post by Narcís » Wed Jan 07, 2009 1:11 pm

Hi BlueMonkey,

About the other questions:

1. Scrolling the chart causes unexpected jump. You must cancel zoom to return to original display of chart. Logarithmic axes need to be enhanced and we have several aspects of this in the wish-list to improve for future releases.

3. The logarithmic axis does not display axis labels between zero and 1,000. If you set a logarithmic scale with base 10 you'll get 1, 10, 100, 1000, ... labels. Otherwise you'll have to add them manually using custom labels as shown in the All Features\Welcome!\Axes\Labels\Custom Labels example in the new features demo, available at TeeChart's program group.
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

BlueMonkey
Newbie
Newbie
Posts: 34
Joined: Tue Nov 04, 2008 12:00 am

cannot hide shadow

Post by BlueMonkey » Mon Feb 02, 2009 8:17 pm

I tried hiding the mark's shadow completely as suggested, but this does not work. There is no way to suppress the shadow.

DataSeries.Marks.Clip := true;
DataSeries.Marks.Shadow.Clip := true;
DataSeries.Marks.Shadow.Visible := false;

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 Feb 03, 2009 10:01 am

Hi BlueMonkey,

This works fine for me here using v8.04, which is the latest version available at the client area. Could you please check if v8.04 solves the problem for you?

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
Image Image Image Image Image Image
Instructions - How to post in this forum

BlueMonkey
Newbie
Newbie
Posts: 34
Joined: Tue Nov 04, 2008 12:00 am

point series mark shadows

Post by BlueMonkey » Tue Feb 03, 2009 4:06 pm

I am using build 8.04.11395. It does not work for me in the demo program that I sent to you previously.

Post Reply