Ejemplo n.º 1
0
        private void ShowGraph(PointControl[] plots)
        {
            GraphicViewer graphic = new GraphicViewer();

            graphic.Plots = plots;
            graphic.Show(this);
        }
Ejemplo n.º 2
0
        private void ShowGraph(PointControl plot)
        {
            GraphicViewer graphic = new GraphicViewer();

            graphic.Name  = plot.Name;
            graphic.Plots = new PointControl[] { plot };
            graphic.Show(this);
        }