Access Violation when Zooming

TeeChart for ActiveX, COM and ASP
Post Reply
Midnighprowler
Newbie
Newbie
Posts: 2
Joined: Fri Nov 15, 2002 12:00 am

Access Violation when Zooming

Post by Midnighprowler » Tue Aug 17, 2004 12:59 pm

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?

Christopher
Site Admin
Site Admin
Posts: 1349
Joined: Thu Jan 01, 1970 12:00 am
Location: Riudellots de la Selva, Catalonia
Contact:

Post by Christopher » Tue Aug 17, 2004 4:09 pm

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?
Thank you!

Christopher Ireland (Steema crew)
Please be aware of the newsgroup archives:
http://www.teechart.net/support/search.php
http://groups.google.com
http://codenewsfast.com/

Post Reply