Page 1 of 2

About Horizontal Point Line

Posted: Mon Nov 11, 2013 11:13 am
by 16566869
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?

Re: About Horizontal Point Line

Posted: Mon Nov 11, 2013 11:15 am
by 16566869
BTW, We are using the newest Teechart (201308) version for XE4 Firemonkey HD App.

Re: About Horizontal Point Line

Posted: Mon Nov 11, 2013 12:01 pm
by narcis
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.

Re: About Horizontal Point Line

Posted: Tue Nov 12, 2013 12:30 am
by 16566869
Hello Narcís,
Thanks for your advice.
Is there any other way to draw all the points clearly?

Re: About Horizontal Point Line

Posted: Tue Nov 12, 2013 10:40 am
by narcis
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;

Re: About Horizontal Point Line

Posted: Tue Nov 12, 2013 1:40 pm
by 16566869
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.

Re: About Horizontal Point Line

Posted: Tue Nov 12, 2013 1:58 pm
by narcis
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.

Re: About Horizontal Point Line

Posted: Tue Nov 12, 2013 2:19 pm
by 16566869
Anyway, I'll attach the example project.

Re: About Horizontal Point Line

Posted: Tue Nov 12, 2013 2:20 pm
by 16566869
Anyway, I'll attach the example project.

Re: About Horizontal Point Line

Posted: Tue Nov 12, 2013 2:32 pm
by 16566869
I have add it to Bugzilla.
Bug 93 has been added to the database...

Re: About Horizontal Point Line

Posted: Tue Nov 12, 2013 2:52 pm
by narcis
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);

Re: About Horizontal Point Line

Posted: Wed Nov 13, 2013 12:56 am
by 16566869
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)?

Re: About Horizontal Point Line

Posted: Wed Nov 13, 2013 1:10 am
by 16566869
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.

Re: About Horizontal Point Line

Posted: Wed Nov 13, 2013 7:53 am
by narcis
Hello elmec,

If none of the options suggested works fit your needs, you could try using a Bubble series with very small radius.

Re: About Horizontal Point Line

Posted: Wed Nov 13, 2013 10:11 am
by 16566869
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.