I need to have a different border on one or more of the bars in a bar chart. Is it possible/how do I do it.
best regards,
Milton Lapido
Different borders on every bar, is it possible?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Milton,
Yes, this can be done implementing the OnGetBarStyle event you can use something like:
Yes, this can be done implementing the OnGetBarStyle event you can use something like:
Code: Select all
if ValueIndex=1 then
Sender.Pen.Width:=3
else
Sender.Pen.Width:=1;
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 |