After creating several bar3D series at run time, can their popoerties such as CustomBarWidth and MultiBar and methods such as AddBar be accessed using
for index := 0 to Chart1.SeriesCount-1 do Chart1.Series[index].
These properties and methods are not available this way.
Acessing Chart1.Series properties and methods for Bar3D
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Steve,
To access specific series types methods you have to type cast series doing:
To access specific series types methods you have to type cast series doing:
Code: Select all
for i := 0 to Chart1.SeriesCount-1 do (Chart1.Series[index] as TBar3DSeries).AddBar(...)
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 |