Scatter plot visualization control.
Inheritance: System.Windows.Forms.UserControl
        public void ComputeTest1()
        {
            ScatterplotView target = new ScatterplotView();

            double[] data = new double[] { 200.0, 200.0, 200.0 };

            target.DataSource = data;

            target.DataSource = null;

            target.DataSource = data;

            // ScatterplotBox.Show(data);
        }
        public void ComputeTest2()
        {
            ScatterplotView target = new ScatterplotView();

            Scatterplot histogram = new Scatterplot();
            histogram.Compute(new double[] { 200.0, 200.0, 200.0 });

            target.DataSource = null;

            target.DataSource = histogram;

            target.DataSource = null;

            // ScatterplotBox.Show(histogram);
        }