WFA_psychometric_chart.Form_handler.Form_handler_Load C# (CSharp) Method

Form_handler_Load() private method

private Form_handler_Load ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void Form_handler_Load(object sender, EventArgs e)
        {
            //MessageBox.Show("Error ");
            DataGridView_Show_Data();
            dataGridView1.Rows.Add();

            chart1.Series.Add(series1);
            chart1.Series.Add(series1xx);
            chart1.Series.Add(seriesLineIndicator);
            //--Lets add some data
            add_t_pg();

            //--Load the chart
            plot_new_graph();

            this.dataGridView1.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellClick);

            //--For datagridview1 editing option.
            // readOnlyModeSetUp();
        }