10-19-2007 09:05 AM - edited 10-19-2007 09:05 AM
Message Edited by njuneardave on 10-19-2007 09:08 AM
10-22-2007 07:04 AM
10-22-2007 09:36 AM
10-22-2007 10:06 AM
10-22-2007 10:06 AM
10-22-2007 11:13 AM
10-22-2007 03:57 PM
10-23-2007 08:53 AM
10-23-2007 01:27 PM - edited 10-23-2007 01:27 PM
Nick,
Thanks for the help, I really appreciate it. So basically, I can just do this:
(when data is good. data is the double[] of binary to plot... i.e. [0, 1, 1, 0, 0, 1, 0])
Graphics graphics = e.Graphics;
Pen pen = new Pen(Color.White);
PlotYAppend(data);
(when data is bad)
Graphics graphics = e.Graphics;
Pen pen = new Pen(Color.Red);
PlotYAppend(data);
will this affect any zooming or panning capabilities? I won't be able to try this until tomorrow, so I figure I should utilize this time to better understand it.
thanks again for all of your helpfulness.
Message Edited by njuneardave on 10-23-2007 01:27 PM
10-24-2007 07:46 AM