Page 1 of 1

Translate Teechart VB Code to VB.NET

Posted: Wed Jun 15, 2005 7:07 am
by 6919955
Can anybody tell me - or better yet - show me - how this VB code translate into VB.NET code ->
TeeChart.Series(i).SeriesType = scBar !?

regards

Posted: Thu Jun 16, 2005 11:42 am
by narcis
Hi,

Yes, you have to use:

Code: Select all

        If TypeOf TChart1.Series(0) Is Steema.TeeChart.Styles.Bar Then
            ...
        End If