private void ShowGraph(PointControl[] plots) { GraphicViewer graphic = new GraphicViewer(); graphic.Plots = plots; graphic.Show(this); }
private void ShowGraph(PointControl plot) { GraphicViewer graphic = new GraphicViewer(); graphic.Name = plot.Name; graphic.Plots = new PointControl[] { plot }; graphic.Show(this); }