public void LoadLine(string Caption, Decimal[] Points)
 {
     PlotLine line = new PlotLine(Caption);
     line.Points = Points.Cast<object>().ToArray();
     this.acl.AddPlotLine(line);
 }