is there a limt to the number of points ?

I

inquirer

I have a program which plots data on a chart and it has been working
fine until today when I tried to plot a large data set.
There are about 59000 points to plot and the program seems to call a
halt at about 32000 or so (I haven't yet found out exactly where it stops).

I thought it may be because I had a counter declared as an integer but I
changed all integer declarations to long but it still stops at the same
place.

Does anyone know if there is a limit on the number of points that can be
plotted on one chart?
Thanks
Chris
 
N

NickHK

Chris,
Creating a chart with 51K points, I get an error of "The maximum number of
data points you can use is for a 2-D chart 32000.....to use >32000 data
points, you must create 2 or more series."
So seems built in limit.

NickHK
 
I

inquirer

NickHK said:
Chris,
Creating a chart with 51K points, I get an error of "The maximum number of
data points you can use is for a 2-D chart 32000.....to use >32000 data
points, you must create 2 or more series."
So seems built in limit.

NickHK
Thanks Nick - I wasnt getting any error message so I was in the dark.
I'll have to see how I can program in a second series.
Chris
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top