Series marks -> Arrows -> Pointer
Series marks -> Arrows -> Pointer
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?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
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.
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 |
Instructions - How to post in this forum |
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).
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi UserLS,
This is most likely because you are setting this:
instead of this:
However, when you use the first and set ColorEach = true both the pointers and top lines are painted in a different color each one.
This is most likely because you are setting this:
Code: Select all
area1.Pointer.Visible = true;
Code: Select all
area1.Marks.Callout.Visible = true;
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 |