About Horizontal Point Line

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
elmec
Advanced
Posts: 129
Joined: Mon Aug 26, 2013 12:00 am

About Horizontal Point Line

Post by elmec » Mon Nov 11, 2013 11:13 am

There is no Horizontal Point Line,
so I using the Horizontal Line, and set the Pointer as visible,
change the transparency to 100 to hide the line between pointer
to make it look like as pointer series.

But just like shown in the attachment,
when there are a lot of points ,
they are drawed overlaping each other, so cannt be shown clearly.
When I zoom in the series, it became clearly drawed.

Do you have any ideas to draw all the pointer in like some "Merge" mode?
Attachments
HorizontalPointLine.png
HorizontalPointLine.png (4.57 KiB) Viewed 19886 times

elmec
Advanced
Posts: 129
Joined: Mon Aug 26, 2013 12:00 am

Re: About Horizontal Point Line

Post by elmec » Mon Nov 11, 2013 11:15 am

BTW, We are using the newest Teechart (201308) version for XE4 Firemonkey HD App.

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

Re: About Horizontal Point Line

Post by Narcís » Mon Nov 11, 2013 12:01 pm

elmec wrote: Do you have any ideas to draw all the pointer in like some "Merge" mode?
Yes, you can do as in the All Features\Welcome\Functions\Extended\Reducing number of points example in the features demo, which uses TDownSampling function. Demo can be found 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

elmec
Advanced
Posts: 129
Joined: Mon Aug 26, 2013 12:00 am

Re: About Horizontal Point Line

Post by elmec » Tue Nov 12, 2013 12:30 am

Hello Narcís,
Thanks for your advice.
Is there any other way to draw all the points clearly?

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

Re: About Horizontal Point Line

Post by Narcís » Tue Nov 12, 2013 10:40 am

Hi elmec,

You can either set pointer style to small dots:

Code: Select all

  Series1.Pointer.Style:=psSmallDot;
Or make pointers smaller:

Code: Select all

  Series1.Pointer.VertSize:=1;
  Series1.Pointer.HorizSize:=1;
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

elmec
Advanced
Posts: 129
Joined: Mon Aug 26, 2013 12:00 am

Re: About Horizontal Point Line

Post by elmec » Tue Nov 12, 2013 1:40 pm

The attachment I have attached was the result after

Code: Select all

  Series1.Pointer.VertSize:=1;
  Series1.Pointer.HorizSize:=1;
So, I tried to

Code: Select all

Series1.Pointer.Style:=psSmallDot;
but all of the points diappeared...

BTW, I am using XE4 Firemonkey HD APP.

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

Re: About Horizontal Point Line

Post by Narcís » Tue Nov 12, 2013 1:58 pm

Hi elmec,

This looks like a bug to me. Could you please add it to bugzilla? Doing so you'll be identified as the creator of the issue and therefore notified about its evolution.

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

elmec
Advanced
Posts: 129
Joined: Mon Aug 26, 2013 12:00 am

Re: About Horizontal Point Line

Post by elmec » Tue Nov 12, 2013 2:19 pm

Anyway, I'll attach the example project.

elmec
Advanced
Posts: 129
Joined: Mon Aug 26, 2013 12:00 am

Re: About Horizontal Point Line

Post by elmec » Tue Nov 12, 2013 2:20 pm

Anyway, I'll attach the example project.
Attachments
Pointer.zip
(155.4 KiB) Downloaded 708 times

elmec
Advanced
Posts: 129
Joined: Mon Aug 26, 2013 12:00 am

Re: About Horizontal Point Line

Post by elmec » Tue Nov 12, 2013 2:32 pm

I have add it to Bugzilla.
Bug 93 has been added to the database...

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

Re: About Horizontal Point Line

Post by Narcís » Tue Nov 12, 2013 2:52 pm

Thanks elmec,

That's the bug: ID93. There's a problem with the bottom axis range. Commenting out the line below points are visible.

Code: Select all

	//Chart1->BottomAxis->SetMinMax(-0.3, 0.3);
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

elmec
Advanced
Posts: 129
Joined: Mon Aug 26, 2013 12:00 am

Re: About Horizontal Point Line

Post by elmec » Wed Nov 13, 2013 12:56 am

I think that's not the cause of problem..
The values are between the range I set,
why cannt I fix the range of Y axis (Bottom Axis for Horizontal Line)?

elmec
Advanced
Posts: 129
Joined: Mon Aug 26, 2013 12:00 am

Re: About Horizontal Point Line

Post by elmec » Wed Nov 13, 2013 1:10 am

Hello Narcís ,

If you have any temporary method to fix that,
please help us!
Our software will be release at this end of month.

Thanks in advance.

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

Re: About Horizontal Point Line

Post by Narcís » Wed Nov 13, 2013 7:53 am

Hello elmec,

If none of the options suggested works fit your needs, you could try using a Bubble series with very small radius.
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

elmec
Advanced
Posts: 129
Joined: Mon Aug 26, 2013 12:00 am

Re: About Horizontal Point Line

Post by elmec » Wed Nov 13, 2013 10:11 am

Hello Narcís ,

Thanks for your advice.
We'll have a try of Bubble Sereis.

But please let us know if the problem has any new status.

Post Reply