public ChartCurve(SolidColorBrush color, Point[] points, ChartLineType type, string legendString)
 {
     this.color  = color;
     this.points = points;
     this.clt    = type;
     this.legend = legendString;
 }
 public ChartCurve(SolidColorBrush color, Point[] points, ChartLineType type, string legendString)
 {
     this.color = color;
     this.points = points;
     this.clt = type;
     this.legend = legendString;
 }
 public ChartRequestInfo(SolidColorBrush color, ObservableCollection <double> data, ChartLineType clt, string legendString)
 {
     this.color         = color;
     this.data          = data;
     this.chartLineType = clt;
     this.legend        = legendString;
 }
 public ChartRequestInfo(SolidColorBrush color, ObservableCollection<double> data, ChartLineType clt, string legendString)
 {
     this.color = color;
     this.data = data;
     this.chartLineType = clt;
     this.legend = legendString;
 }