Page 1 of 1

Access Violation when Zooming

Posted: Tue Aug 17, 2004 12:59 pm
by 5887298
On a graph instance of 11 series(fastline) with approx. 14000 points for each, every other time a zoom is done, we get the error -
"Access violation at address 504C97FD in module 'TeeChart.ocx'. Read of address 0000000C." Any ideas?

Posted: Tue Aug 17, 2004 4:09 pm
by Chris
Hi --
On a graph instance of 11 series(fastline) with approx. 14000 points for each, every other time a zoom is done, we get the error -
"Access violation at address 504C97FD in module 'TeeChart.ocx'. Read of address 0000000C." Any ideas?
Using TeeChart AX 6.0.0.5 the following code works OK here:

Code: Select all

Private Sub Form_Load()
With TChart1
    .Aspect.View3D = False
    For i = 0 To 10
        .AddSeries scFastLine
        .Series(i).FillSampleValues 14000
     Next i
End With
End Sub
Does this work at your end?