public static void Draw(this GraphicForm form, IEnumerable <Graphic> ys)
 {
     form.Draw(null, ys);
 }
 public static void Draw(this GraphicForm form, IEnumerable <double> x, IEnumerable <Graphic> ys)
 {
     form.zedGraphControl1.Draw(form, x, ys);
 }