First, please ignore the previous post that I messed up and couldn't figure out how to edit or delete.
What I need to do is draw a plot starting with a few basic lines and then respond to keyboard input from the user (actually weights to be loaded onto a 747 freighter). Each weight will result in another line. At the end there may be as many as 80+ lines, and I'm hoping to avoid the overhead of having to redraw the previous lines each time a weight is added.
I experimented with jquery flot, bit it appears that it has to redraw each time. I saw a Google item that appeared to say that jqPlot doesn't have to redraw, but I've been unable to figure it out. I can get multiple lines up by modifying the plot with each additional line and using replot(), but that looks like it's redrawing. I can put two plots overlapping (I can see it happening by looking at the different x-ais merging), but the background of the 2nd plot obscures the first. I'm trying to figure out if I can make the backgrounds transparent, but I haven't been able to figure that out yet.
Any ideas will be greatly appreciated.
I'm a newbie at this and Javascript as well. What I'm attempting can be seen at
terryliittschwager.com/WB/JWB.php, the first plot down which at the moment is unlabeled and done using flot (as are the subsequent plots). The whole problem right now is that with each weight entry everything has to be redrawn.
Thank you for your help and your patience!