Hi. How many values in each series can TeeChart can handle, and how many series can it handle.
I'm dealing with data that has 1500-1600 vectors (series to teechart) with
1000 elements each (values for each series to teechart) and I'm experiencing some problems. If I load each series one by one driven by mouse click (each mouse click a series is loaded) I becomes slowly after 100 series, and if I load all the series continuously I got an abend.
What are the values and series limits for TeeChart ?.
If I use a surface type would I get better results ?
Thanks for your help.
El_Quijote_MX
TeeChart capacities
-
- Newbie
- Posts: 3
- Joined: Thu May 20, 2004 4:00 am
- Location: Monterrey, México
TeeChart capacities
Attitude is all
Hi,
in the TeeChart Pro v6 the maximum is 134217727 points per Series and same number of Series per Chart.
Which Series type are you using ?
Could you please post the code with which I can reproduce "as is" the problem here ?
in the TeeChart Pro v6 the maximum is 134217727 points per Series and same number of Series per Chart.
Which Series type are you using ?
Could you please post the code with which I can reproduce "as is" the problem here ?
Pep Jorge
http://support.steema.com
http://support.steema.com
-
- Newbie
- Posts: 3
- Joined: Thu May 20, 2004 4:00 am
- Location: Monterrey, México
TeeChart Capacities
Hi!. Thanks for your reply.
I'm using TeeChart Pro V4.0
The code I'm using is as follows
Dim Start As Integer
Dim finish As Integer
Dim i As Integer
Dim j As Integer
TChart2.Series(0).Clear
For i = 1 To Combo1.ListCount Step 50
Start = temp(i, 1000)
finish = temp(i, 1001)
For j = Start To finish Step 50
TChart2.Series(0).asSurface.AddXYZ ((Start + finish) / 2 - j) * 1.867, temp(i, j), i, "", clTeeColor
Next j
Next i
When I run the above code I got the following error . ..
Access violation at address 03ABC01 in module "TeeChart.ocx". Write of address 0000000E.
I'm using TeeChart Pro V4.0
The code I'm using is as follows
Dim Start As Integer
Dim finish As Integer
Dim i As Integer
Dim j As Integer
TChart2.Series(0).Clear
For i = 1 To Combo1.ListCount Step 50
Start = temp(i, 1000)
finish = temp(i, 1001)
For j = Start To finish Step 50
TChart2.Series(0).asSurface.AddXYZ ((Start + finish) / 2 - j) * 1.867, temp(i, j), i, "", clTeeColor
Next j
Next i
When I run the above code I got the following error . ..
Access violation at address 03ABC01 in module "TeeChart.ocx". Write of address 0000000E.
-
- Site Admin
- Posts: 1349
- Joined: Thu Jan 01, 1970 12:00 am
- Location: Riudellots de la Selva, Catalonia
- Contact:
Hi ..
Many thanks
Which release of TeeChart Pro v4 are you using? Please bear in mind that no further development work is being done on AXv4.I'm using TeeChart Pro V4.0
What is your function "temp()" doing here? Could you please provide us with an example we can run "as-is"?
The code I'm using is as follows
Dim Start As Integer
Dim finish As Integer
Dim i As Integer
Dim j As Integer
TChart2.Series(0).Clear
For i = 1 To Combo1.ListCount Step 50
Start = temp(i, 1000)
finish = temp(i, 1001)
For j = Start To finish Step 50
TChart2.Series(0).asSurface.AddXYZ ((Start + finish) / 2 - j) * 1.867, temp(i, j), i, "", clTeeColor
Next j
Next i
Many thanks
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/
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/