-
jamcquay committed revision 34 to the NPlot Charting Library SVN repository, changing 1 files.
2009-12-28 15:29:51 UTC in NPlot Charting Library
-
jamcquay committed revision 30 to the AnIML Tools SVN repository, changing 17 files.
2009-12-23 14:19:41 UTC in AnIML Tools
-
this is empty.
2009-12-18 22:41:34 UTC in NPlot Charting Library
-
Zoom interaction was crashing when zooming in multiple times... Now checking if the graphics extends before allowing the update.
2009-12-18 22:39:56 UTC in NPlot Charting Library
-
jamcquay committed revision 33 to the NPlot Charting Library SVN repository, changing 1 files.
2009-12-18 22:38:20 UTC in NPlot Charting Library
-
Try updating your NPlot.dll to the latest release (0.9.10.0). I noticed that your application is using the 0.9.9.2 build.
I tried your application with the version that you have and it failed... once i updated to 0.9.10.0 the application worked.
Post back here how you make out...
2009-12-17 13:46:20 UTC in NPlot Charting Library
-
The error in your code is that you are trying to update a UI element from a thread that is not the UI thread (timer ticks are handled on a different thread).
To fix this you need to handle the NPlot update in the UI thread like this:
// Generate data samples each second
void runTimeLogger_Tick(object sender, EventArgs e)
{
xAxis.Add(counter++);.
2009-12-16 14:10:56 UTC in NPlot Charting Library