From: <jam...@us...> - 2007-01-10 21:26:40
|
Revision: 19 http://svn.sourceforge.net/nplot/?rev=19&view=rev Author: jamcquay Date: 2007-01-10 13:26:40 -0800 (Wed, 10 Jan 2007) Log Message: ----------- Updated property "Padding" to the new "SurfacePAdding" inorder to compile Modified Paths: -------------- trunk/demo/csharp/src/FinancialDemo.cs Modified: trunk/demo/csharp/src/FinancialDemo.cs =================================================================== --- trunk/demo/csharp/src/FinancialDemo.cs 2007-01-10 21:24:52 UTC (rev 18) +++ trunk/demo/csharp/src/FinancialDemo.cs 2007-01-10 21:26:40 UTC (rev 19) @@ -136,7 +136,7 @@ costPS.YAxis1.LabelOffset = 40; costPS.YAxis1.LabelOffsetAbsolute = true; costPS.XAxis1.HideTickText = true; - costPS.Padding = 5; + costPS.SurfacePadding = 5; costPS.AddInteraction(new NPlot.Windows.PlotSurface2D.Interactions.HorizontalDrag()); costPS.AddInteraction(new NPlot.Windows.PlotSurface2D.Interactions.VerticalDrag()); costPS.AddInteraction(new NPlot.Windows.PlotSurface2D.Interactions.AxisDrag(false)); @@ -149,12 +149,12 @@ pp.Marker.DropLine = true; pp.DataSource = dt; pp.AbscissaData = "Date"; - pp.OrdinateData = "Volume"; + pp.OrdinateData = "Volume"; volumePS.Add(pp); volumePS.YAxis1.Label = "Volume"; volumePS.YAxis1.LabelOffsetAbsolute = true; volumePS.YAxis1.LabelOffset = 40; - volumePS.Padding = 5; + volumePS.SurfacePadding = 5; volumePS.AddAxesConstraint(new AxesConstraint.AxisPosition(PlotSurface2D.YAxisPosition.Left, 60)); volumePS.AddInteraction(new NPlot.Windows.PlotSurface2D.Interactions.AxisDrag(false)); volumePS.AddInteraction(new NPlot.Windows.PlotSurface2D.Interactions.HorizontalDrag()); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |