Ejemplo n.º 1
0
 /// <summary>
 /// Constructs a data source with the provided source details and delegate for acquiring data.
 /// </summary>
 public SummaryDataSource(string name, int yAxis, Color color, GetDataPointArrayDelegate getPointArrayDelegate)
 {
     _name  = name;
     _yAxis = yAxis;
     _color = color;
     _getPointArrayDelegate = getPointArrayDelegate;
 }
 /// <summary>
 /// Constructs a data source with the provided source details and delegate for acquiring data.
 /// </summary>
 public SummaryDataSource(string name, int yAxis, Color color, GetDataPointArrayDelegate getPointArrayDelegate)
 {
     _name = name;
     _yAxis = yAxis;
     _color = color;
     _getPointArrayDelegate = getPointArrayDelegate;
 }