You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(9) |
Nov
(24) |
Dec
(19) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(22) |
Feb
(5) |
Mar
(10) |
Apr
(12) |
May
(6) |
Jun
(3) |
Jul
(6) |
Aug
(7) |
Sep
(1) |
Oct
(3) |
Nov
(4) |
Dec
(1) |
2008 |
Jan
|
Feb
(4) |
Mar
(6) |
Apr
(10) |
May
(2) |
Jun
(4) |
Jul
(15) |
Aug
(11) |
Sep
(3) |
Oct
|
Nov
(9) |
Dec
(11) |
2009 |
Jan
(6) |
Feb
(9) |
Mar
(24) |
Apr
(4) |
May
(7) |
Jun
(1) |
Jul
|
Aug
|
Sep
(3) |
Oct
(1) |
Nov
(1) |
Dec
(10) |
2010 |
Jan
(1) |
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
(8) |
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(2) |
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
(6) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
(1) |
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <an...@us...> - 2006-12-28 09:32:49
|
Revision: 17 http://svn.sourceforge.net/nplot/?rev=17&view=rev Author: anmar Date: 2006-12-28 01:32:48 -0800 (Thu, 28 Dec 2006) Log Message: ----------- Fixed [SF bug 1622918] Padding is a new property for System.Windows.Forms.Control in .NET 2.0 so NPlot.Windows.PlotSurface2D was hiding it. It has been renamed to SurfacePadding and kept as an obsolete property for .NET 1.1 builds for backwards compatibility. * [src/IPlotSurface2D.cs] Rename Padding to SurfacePadding * [src/PlotSurface2D.cs] Rename Padding to SurfacePadding and make Padding an obsolete alias to SurfacePadding that is only compiled for .NET 1.1 * [src/Bitmap.PlotSurface2D.cs] Rename Padding to SurfacePadding and make Padding an obsolete alias to SurfacePadding that is only compiled for .NET 1.1 * [src/Web.PlotSurface2D.cs] Rename Padding to SurfacePadding and make Padding an obsolete alias to SurfacePadding that is only compiled for .NET 1.1 * [src/Windows.PlotSurface2D.cs] Rename Padding to SurfacePadding and make Padding an obsolete alias to SurfacePadding that is only compiled for .NET 1.1 Signed off by: anmar Modified Paths: -------------- trunk/src/Bitmap.PlotSurface2D.cs trunk/src/IPlotSurface2D.cs trunk/src/PlotSurface2D.cs trunk/src/Web.PlotSurface2D.cs trunk/src/Windows.PlotSurface2D.cs Modified: trunk/src/Bitmap.PlotSurface2D.cs =================================================================== --- trunk/src/Bitmap.PlotSurface2D.cs 2006-12-28 09:14:03 UTC (rev 16) +++ trunk/src/Bitmap.PlotSurface2D.cs 2006-12-28 09:32:48 UTC (rev 17) @@ -168,21 +168,38 @@ ps_.TitleFont = value; } } - - +#if API_1_1 /// <summary> + /// It has been renamed to <see cref="SurfacePadding" /> and can be used with .NET 1.1 only. + /// </summary> + [ + Obsolete("This property is only maintained in .NET 1.1 profile for compatibility, but it might be removed in the future. Use SurfacePadding instead") + ] + public int Padding + { + get + { + return SurfacePadding; + } + set + { + SurfacePadding = value; + } + } +#endif + /// <summary> /// The distance in pixels to leave between of the edge of the bounding rectangle /// supplied to the Draw method, and the markings that make up the plot. /// </summary> - public int Padding + public int SurfacePadding { get { - return ps_.Padding; + return ps_.SurfacePadding; } set { - ps_.Padding = value; + ps_.SurfacePadding = value; } } Modified: trunk/src/IPlotSurface2D.cs =================================================================== --- trunk/src/IPlotSurface2D.cs 2006-12-28 09:14:03 UTC (rev 16) +++ trunk/src/IPlotSurface2D.cs 2006-12-28 09:32:48 UTC (rev 17) @@ -102,7 +102,7 @@ /// The distance in pixels to leave between of the edge of the bounding rectangle /// supplied to the Draw method, and the markings that make up the plot. /// </summary> - int Padding { get; set; } + int SurfacePadding { get; set; } /// <summary> Modified: trunk/src/PlotSurface2D.cs =================================================================== --- trunk/src/PlotSurface2D.cs 2006-12-28 09:14:03 UTC (rev 16) +++ trunk/src/PlotSurface2D.cs 2006-12-28 09:32:48 UTC (rev 17) @@ -333,12 +333,30 @@ } } - +#if API_1_1 /// <summary> + /// It has been renamed to <see cref="SurfacePadding" /> and can be used with .NET 1.1 only. + /// </summary> + [ + Obsolete("This property is only maintained in .NET 1.1 profile for compatibility, but it might be removed in the future. Use SurfacePadding instead") + ] + public int Padding + { + get + { + return SurfacePadding; + } + set + { + SurfacePadding = value; + } + } +#endif + /// <summary> /// The distance in pixels to leave between of the edge of the bounding rectangle /// supplied to the Draw method, and the markings that make up the plot. /// </summary> - public int Padding + public int SurfacePadding { get { Modified: trunk/src/Web.PlotSurface2D.cs =================================================================== --- trunk/src/Web.PlotSurface2D.cs 2006-12-28 09:14:03 UTC (rev 16) +++ trunk/src/Web.PlotSurface2D.cs 2006-12-28 09:32:48 UTC (rev 17) @@ -192,8 +192,29 @@ } } - +#if API_1_1 /// <summary> + /// It has been renamed to <see cref="SurfacePadding" /> and can be used with .NET 1.1 only. + /// </summary> + [ + Browsable(true), + Category("Data"), + Bindable(true), + Obsolete("This property is only maintained in .NET 1.1 profile for compatibility, but it might be removed in the future. Use SurfacePadding instead") + ] + public int Padding + { + get + { + return SurfacePadding; + } + set + { + SurfacePadding = value; + } + } +#endif + /// <summary> /// The distance in pixels to leave between of the edge of the bounding rectangle /// supplied to the Draw method, and the markings that make up the plot. /// </summary> @@ -202,15 +223,15 @@ Category("Data"), Bindable(true) ] - public int Padding + public int SurfacePadding { get { - return ps_.Padding; + return ps_.SurfacePadding; } set { - ps_.Padding = value; + ps_.SurfacePadding = value; } } Modified: trunk/src/Windows.PlotSurface2D.cs =================================================================== --- trunk/src/Windows.PlotSurface2D.cs 2006-12-28 09:14:03 UTC (rev 16) +++ trunk/src/Windows.PlotSurface2D.cs 2006-12-28 09:32:48 UTC (rev 17) @@ -434,8 +434,30 @@ } } - +#if API_1_1 /// <summary> + /// It has been renamed to <see cref="SurfacePadding" /> and can be used with .NET 1.1 only. + /// </summary> + [ + Category("PlotSurface2D"), + Description("See SurfacePadding."), + Browsable(true), + Bindable(true), + Obsolete("This property is only maintained in .NET 1.1 profile for compatibility, but it might be removed in the future. Use SurfacePadding instead") + ] + public int Padding + { + get + { + return SurfacePadding; + } + set + { + SurfacePadding = value; + } + } +#endif + /// <summary> /// Padding of this width will be left between what is drawn and the control border. /// </summary> [ @@ -444,19 +466,18 @@ Browsable(true), Bindable(true) ] - public int Padding + public int SurfacePadding { get { - return ps_.Padding; + return ps_.SurfacePadding; } set { - ps_.Padding = value; + ps_.SurfacePadding = value; } } - /// <summary> /// The first abscissa axis. /// </summary> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <an...@us...> - 2006-12-28 09:14:04
|
Revision: 16 http://svn.sourceforge.net/nplot/?rev=16&view=rev Author: anmar Date: 2006-12-28 01:14:03 -0800 (Thu, 28 Dec 2006) Log Message: ----------- Version number set to 0.9.10.1 Modified Paths: -------------- trunk/src/AssemblyInfo.cs Modified: trunk/src/AssemblyInfo.cs =================================================================== --- trunk/src/AssemblyInfo.cs 2006-12-27 08:24:37 UTC (rev 15) +++ trunk/src/AssemblyInfo.cs 2006-12-28 09:14:03 UTC (rev 16) @@ -41,7 +41,7 @@ [assembly: AssemblyCopyright("Copyright (C) 2003-2006 Matt Howlett and others")] [assembly: AssemblyTrademark("This program is under The BSD license")] [assembly: AssemblyCulture("")] -[assembly: AssemblyVersion("0.9.10.0")] +[assembly: AssemblyVersion("0.9.10.1")] [assembly: CLSCompliant(true)] [assembly: AssemblyKeyFile(@"NPlot-key.snk")] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: SourceForge.net <no...@so...> - 2006-12-28 08:31:16
|
Bugs item #1622918, was opened at 2006-12-27 15:10 Message generated for change (Settings changed) made by anmar You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821568&aid=1622918&group_id=161868 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Pawel Konieczny (konieczp) >Assigned to: Angel Marin (anmar) Summary: Windows.PlotSurface2D.Padding hiddes Control.Padding Initial Comment: Windows.PlotSurface2D.Padding hides a property in the base class of the same name. Control.Padding is new in .NET 2.0 so it was not an issue with .NET 1.1. To avoid mistakes when NPlot is used with .NET 2.0 libraries, I propose to rename Windows.PlotSurface2D.Padding to something else (e.g. to Windows.PlotSurface2D.SurfacePadding). Paweł ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821568&aid=1622918&group_id=161868 |
From: SourceForge.net <no...@so...> - 2006-12-27 14:10:55
|
Bugs item #1622918, was opened at 2006-12-27 15:10 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821568&aid=1622918&group_id=161868 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Pawel Konieczny (konieczp) Assigned to: Nobody/Anonymous (nobody) Summary: Windows.PlotSurface2D.Padding hiddes Control.Padding Initial Comment: Windows.PlotSurface2D.Padding hides a property in the base class of the same name. Control.Padding is new in .NET 2.0 so it was not an issue with .NET 1.1. To avoid mistakes when NPlot is used with .NET 2.0 libraries, I propose to rename Windows.PlotSurface2D.Padding to something else (e.g. to Windows.PlotSurface2D.SurfacePadding). Paweł ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821568&aid=1622918&group_id=161868 |
From: SourceForge.net <no...@so...> - 2006-12-27 13:58:52
|
Patches item #1622909, was opened at 2006-12-27 14:58 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821570&aid=1622909&group_id=161868 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Pawel Konieczny (konieczp) Assigned to: Nobody/Anonymous (nobody) Summary: Various Bugfixes and improvements for Windwos.PlotSurface2d Initial Comment: Here are various bugfixes and improvements for Windows.PlotSurface2D control, patch against version 0.9.10.0. Note: although the code should not contain any .NET 2.0 specifics, I have tested it only in the .NET 2.0 context. //Pawel ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821570&aid=1622909&group_id=161868 |
From: <an...@us...> - 2006-12-27 08:24:36
|
Revision: 15 http://svn.sourceforge.net/nplot/?rev=15&view=rev Author: anmar Date: 2006-12-27 00:24:37 -0800 (Wed, 27 Dec 2006) Log Message: ----------- VS project file now works under VS2005 without having MSBee installed (though it won't be able to target .NET 1.1 then) Modified Paths: -------------- trunk/NPlot.csproj Modified: trunk/NPlot.csproj =================================================================== --- trunk/NPlot.csproj 2006-11-14 19:11:34 UTC (rev 14) +++ trunk/NPlot.csproj 2006-12-27 08:24:37 UTC (rev 15) @@ -239,6 +239,6 @@ <Content Include="license.txt" /> </ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" Condition="'$(SharpDevelopBinPath)'==''" /> - <Import Project="$(MSBuildExtensionsPath)\MSBee\MSBuildExtras.FX1_1.CSharp.targets" Condition="'$(SharpDevelopBinPath)'=='' AND '$(TargetFrameworkVersion)'=='v1.1'" /> + <Import Project="$(MSBuildExtensionsPath)\MSBee\MSBuildExtras.FX1_1.CSharp.targets" Condition="'$(SharpDevelopBinPath)'=='' AND '$(TargetFrameworkVersion)'=='v1.1' and Exists('$(MSBuildExtensionsPath)\MSBee\MSBuildExtras.FX1_1.CSharp.targets')" /> <Import Project="$(SharpDevelopBinPath)\SharpDevelop.Build.CSharp.targets" Condition="'$(SharpDevelopBinPath)'!=''" /> </Project> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: SourceForge.net <no...@so...> - 2006-12-27 08:08:29
|
Feature Requests item #1622689, was opened at 2006-12-27 03:34 Message generated for change (Comment added) made by anmar You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821571&aid=1622689&group_id=161868 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Priority: 5 Private: No Submitted By: Pawel Konieczny (konieczp) Assigned to: Nobody/Anonymous (nobody) Summary: NPlot supporting .NET 2.0 Initial Comment: Regretfully, the latest release of NPlot (0.9.10.0) cannot be compiled for .NET 2.0 (at least, not "out of the box"), although version 0.9.2.0 could be compiled OK. It would be good to: 1. At least make NPlot to be able to be compiled in both .NET 1.1 and 2.0 as it was before. 2. Start developing for .NET 2.0 (a branch?, add-on project?...) I have numerous patches in my outbox with performance and usability improvements (like new interactors and plot types) but they are .NET 2.0 specific. //Pawel ---------------------------------------------------------------------- >Comment By: Angel Marin (anmar) Date: 2006-12-27 09:08 Message: Logged In: YES user_id=627967 Originator: NO It compiles for .NET 2.0 without problems here, the distribution zip contains 2.0 binaries under 'bin/net/2.0/' folder. What errors are you getting?, which of the supported compile methods are you using? With nant if would be: 'nant t:net-2.0 release' ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821571&aid=1622689&group_id=161868 |
From: SourceForge.net <no...@so...> - 2006-12-27 02:34:33
|
Feature Requests item #1622689, was opened at 2006-12-27 03:34 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821571&aid=1622689&group_id=161868 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Priority: 5 Private: No Submitted By: Pawel Konieczny (konieczp) Assigned to: Nobody/Anonymous (nobody) Summary: NPlot supporting .NET 2.0 Initial Comment: Regretfully, the latest release of NPlot (0.9.10.0) cannot be compiled for .NET 2.0 (at least, not "out of the box"), although version 0.9.2.0 could be compiled OK. It would be good to: 1. At least make NPlot to be able to be compiled in both .NET 1.1 and 2.0 as it was before. 2. Start developing for .NET 2.0 (a branch?, add-on project?...) I have numerous patches in my outbox with performance and usability improvements (like new interactors and plot types) but they are .NET 2.0 specific. //Pawel ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821571&aid=1622689&group_id=161868 |
From: SourceForge.net <no...@so...> - 2006-12-27 02:31:56
|
Patches item #1622687, was opened at 2006-12-27 03:31 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821570&aid=1622687&group_id=161868 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Pawel Konieczny (konieczp) Assigned to: Nobody/Anonymous (nobody) Summary: Bugfix for optimized draw of LinePlot and StepPlot Initial Comment: On large zoom levels it may happen that one part of the points is behind the left edge of the plot area while the rest is behind the right edge. Still the line between two points closest to the left and right edge should be drawn as it could fall within the viewport of the plot area. Currently, the line simply disappears. This patch was originally generated against 0.9.2.0, but should be applicable to 0.9.10.0 //Pawel ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821570&aid=1622687&group_id=161868 |
From: SourceForge.net <no...@so...> - 2006-12-20 02:51:42
|
Feature Requests item #1619190, was opened at 2006-12-19 18:51 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821571&aid=1619190&group_id=161868 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: ViewState in ASP.net Initial Comment: Hello, When a page is refreshed on asp.net (postback), the charts disappear if we don't do again the assigment of the source ... It would be nice to have something working like the viewstate that keeps a "memory" of the component (maybe if it's converted in a picture) because the creation of the source is quite long on my project and eveytime we click somewhere (on other components that make a postback of the page),it takes a long time to show ... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821571&aid=1619190&group_id=161868 |
From: Angel M. <an...@an...> - 2006-12-17 17:31:09
|
Johan Flodin escribió: > I'm trying to save the plot to a Metafile (.emf) > There is no problem to send the plot to the printer or a BMP, > nut when I make a .emf file it works but looks like a BMP version of a > Metafile. > I use the Draw method. Is there a easy way to make a nice .emf file? plotsurface.Bitmap.Save(stream, System.Drawing.Imaging.ImageFormat.Emf) should save a metafile. Regards, -- Angel Marin http://anmar.eu.org/ |
From: Angel M. <an...@an...> - 2006-12-17 17:24:41
|
Edward B. Phillips escribió: > Can someone send me an examples or modification to the code below to show > how to place Major and Minor Grids lines on a Log-Log plot. > I can get Major, but the minors are not showing up. HorizontalGridType and VerticalGridType grid properties might be what you're looking for. > Also how to get the format of the numbers on the major ticks to be > in 0.0E+00 format. Set the NumberFormat axis property to {0:e2}. Have a look at http://msdn2.microsoft.com/en-us/library/dwhawy9k.aspx and http://msdn2.microsoft.com/en-us/library/0c899ak8.aspx for information about number format strings. > One last item the last number on the x-axis labels is being cut-off a > little how do I fix this. Don't know without a test case that shows that behavior. > PlotSurface2D1.XAxis1.Label = "X-Axis" > PlotSurface2D1.YAxis1.Label = "Y-Axis" You're loosing this as you're then changing the axis instance: > PlotSurface2D1.XAxis1 = lx > PlotSurface2D1.YAxis1 = ly Regards, -- Angel Marin http://anmar.eu.org/ |
From: Edward B. P. <phi...@ho...> - 2006-12-14 21:07:09
|
Can someone send me an examples or modification to the code below to show how to place Major and Minor Grids lines on a Log-Log plot. I can get Major, but the minors are not showing up. Also how to get the format of the numbers on the major ticks to be in 0.0E+00 format. One last item the last number on the x-axis labels is being cut-off a little how do I fix this. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim lx As NPlot.Axis = New NPlot.LogAxis Dim ly As NPlot.Axis = New NPlot.LogAxis Dim gxmj As NPlot.Grid = New NPlot.Grid Dim gymj As NPlot.Grid = New NPlot.Grid Dim gxmn As NPlot.Grid = New NPlot.Grid Dim gymn As NPlot.Grid = New NPlot.Grid Dim lp As NPlot.LinePlot = New NPlot.LinePlot Dim pp As NPlot.PointPlot = New NPlot.PointPlot Dim XDAT As ArrayList = New ArrayList Dim YDAT As ArrayList = New ArrayList XDAT.Clear() YDAT.Clear() PlotSurface2D1.Clear() PlotSurface2D1.Title = "2D PLOT" PlotSurface2D1.BackColor = Color.Empty Dim x As Integer For x = 1 To 20 XDAT.Add(x) YDAT.Add(x) Next '***LINE-TYPE-PLOT**** lp.AbscissaData = XDAT lp.DataSource = YDAT PlotSurface2D1.Add(lp) lp.Color = Color.Blue '***POINT-TYPE-PLOT**** pp.AbscissaData = XDAT pp.DataSource = YDAT PlotSurface2D1.Add(pp) ' 'Set Axis Range lx.WorldMax = 2000.0 lx.WorldMin = 20.0 ly.WorldMax = 0.1 ly.WorldMin = 0.000001 'Set Labels to Outside of Tick Marks lx.TickTextNextToAxis = False ly.TickTextNextToAxis = True 'Set Major and Minor Grids Graph gxmj.MajorGridPen = Pens.Black PlotSurface2D1.Add(gxmj) gxmn.MinorGridPen = Pens.Maroon PlotSurface2D1.Add(gxmn) gymj.MajorGridPen = Pens.Black PlotSurface2D1.Add(gymj) gymn.MinorGridPen = Pens.Maroon PlotSurface2D1.Add(gymn) 'Set Labels of Graph PlotSurface2D1.XAxis1.Label = "X-Axis" PlotSurface2D1.YAxis1.Label = "Y-Axis" ' Graph Data PlotSurface2D1.XAxis1 = lx PlotSurface2D1.YAxis1 = ly ' Force Graph area update PlotSurface2D1.Refresh() end sub <mailto:edw...@na...> |
From: SourceForge.net <no...@so...> - 2006-12-14 12:10:55
|
Feature Requests item #1615673, was opened at 2006-12-14 04:10 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821571&aid=1615673&group_id=161868 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: General Group: None Status: Open Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Inverse Log Axes Initial Comment: I was wondering if you guys could add axes that are of inverse log? i.e. Top of axial represents -> 0. This would be nice since plotting p-values you want the significant values higher up and p-values -> 0 the more important they are. Thank you. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821571&aid=1615673&group_id=161868 |
From: SourceForge.net <no...@so...> - 2006-12-12 10:22:11
|
Bugs item #1613829, was opened at 2006-12-12 11:14 Message generated for change (Comment added) made by anmar You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821568&aid=1613829&group_id=161868 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Closed >Resolution: Invalid Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Display Graph dynamically with user control Initial Comment: I am trying display graph in c# dynamically on user control(windows.plotsurface2d) using object tag. i am getting data from sqlserver2000 database,but it is giving an error: Request for the permission of type System.Data.SqlClient.SqlClientPermission, System.Data, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 failed." i am providing the datasource,abscissa data ,odinate data. when i provide lp.datasource=new int[] {1,2,3,4,5}, it is working fine. can you also help me out on how to display corresponding datapoints on labels while moving the mouse on the graph(when vertical guide line is moving) (i am using nplot version 0.9.10.0) Thanks&Regards, bskvarmaa email address: bsk...@ya... ---------------------------------------------------------------------- >Comment By: Angel Marin (anmar) Date: 2006-12-12 11:22 Message: Logged In: YES user_id=627967 Originator: NO Your code is failing on the database query, it has nothing to do with NPlot. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821568&aid=1613829&group_id=161868 |
From: SourceForge.net <no...@so...> - 2006-12-12 10:14:39
|
Bugs item #1613829, was opened at 2006-12-12 02:14 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821568&aid=1613829&group_id=161868 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Display Graph dynamically with user control Initial Comment: I am trying display graph in c# dynamically on user control(windows.plotsurface2d) using object tag. i am getting data from sqlserver2000 database,but it is giving an error: Request for the permission of type System.Data.SqlClient.SqlClientPermission, System.Data, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 failed." i am providing the datasource,abscissa data ,odinate data. when i provide lp.datasource=new int[] {1,2,3,4,5}, it is working fine. can you also help me out on how to display corresponding datapoints on labels while moving the mouse on the graph(when vertical guide line is moving) (i am using nplot version 0.9.10.0) Thanks&Regards, bskvarmaa email address: bsk...@ya... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821568&aid=1613829&group_id=161868 |
From: Johan F. <fl...@kt...> - 2006-12-09 22:50:29
|
I'm trying to save the plot to a Metafile (.emf) There is no problem to send the plot to the printer or a BMP, nut when I make a .emf file it works but looks like a BMP version of a Metafile. I use the Draw method. Is there a easy way to make a nice .emf file? |
From: SourceForge.net <no...@so...> - 2006-12-07 12:09:30
|
Bugs item #1610746, was opened at 2006-12-07 04:09 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821568&aid=1610746&group_id=161868 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: General Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Display DataPoints on Labels Initial Comment: Can i display datapoints(database values) in labels when a vertical guide line is moved along the graph with reference to TextItem class or is there any alternative way to do this. In the text item class to display text: PointD pd=new PointD(x,y); TextItem ti=new TextItem(pd,"Welcome"); ti.TextColor=Color.Red; ps_.Add(ti); (using the above code not able to display anything on the graph) I am using NPlot-0.9.10.0 email address: bsk...@ya... Thanks, Varma ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821568&aid=1610746&group_id=161868 |
From: SourceForge.net <no...@so...> - 2006-11-24 06:42:06
|
Bugs item #1601158, was opened at 2006-11-22 14:02 Message generated for change (Settings changed) made by asynchron You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821568&aid=1601158&group_id=161868 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. >Category: General Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Juerg B (asynchron) >Assigned to: Jamie McQuay (jamcquay) Summary: RubberBandSelection works not well on V0.9.10.0 Initial Comment: Hello, the RubberBandSelection works correct: Make a RubberBandSelection between physical points, the result is not correct. The RubberBandSelection also works not well at two corners... Example: Chart form (X;Y) -10;-10 to 200;110 RubberBandSelection from 20;20 to -10;-10 don't work RubberBandSelection from 160;80 to 200;110 don't work Maybe a correction found on the BugNo: 1280620 Please see the attached screeshots and the demo code. thanks for a correction Juerg ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821568&aid=1601158&group_id=161868 |
From: SourceForge.net <no...@so...> - 2006-11-22 14:02:36
|
Bugs item #1601158, was opened at 2006-11-22 14:02 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821568&aid=1601158&group_id=161868 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Juerg B (asynchron) Assigned to: Nobody/Anonymous (nobody) Summary: RubberBandSelection works not well on V0.9.10.0 Initial Comment: Hello, the RubberBandSelection works correct: Make a RubberBandSelection between physical points, the result is not correct. The RubberBandSelection also works not well at two corners... Example: Chart form (X;Y) -10;-10 to 200;110 RubberBandSelection from 20;20 to -10;-10 don't work RubberBandSelection from 160;80 to 200;110 don't work Maybe a correction found on the BugNo: 1280620 Please see the attached screeshots and the demo code. thanks for a correction Juerg ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821568&aid=1601158&group_id=161868 |
From: SourceForge.net <no...@so...> - 2006-11-15 19:09:59
|
Feature Requests item #1597173, was opened at 2006-11-15 13:20 Message generated for change (Comment added) made by jamcquay You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821571&aid=1597173&group_id=161868 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Closed Priority: 5 Private: No Submitted By: Jacob Ilsø (jacobilsoe) Assigned to: Nobody/Anonymous (nobody) Summary: Migration from scpl Initial Comment: Hi. I didn't know where to write this, so I am writing it here. :-) Should all the stuff from the scpl-site not be migrated to nplot on sourceforge? Bugs, patches etc.? /Jacob ---------------------------------------------------------------------- >Comment By: Jamie McQuay (jamcquay) Date: 2006-11-15 14:09 Message: Logged In: YES user_id=613279 Originator: NO Hi Jacob, We will be going through the scpl site and merging over any bugs/patches that effect NPlot. Please note that the scpl project is not in sync with NPlot and we are not responsible for maintaining it. I'll likely look into this in the start of the new year. If you have further questions I'd suggest that you post them to the mailing list. Jamie ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821571&aid=1597173&group_id=161868 |
From: SourceForge.net <no...@so...> - 2006-11-15 18:20:16
|
Feature Requests item #1597173, was opened at 2006-11-15 18:20 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821571&aid=1597173&group_id=161868 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Priority: 5 Private: No Submitted By: Jacob Ilsø (jacobilsoe) Assigned to: Nobody/Anonymous (nobody) Summary: Migration from scpl Initial Comment: Hi. I didn't know where to write this, so I am writing it here. :-) Should all the stuff from the scpl-site not be migrated to nplot on sourceforge? Bugs, patches etc.? /Jacob ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821571&aid=1597173&group_id=161868 |
From: SourceForge.net <no...@so...> - 2006-11-14 23:08:34
|
Bugs item #1590992, was opened at 2006-11-05 21:46 Message generated for change (Comment added) made by anmar You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821568&aid=1590992&group_id=161868 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Closed Resolution: None Priority: 5 Private: No Submitted By: Jacob Ilsø (jacobilsoe) Assigned to: Angel Marin (anmar) Summary: Plotting a histogram with an empty dataset Initial Comment: Hi. Attempting to use a histogram with an empty dataset (empty array of doubles in my case), causes the following exception: Unhandled Exception: System.ArgumentOutOfRangeException: Argument is out of range. Parameter name: index at System.Array.System.Collections.IList.get_Item (Int32 index) [0x00000] at NPlot.AdapterUtils+DataGetter_IList.Get (Int32 i) [0x00000] at NPlot.SequenceAdapter.get_Item (Int32 i) [0x00000] at NPlot.HistogramPlot.SuggestXAxis () [0x00000] at NPlot.PlotSurface2D.UpdateAxes (Boolean recalculateAll) [0x00000] at NPlot.PlotSurface2D.Add (IDrawable p, XAxisPosition xp, YAxisPosition yp, Int32 zOrder) [0x00000] at NPlot.PlotSurface2D.Add (IDrawable p, Int32 zOrder) [0x00000] at NPlot.PlotSurface2D.Add (IDrawable p) [0x00000] /Jacob ---------------------------------------------------------------------- >Comment By: Angel Marin (anmar) Date: 2006-11-15 00:08 Message: Logged In: YES user_id=627967 Originator: NO Sorry, the GTK# part has not been merged yet so it's not part of nightlies nor regular releases. Anyway, last release (made a few hour ago) has the fix too, so you can avoid the nightly :) ---------------------------------------------------------------------- Comment By: Jacob Ilsø (jacobilsoe) Date: 2006-11-14 22:44 Message: Logged In: YES user_id=1430979 Originator: YES Thanks! Will have a look. Does the nightly build contain a Gtk# version as well? ---------------------------------------------------------------------- Comment By: Angel Marin (anmar) Date: 2006-11-13 22:41 Message: Logged In: YES user_id=627967 Fixed in r11. It'll be in tomorrows nightly (http://nplot.sourceforge.net/nightly/) if you want to give it a try. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821568&aid=1590992&group_id=161868 |
From: SourceForge.net <no...@so...> - 2006-11-14 21:44:58
|
Bugs item #1590992, was opened at 2006-11-05 20:46 Message generated for change (Comment added) made by jacobilsoe You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821568&aid=1590992&group_id=161868 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Closed Resolution: None Priority: 5 Private: No Submitted By: Jacob Ilsø (jacobilsoe) Assigned to: Angel Marin (anmar) Summary: Plotting a histogram with an empty dataset Initial Comment: Hi. Attempting to use a histogram with an empty dataset (empty array of doubles in my case), causes the following exception: Unhandled Exception: System.ArgumentOutOfRangeException: Argument is out of range. Parameter name: index at System.Array.System.Collections.IList.get_Item (Int32 index) [0x00000] at NPlot.AdapterUtils+DataGetter_IList.Get (Int32 i) [0x00000] at NPlot.SequenceAdapter.get_Item (Int32 i) [0x00000] at NPlot.HistogramPlot.SuggestXAxis () [0x00000] at NPlot.PlotSurface2D.UpdateAxes (Boolean recalculateAll) [0x00000] at NPlot.PlotSurface2D.Add (IDrawable p, XAxisPosition xp, YAxisPosition yp, Int32 zOrder) [0x00000] at NPlot.PlotSurface2D.Add (IDrawable p, Int32 zOrder) [0x00000] at NPlot.PlotSurface2D.Add (IDrawable p) [0x00000] /Jacob ---------------------------------------------------------------------- >Comment By: Jacob Ilsø (jacobilsoe) Date: 2006-11-14 21:44 Message: Logged In: YES user_id=1430979 Originator: YES Thanks! Will have a look. Does the nightly build contain a Gtk# version as well? ---------------------------------------------------------------------- Comment By: Angel Marin (anmar) Date: 2006-11-13 21:41 Message: Logged In: YES user_id=627967 Fixed in r11. It'll be in tomorrows nightly (http://nplot.sourceforge.net/nightly/) if you want to give it a try. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821568&aid=1590992&group_id=161868 |
From: <an...@us...> - 2006-11-14 19:11:38
|
Revision: 14 http://svn.sourceforge.net/nplot/?rev=14&view=rev Author: anmar Date: 2006-11-14 11:11:34 -0800 (Tue, 14 Nov 2006) Log Message: ----------- Tagged v0.9.10.0 release Added Paths: ----------- tags/nplot-0.9.10.0/ Copied: tags/nplot-0.9.10.0 (from rev 13, trunk) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |