/// <summary>
 /// Constructs a data source with the provided source details and delegate for acquiring data.
 /// </summary>
 public TimeSeriesDataSource(string name, int historyLength, int yAxis, Color color, GetPointDelegate getPointDelegate)
 {
     _name = name;
     _historyLength = historyLength;
     _yAxis = yAxis;
     _color = color;
     _getPointDelegate = getPointDelegate;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Constructs a data source with the provided source details and delegate for acquiring data.
 /// </summary>
 public TimeSeriesDataSource(string name, int historyLength, int yAxis, Color color, GetPointDelegate getPointDelegate)
 {
     _name             = name;
     _historyLength    = historyLength;
     _yAxis            = yAxis;
     _color            = color;
     _getPointDelegate = getPointDelegate;
 }