Esempio n. 1
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="yData">the ordinate data to associate with this plot.</param>
 /// <param name="xData">the abscissa data to associate with this plot.</param>
 public LinePlot(IList <double> yData, IList <double> xData)
 {
     YData      = yData;
     XData      = xData;
     m_lineData = new LineData(xData, yData);
 }
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="yData">the ordinate data to associate with this plot.</param>
 /// <param name="xData">the abscissa data to associate with this plot.</param>
 public LinePlot(IList<double> yData, IList<double> xData)
 {
     YData = yData;
     XData = xData;
     m_lineData = new LineData(xData, yData);
 }