public PlotterContainer(string name)
            : base(name, SplitOrientation.Vertical, -240f)
        {
            Plotter = new Graph2DPlotter("plotter");
            Panel1.AddChild(Plotter);

            GRD = new DataGridView("dgv");
            GRD.RowHeaderWidth      = 0;
            GRD.AlternatingRowColor = Color.FromArgb(50, Theme.Colors.Cyan);
            Panel2.AddChild(GRD);

            Graphs = new GraphList();
            GraphBase GB = new GraphBase(null, GRD);

            Graphs.Add(GB);
            GRD.SetDataProvider(GB);
            GB.OnDataLoaded();

            Plotter.Graphs = Graphs;
            Plotter.Graph  = GB;

            GB.GraphColor = Theme.Colors.Orange;
        }