<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to bugs</title><link>https://sourceforge.net/p/nplot/bugs/</link><description>Recent changes to bugs</description><atom:link href="https://sourceforge.net/p/nplot/bugs/feed.rss" rel="self"/><language>en</language><lastBuildDate>Fri, 22 Nov 2013 16:31:54 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/nplot/bugs/feed.rss" rel="self" type="application/rss+xml"/><item><title>Red Cross instead of plot</title><link>https://sourceforge.net/p/nplot/bugs/45/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hello.&lt;br /&gt;
Sometimes after plot.Refresh() I get red cross instead of plot. After some searches I found that it's way how WinForms handles uncaught exception in event handlers of Control Paint event. The main problem is red cross never disappears while program is running. Only restart helps, but it's not an option. Before cross appears I get error message box with text "Error: No X-Axis specified". I found out this exception is thrown in file PlotSurface2D.cs on 752 line.&lt;br /&gt;
Interesting thing that one PC (with Visual Studio 2008 F5 Run) hasn't this error, but two other (when I just run .exe) have. Sometimes the same exception appears with text "Error: No Y-Axis specified". My code doesn't produce uncaught exceptions. Can somebody help me?&lt;/p&gt;
&lt;p&gt;P.S. Sorry for my English.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">v_decadence</dc:creator><pubDate>Fri, 22 Nov 2013 16:31:54 -0000</pubDate><guid>https://sourceforge.net4dffe634d87ee6c4ba34880d0def5a1f1d37d593</guid></item><item><title>Converting to VS2010 errors</title><link>https://sourceforge.net/p/nplot/bugs/44/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I was trying NPlot to see if we can use it, but upon loading it into VS2010 (after installing .NET 1.1 including SDK and MSBee), the build errors with these errors:&lt;/p&gt;
&lt;p&gt;Warning 3   Use command line option '/keyfile' or appropriate project settings instead of 'AssemblyKeyFile' C:\Users\xxx\Documents\Visual Studio 2010\Projects\nplot-0.9.10.0\src\AssemblyInfo.cs   46  12  NPlot&lt;br /&gt;
Warning 1   The parent file, '..\src\Windows.PlotSurface2D.cs', for file 'resources\Windows.PlotSurface2D.resx' cannot be found in the project file.    NPlot&lt;br /&gt;
Error   2   Cryptographic failure while signing assembly 'C:\Users\xxx\Documents\Visual Studio 2010\Projects\nplot-0.9.10.0\obj\Debug\NPlot.dll' -- 'Error reading key file 'NPlot-key.snk' -- The system cannot find the file specified. ' NPlot&lt;br /&gt;
Warning 4   'NPlot.Windows.PlotSurface2D.Padding' hides inherited member 'System.Windows.Forms.Control.Padding'. Use the new keyword if hiding was intended.    C:\Users\xxx\Documents\Visual Studio 2010\Projects\nplot-0.9.10.0\src\Windows.PlotSurface2D.cs  447 14  NPlot&lt;/p&gt;
&lt;p&gt;I am not sure how to fix any of these errors. :-/&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Bernhard Ege</dc:creator><pubDate>Tue, 20 Mar 2012 13:26:22 -0000</pubDate><guid>https://sourceforge.netfab11387329988416a04324562a33198c4c9cd9f</guid></item><item><title>VerticalMultiGuideline </title><link>https://sourceforge.net/p/nplot/bugs/43/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;The NPlot documentation page has a reference to 'VerticalMultiGuideline' which is supposedly introduced to coordinate vertical guidlines across multiple plot surfaces. However, I cannot seem to find this in the 0.9.10 binaries. Can someone help me where VerticalMultiGuideline is implemented?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Arvind</dc:creator><pubDate>Sun, 21 Aug 2011 05:03:09 -0000</pubDate><guid>https://sourceforge.net902c4ad3921a0bc99b8f0845e1cc3448cee4a420</guid></item><item><title>windows forms c# tutorial has been hijacked</title><link>https://sourceforge.net/p/nplot/bugs/42/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Looks like someone is using the wiki as a way to spam.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Sun, 19 Sep 2010 19:52:33 -0000</pubDate><guid>https://sourceforge.netc4f0bc1a813275a0627d363ee9258d4b7c67cbfd</guid></item><item><title>VS2010 removes reference to Nplot, then errors:</title><link>https://sourceforge.net/p/nplot/bugs/41/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;VS2010 removes reference to Nplot, then errors:&lt;br /&gt;
1. the namespace name Nplot could not be found&lt;br /&gt;
2. The referenced assembly 'Nplot' could not be resolved because it has a dependency on 'System.Design&lt;br /&gt;
Version 4.0.0.0, ... ' which is not in the current targeted framework .NETFramework 4.0, ...&lt;/p&gt;
&lt;p&gt;To reproduce this&lt;br /&gt;
1. start a new (c#) project&lt;br /&gt;
2. Add a Plotsurface to the toolbox (not really necessary)&lt;br /&gt;
3. add reference to NPlot in solution explorer (right-click, browse for Nplot dll)&lt;br /&gt;
4. add 'using NPlot;' at top of code&lt;br /&gt;
5. start typing some npolt code (say after InitializeComponent();): PlotSurface2D ps2d = new PlotSurface2D();&lt;br /&gt;
6. Note that intellisense knows about the Nplot items&lt;br /&gt;
7. Compile code and get error.&lt;br /&gt;
8.Look at code - PlotSurface2D ps2d = new PlotSurface2D(); is now an error.&lt;/p&gt;
&lt;p&gt;Further&lt;br /&gt;
double click Nplot in Solution Explorer to display Object Browser. Nplot is missing.&lt;br /&gt;
Remove Nplot from references and add again. Nplot appears in Object Browser.&lt;br /&gt;
Compile program and Hey Presto! Nplot is gone.&lt;/p&gt;
&lt;p&gt;Should there be a different nplot.dll for VS2010?&lt;br /&gt;
How do I target VS2010 for a different .NET framework?&lt;/p&gt;
&lt;p&gt;Regards and thanks&lt;/p&gt;
&lt;p&gt;John Allwork&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Allwork</dc:creator><pubDate>Mon, 28 Jun 2010 17:22:07 -0000</pubDate><guid>https://sourceforge.netc7a826ac9dde9b81fe440802df1e04c0fb483e2e</guid></item><item><title>Export to Bitmap / Printer</title><link>https://sourceforge.net/p/nplot/bugs/40/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I have a problem when I export Plotsorfaces to Bitmap:&lt;br /&gt;
the text on the axis is very blurred, and the lines and bars on the plot look very fuzzy, compared to the &lt;br /&gt;
same plot against the sceen. Attached is a PDF with lots of charts, all of them look much better on the&lt;br /&gt;
screen. &lt;/p&gt;
&lt;p&gt;This is the code (in fragments) I use: &lt;/p&gt;
&lt;p&gt;NPlot.Bitmap.PlotSurface2D plotSurfaceBitmap = new NPlot.Bitmap.PlotSurface2D (width, height);&lt;br /&gt;
Draw_Chart (plotSurfaceBitmap,width,height);&lt;br /&gt;
plotSurfaceBitmap.BackColor = Color.White; // Color Outside the plot.&lt;br /&gt;
plotSurfaceBitmap.Refresh ();&lt;br /&gt;
Bitmap bitmap = plotSurfaceBitmap.Bitmap;&lt;/p&gt;
&lt;p&gt;The Bitmap gets saved and printed.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 03 Jun 2010 12:55:33 -0000</pubDate><guid>https://sourceforge.net7b0cebb3406daab73c2e1b900d74822c59c330f5</guid></item><item><title>cookieless</title><link>https://sourceforge.net/p/nplot/bugs/39/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;In the web.config of ASP Web Applicaion project, if I set &amp;lt;sessionState cookieless="true" /&amp;gt;, then NPlot.Web.PlotSurface2D just show a red "X" on the page. &lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Tue, 22 Dec 2009 18:00:13 -0000</pubDate><guid>https://sourceforge.netb786aca4682aa09b569ba3ec78c8bfc6994bf02b</guid></item><item><title>.Refresh().method crashes - Still crashes</title><link>https://sourceforge.net/p/nplot/bugs/38/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I would like to continue my latest thread, which was closed. It can be found with this link:&lt;br /&gt;
&lt;a href="http://sourceforge.net/tracker/?func=detail&amp;amp;aid=2915404&amp;amp;group_id=161868&amp;amp;atid=821568"&gt;http://sourceforge.net/tracker/?func=detail&amp;amp;aid=2915404&amp;amp;group_id=161868&amp;amp;atid=821568&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Thanks Jamcquay for your response, but your code didn't work. Have you any other suggestion how I shall solve this?&lt;/p&gt;
&lt;p&gt;Here is my current code with your code response.&lt;/p&gt;
&lt;p&gt;// Generate data samples each second&lt;br /&gt;
void runTimeLogger_Tick(object sender, EventArgs e)&lt;br /&gt;
{&lt;br /&gt;
xAxis.Add(counter++);                               // Generate a data sample to the X-axis&lt;br /&gt;
yAxis.Add((1.5 + Math.Sin((double)counter * 0.2))); // Generate a data sample to the Y-axis - This will create a sine-curve for the Y-axis&lt;br /&gt;
this.Invoke(new MethodInvoker(delegate() { UpdateGraph(); })); &lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;// Update the display of the Nplot-graph&lt;br /&gt;
private void UpdateGraph()&lt;br /&gt;
{&lt;br /&gt;
Grid grid = new NPlot.Grid();&lt;br /&gt;
grid.VerticalGridType = Grid.GridType.Coarse;&lt;br /&gt;
grid.HorizontalGridType = Grid.GridType.Coarse;&lt;br /&gt;
grid.MajorGridPen = new Pen(Color.LightGray, 1.0f);&lt;/p&gt;
&lt;p&gt;plotGraph.Add(grid);&lt;br /&gt;
StepPlot stepPlot = new StepPlot();&lt;br /&gt;
stepPlot.Pen = new Pen(Color.Red, 2);&lt;/p&gt;
&lt;p&gt;stepPlot.AbscissaData = xAxis;&lt;br /&gt;
stepPlot.DataSource = yAxis;&lt;/p&gt;
&lt;p&gt;plotGraph.Add(stepPlot);&lt;br /&gt;
plotGraph.Refresh();            // This row causes the program to crash!!! (Argument Out Of Range Exception)&lt;br /&gt;
}&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 17 Dec 2009 12:12:28 -0000</pubDate><guid>https://sourceforge.net655080ba3b7961c09ab4d753a2037fef69d076b9</guid></item><item><title>.Refresh().method crashes</title><link>https://sourceforge.net/p/nplot/bugs/37/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I'm working on a dynamic graph that shall display the value of a temperature or a level sensor in runtime.&lt;br /&gt;
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.&lt;/p&gt;
&lt;p&gt;But I'm having trouble with the .Refresh()-method. The method causes an Argument out of range exception to be thrown. The exception's message is  (translated from Swedish to English):&lt;/p&gt;
&lt;p&gt;"Index was outside the range. It may not be negative and must be less than the crowd size. Parameter name: index"&lt;/p&gt;
&lt;p&gt;If I debug the program with a breakpoint on the .Refresh()-method instruction and press the "step into"-button the program doesn't not crash! I can then remove the breakpoint and run the program in run-mode instead with no crashes. If I just run the program without the breakpoint, it will crash.&lt;/p&gt;
&lt;p&gt;This is very strange and I can't understand why this is happening. I'll attach my entire Windows Form Application as a .RAR-file&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Wed, 16 Dec 2009 09:10:08 -0000</pubDate><guid>https://sourceforge.net407517a40c8df65ab37ec91c933fbdfe0a8765f0</guid></item><item><title>DateTimeAxis LargeTickStep Issue</title><link>https://sourceforge.net/p/nplot/bugs/36/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;First, thanks for creating such a wonderful library!  It has simplified my life a million times over.&lt;/p&gt;
&lt;p&gt;Second, I am having an issue with the LargeTickStep property of a DateTimeAxis when used in C#.  If I set it to anything (other than new TimeSpan(0)) I lose my axis ticks &amp;amp; axis value labels and my axis label is moved above the axis (it is shown under when LargeTickStep is 0).  A couple of lines of code:&lt;/p&gt;
&lt;p&gt;NPlot.DateTimeAxis xAx1 = new NPlot.DateTimeAxis(lstDates[0], lstDates[lstDates.Count - 1]);&lt;br /&gt;
xAx1.LargeTickStep = new TimeSpan(10,0,0,0);&lt;br /&gt;
xAx1.TicksLabelAngle = 90.0f;&lt;br /&gt;
xAx1.TickTextNextToAxis = false;&lt;br /&gt;
xAx1.FlipTicksLabel = true;&lt;br /&gt;
graphfrm.m_psGraph.XAxis1 = xAx1;&lt;/p&gt;
&lt;p&gt;Thanks for your consideration and thanks again for such a great library.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 19 Nov 2009 21:50:55 -0000</pubDate><guid>https://sourceforge.netcb202a4449a6f49071b4ca6dd47c4f166d77d2f8</guid></item></channel></rss>