Points missing

2002-07-01 Thread Luigi Paioro
Hello to everybody! I'm using the PtPlot classes to plot some dynamic charts that are elaborated by a Java Servlet. I don't know why, but if I plot more time the same dataset (and also not the same!), my Plot losts some points... but not always the same number... it seems that the

Re: Points missing

2002-07-01 Thread Edward A. Lee
The only possibility that occurs to me is that the method plot.export(out_image) is getting executed before the last plot.addPoint() is executed. To test this theory, try placing at least plot.export(out_image) in the event thread, using code like this: Runnable doExport = new

Re: Points missing

2002-07-01 Thread Luigi Paioro
Thank you! That was the trouble! Thanks again. Luigi Edward A. Lee wrote: The only possibility that occurs to me is that the method plot.export(out_image) is getting executed before the last plot.addPoint() is executed. To test this theory, try placing at least plot.export(out_image)