-
jamcquay committed revision 34 to the NPlot Charting Library SVN repository, changing 1 files.
2009-12-28 15:29:51 UTC by jamcquay
-
In the web.config of ASP Web Applicaion project, if I set , then NPlot.Web.PlotSurface2D just show a red "X" on the page.
2009-12-22 18:00:13 UTC by nobody
-
this is empty.
2009-12-18 22:41:34 UTC by jamcquay
-
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 by jamcquay
-
jamcquay committed revision 33 to the NPlot Charting Library SVN repository, changing 1 files.
2009-12-18 22:38:20 UTC by jamcquay
-
Please confirm if this fixed your problem.
2009-12-18 22:36:01 UTC by nobody
-
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 by jamcquay
-
I would like to continue my latest thread, which was closed. It can be found with this link:
http://sourceforge.net/tracker/?func=detail&aid=2915404&group_id=161868&atid=821568
Thanks Jamcquay for your response, but your code didn't work. Have you any other suggestion how I shall solve this?
Here is my current code with your code response.
// Generate data samples each second
void...
2009-12-17 12:12:29 UTC by nobody
-
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 by jamcquay
-
I'm working on a dynamic graph that shall display the value of a temperature or a level sensor in runtime.
My program is logging values into two collections. Each collection is put into the PlotSurface object's X-axis and Y-axis. This is done each second.
But I'm having trouble with the .Refresh()-method. The method causes an Argument out of range exception to be thrown. The exception's...
2009-12-16 09:10:08 UTC by nobody