Steema.TeeChart.Styles.Arrow ARROW = new Steema.TeeChart.Styles.Arrow (Chart.Chart);
later ... followed by:
ARROW.LinePen.Visible = true;
ARROW.LinePen.Width = 10;
ARROW.LinePen.Style = System.Drawing.Drawing2D.DashStyle.DashDot;
has no effect on the arrow series lines?
TeeChart.Styles.Arrow LinePen Issues
Re: TeeChart.Styles.Arrow LinePen Issues
Hello Ivan_Vs,
If you want change line pen of arrow Series, you must change property pen of Pointer, as do in lines below:
I hope will helps.
Thanks,
If you want change line pen of arrow Series, you must change property pen of Pointer, as do in lines below:
Code: Select all
arrow.LinePen.Width = 5;
arrow.LinePen.Style = System.Drawing.Drawing2D.DashStyle.DashDot;
Thanks,
Best Regards,
Sandra Pazos / 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: TeeChart.Styles.Arrow LinePen Issues
Thanks Sandra,
However I have been using the Arrow Series with one entry:
eg: ARROW.Add (0.0, 0.0, 1.0, 1.0);
... and the LinePen does not seem to work in that circumstance.
However I have been using the Arrow Series with one entry:
eg: ARROW.Add (0.0, 0.0, 1.0, 1.0);
... and the LinePen does not seem to work in that circumstance.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: TeeChart.Styles.Arrow LinePen Issues
Hi Ivan_Vs,
I'm afraid Sandra confused herself. You should use Pointer.Pen instead of LinePen, for example:
I'm afraid Sandra confused herself. You should use Pointer.Pen instead of LinePen, for example:
Code: Select all
ARROW.Pointer.Pen.Width = 5;
ARROW.Pointer.Pen.Style = System.Drawing.Drawing2D.DashStyle.DashDot;
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 |