Page 1 of 1

ashorizbar property gone ?

Posted: Mon May 01, 2006 5:55 pm
by 9524413
I just upgraded to 7.0.0.7. In testing my app i'm getting errors by "reaching" to the ashorizbar property.
Something like :
AddSeries(scHorizBar)
series(0).ashorizbar.multibar=0
Could you please test this ?

Greetings,

Jack

Posted: Tue May 02, 2006 8:05 am
by narcis
Hi Jack,

It works fine for me here using v7.0.0.7 and something like this:

Code: Select all

Private Sub Form_Load()
    With TChart1
        .AddSeries scHorizBar
        .Series(0).asHorizBar.MultiBar = mbNone
        .Series(0).FillSampleValues 10
    End With
End Sub