public DataSeriesBox SetGraph(Action<GraphPane> pane) { if (this.InvokeRequired) { this.Invoke((Action)(() => SetGraph(pane))); return this; } pane(this.zedGraphControl.GraphPane); zedGraphControl.GraphPane.AxisChange(); return this; }