About Horizontal Point Line
About Horizontal Point Line
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?
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 (4.57 KiB) Viewed 20094 times
Re: About Horizontal Point Line
BTW, We are using the newest Teechart (201308) version for XE4 Firemonkey HD App.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: About Horizontal Point Line
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.elmec wrote: Do you have any ideas to draw all the pointer in like some "Merge" mode?
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: About Horizontal Point Line
Hello Narcís,
Thanks for your advice.
Is there any other way to draw all the points clearly?
Thanks for your advice.
Is there any other way to draw all the points clearly?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: About Horizontal Point Line
Hi elmec,
You can either set pointer style to small dots:
Or make pointers smaller:
You can either set pointer style to small dots:
Code: Select all
Series1.Pointer.Style:=psSmallDot;
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 |
Instructions - How to post in this forum |
Re: About Horizontal Point Line
The attachment I have attached was the result after
So, I tried to
but all of the points diappeared...
BTW, I am using XE4 Firemonkey HD APP.
Code: Select all
Series1.Pointer.VertSize:=1;
Series1.Pointer.HorizSize:=1;
Code: Select all
Series1.Pointer.Style:=psSmallDot;
BTW, I am using XE4 Firemonkey HD APP.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: About Horizontal Point Line
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.
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 |
Instructions - How to post in this forum |
Re: About Horizontal Point Line
Anyway, I'll attach the example project.
Re: About Horizontal Point Line
Anyway, I'll attach the example project.
- Attachments
-
- Pointer.zip
- (155.4 KiB) Downloaded 712 times
Re: About Horizontal Point Line
I have add it to Bugzilla.
Bug 93 has been added to the database...
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: About Horizontal Point Line
Thanks elmec,
That's the bug: ID93. There's a problem with the bottom axis range. Commenting out the line below points are visible.
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 |
Instructions - How to post in this forum |
Re: About Horizontal Point Line
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)?
The values are between the range I set,
why cannt I fix the range of Y axis (Bottom Axis for Horizontal Line)?
Re: About Horizontal Point Line
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.
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.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: About Horizontal Point Line
Hello elmec,
If none of the options suggested works fit your needs, you could try using a Bubble series with very small radius.
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 |
Instructions - How to post in this forum |
Re: About Horizontal Point Line
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.
Thanks for your advice.
We'll have a try of Bubble Sereis.
But please let us know if the problem has any new status.