Series marks -> Arrows -> Pointer

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
UserLS
Advanced
Posts: 247
Joined: Wed May 23, 2007 12:00 am

Series marks -> Arrows -> Pointer

Post by UserLS » Thu Jan 08, 2009 9:00 pm

On the series marks -> Arrows page there is "Pointer" button. What it supposed to do? I tried to change every available property under that editor - no effect! Am I missing something?

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

Post by Narcís » Fri Jan 09, 2009 9:00 am

Hi UserLS,

For being able to see its effect you may need to change arrow length in the same dialog at the Length up/down control. Setting it to 20 and making pointers visible should be enough.
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

UserLS
Advanced
Posts: 247
Joined: Wed May 23, 2007 12:00 am

Post by UserLS » Fri Jan 09, 2009 7:28 pm

OK, I see them. A few observations. I have an area graph and when I make these pointers visible, I expect them to be connected to the bottom of the arrow, but they are actually drawn in the middle of the z-axis and so, unless I have a 2D graph they will not be connected to the arrow. Second, they do have an option "color each", but instead of coloring the pointers (what I expected) this color in different colors the top of my area (which I did not expect at all).

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

Post by Narcís » Mon Jan 12, 2009 9:07 am

Hi UserLS,

This is most likely because you are setting this:

Code: Select all

			area1.Pointer.Visible = true;
instead of this:

Code: Select all

			area1.Marks.Callout.Visible = true;
However, when you use the first and set ColorEach = true both the pointers and top lines are painted in a different color each one.
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

Post Reply