Example #1
0
        public void OpenGraphicsView()
        {
            var diag = new ChartGraphicsView {
                Owner = this
            };

            diag.Show();
        }
Example #2
0
        public void OpenGraphicsView(Well well, SeriesInfoCollection series)
        {
            var diag = new ChartGraphicsView(well, series)
            {
                Owner = this
            };

            diag.Show();
        }