Hello,
Im trying to have some arrows in a series have different line styles.
Ive tried placing:
ArrowSeries.Style:=psDashDot;
in the arrow series BeforeAdd event but with no change from the default style.
How could I have say, every fifth arrow psDashDot and keep the others psSolid?
Arrow series pen style
Hi,
I'm afraid there's not a way to do this easily (using the Arrow series events). But there're two ways that I can think in order to accomplish it :
1) using another Arrow series to display the arrows that must be different.
2) draw the arrows manually in the OnafterDraw event using the Canvas techniques :
Chart1.Canvas.Pen.Style:=psDashDot;
Chart1.Canvas.Arrow(false,....);
I'm afraid there's not a way to do this easily (using the Arrow series events). But there're two ways that I can think in order to accomplish it :
1) using another Arrow series to display the arrows that must be different.
2) draw the arrows manually in the OnafterDraw event using the Canvas techniques :
Chart1.Canvas.Pen.Style:=psDashDot;
Chart1.Canvas.Arrow(false,....);
Pep Jorge
http://support.steema.com
http://support.steema.com
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi pssdelphi,
I think it's unlikely to be included in first v8 version. I wouldn't discard this for later maintenance releases.
Please be aware at this forum for new release announcements and what's being implemented/fixed on them.
Thanks in advance.
I think it's unlikely to be included in first v8 version. I wouldn't discard this for later maintenance releases.
Please be aware at this forum for new release announcements and what's being implemented/fixed on them.
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 |