[Quantproject-developers] QuantProject/b5_Presentation/Charting Chart.cs,1.4,1.5
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2005-03-29 15:03:35
|
Update of /cvsroot/quantproject/QuantProject/b5_Presentation/Charting In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31743/b5_Presentation/Charting Modified Files: Chart.cs Log Message: A new graphic library version has been used. Index: Chart.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b5_Presentation/Charting/Chart.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Chart.cs 20 Jan 2005 01:15:53 -0000 1.4 --- Chart.cs 29 Mar 2005 15:03:16 -0000 1.5 *************** *** 24,28 **** using System.Data; using System.Drawing; ! using scpl; using QuantProject.ADT.Histories; --- 24,29 ---- using System.Data; using System.Drawing; ! //using scpl; ! using NPlot; using QuantProject.ADT.Histories; *************** *** 33,37 **** /// the scpl library. All scpl dependent code must be written within this class. /// </summary> ! public class Chart : scpl.Windows.PlotSurface2D { private ArrayList chartPlots; --- 34,38 ---- /// the scpl library. All scpl dependent code must be written within this class. /// </summary> ! public class Chart : NPlot.Windows.PlotSurface2D { private ArrayList chartPlots; *************** *** 98,102 **** lp.DataSource = dataTable; lp.AbscissaData = "X"; ! lp.ValueData = "Y"; Pen p=new Pen( chartPlot.Color ); --- 99,104 ---- lp.DataSource = dataTable; lp.AbscissaData = "X"; ! // lp.ValueData = "Y"; ! lp.OrdinateData = "Y"; Pen p=new Pen( chartPlot.Color ); |