Can anybody tell me - or better yet - show me - how this VB code translate into VB.NET code ->
TeeChart.Series(i).SeriesType = scBar !?
regards
Translate Teechart VB Code to VB.NET
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi,
Yes, you have to use:
Yes, you have to use:
Code: Select all
If TypeOf TChart1.Series(0) Is Steema.TeeChart.Styles.Bar Then
...
End If
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 |