Example #1
0
        public void SetPiont(DataTable dt)
        {
            chartControl2.Series[0].Points.Clear();

            try
            {
                foreach (DataRow dsrow in dt.Rows)
                {
                    if (dsrow["input_time"] != null && !string.IsNullOrEmpty(dsrow["input_time"].ToString()))
                    {
                        string val = dsrow[_dc]?.ToString();
                        if (string.IsNullOrWhiteSpace(val))
                        {
                            continue;
                        }

                        string Pinput_time = Convert.ToDateTime(dsrow["input_time"]).ToString();
                        Pinput_time = "*" + Pinput_time;
                        DevExpress.XtraCharts.SeriesPoint op = new DevExpress.XtraCharts.SeriesPoint((object)Pinput_time, new object[] {
                            ((object)(val))
                        });
                        chartControl2.Series[0].Points.Add(op);
                    }
                }
            }
            catch (Exception ex)
            {
                throw;
            }
        }
 public void Showdata(DataTable dt)
 {
     chartControl1.Series[0].Points.Clear();
     chartControl1.Series[1].Points.Clear();
     chartControl1.Series[2].Points.Clear();
     foreach (DataRow dsrow in dt.Rows)
     {
         if (dsrow["input_time"] != null && !string.IsNullOrEmpty(dsrow["input_time"].ToString()))
         {
             string Pinput_time = Convert.ToDateTime(dsrow["input_time"]).ToString("yyyy-MM-dd");
             Pinput_time = "*" + Pinput_time;
             string fvalue = dsrow["fbg"].ToString() == "" ? "0" : dsrow["fbg"].ToString();   //空腹血糖
             string pvalue = dsrow["pbg"].ToString() == "" ? "0" : dsrow["pbg"].ToString();   //餐后血糖
             string ogtt   = dsrow["ogtt"].ToString() == "" ? "0" : dsrow["ogtt"].ToString(); //ogtt
             DevExpress.XtraCharts.SeriesPoint op = new DevExpress.XtraCharts.SeriesPoint(Pinput_time, new object[] {
                 ((object)(fvalue))
             });
             DevExpress.XtraCharts.SeriesPoint op1 = new DevExpress.XtraCharts.SeriesPoint(Pinput_time, new object[] {
                 ((object)(pvalue))
             });
             DevExpress.XtraCharts.SeriesPoint op2 = new DevExpress.XtraCharts.SeriesPoint(Pinput_time, new object[] {
                 ((object)(ogtt))
             });
             chartControl1.Series[0].Points.Add(op);
             chartControl1.Series[1].Points.Add(op1);
             chartControl1.Series[2].Points.Add(op2);
         }
     }
 }
Example #3
0
 public void RefData(List <int> ids)
 {
     //lbldes.Text = "dddd";
     xrChart1.Series[0].Points.Clear();
     xrChart1.Series[1].Points.Clear();
     xrChart1.Series[2].Points.Clear();
     xrChart1.Series[3].Points.Clear();
     DevExpress.XtraCharts.SeriesPoint op  = new DevExpress.XtraCharts.SeriesPoint((object)"等级", new object[] { ((object)(1)) });
     DevExpress.XtraCharts.SeriesPoint op1 = new DevExpress.XtraCharts.SeriesPoint((object)"当前值", new object[] { ((object)(ids[0])) });
     DevExpress.XtraCharts.SeriesPoint op2 = new DevExpress.XtraCharts.SeriesPoint((object)"目标值", new object[] { ((object)(1)) });
     xrChart1.Series[0].Points.Add(op);
     xrChart1.Series[0].Points.Add(op1);
     xrChart1.Series[0].Points.Add(op2);
     DevExpress.XtraCharts.SeriesPoint op11 = new DevExpress.XtraCharts.SeriesPoint((object)"等级", new object[] { ((object)(1)) });
     DevExpress.XtraCharts.SeriesPoint op12 = new DevExpress.XtraCharts.SeriesPoint((object)"当前值", new object[] { ((object)(ids[1])) });
     DevExpress.XtraCharts.SeriesPoint op13 = new DevExpress.XtraCharts.SeriesPoint((object)"目标值", new object[] { ((object)(0)) });
     xrChart1.Series[1].Points.Add(op11);
     xrChart1.Series[1].Points.Add(op12);
     xrChart1.Series[1].Points.Add(op13);
     DevExpress.XtraCharts.SeriesPoint op21 = new DevExpress.XtraCharts.SeriesPoint((object)"等级", new object[] { ((object)(1)) });
     DevExpress.XtraCharts.SeriesPoint op22 = new DevExpress.XtraCharts.SeriesPoint((object)"当前值", new object[] { ((object)(ids[2])) });
     DevExpress.XtraCharts.SeriesPoint op23 = new DevExpress.XtraCharts.SeriesPoint((object)"目标值", new object[] { ((object)(0)) });
     xrChart1.Series[2].Points.Add(op21);
     xrChart1.Series[2].Points.Add(op22);
     xrChart1.Series[2].Points.Add(op23);
     DevExpress.XtraCharts.SeriesPoint op31 = new DevExpress.XtraCharts.SeriesPoint((object)"等级", new object[] { ((object)(1)) });
     DevExpress.XtraCharts.SeriesPoint op32 = new DevExpress.XtraCharts.SeriesPoint((object)"当前值", new object[] { ((object)(ids[3])) });
     DevExpress.XtraCharts.SeriesPoint op33 = new DevExpress.XtraCharts.SeriesPoint((object)"目标值", new object[] { ((object)(0)) });
     xrChart1.Series[3].Points.Add(op31);
     xrChart1.Series[3].Points.Add(op32);
     xrChart1.Series[3].Points.Add(op33);
 }
Example #4
0
        void InitXYDiagram()
        {
            chartCalib.Series[0].Points.Clear();
            chartCalib.Series[1].Points.Clear();

            chartCalib.Series[0].LegendText = "---";
            chartCalib.Series[1].LegendText = "---";

            string serie = "{0}, {1}";

            RegressionLineal oRL_serie1 = new RegressionLineal();
            RegressionLineal oRL_serie2 = new RegressionLineal();

            foreach (ChartPoint item in lstChartPoint_serie1)
            {
                DevExpress.XtraCharts.SeriesPoint punto = new DevExpress.XtraCharts.SeriesPoint();
                punto.Argument = item.X.ToString();
                punto.Values   = new double[] { Convert.ToDouble(item.Y) };

                oRL_serie1.AddPoint(Convert.ToDouble(item.X), Convert.ToDouble(item.Y));

                chartCalib.Series[0].Points.Add(punto);

                chartCalib.Series[0].LegendText = string.Format(serie, oRL_serie1.getEcuation(), oRL_serie1.getR());
            }

            foreach (ChartPoint item in lstChartPoint_serie2)
            {
                DevExpress.XtraCharts.SeriesPoint punto = new DevExpress.XtraCharts.SeriesPoint();
                punto.Argument = item.X.ToString();
                punto.Values   = new double[] { Convert.ToDouble(item.Y) };

                oRL_serie2.AddPoint(Convert.ToDouble(item.X), Convert.ToDouble(item.Y));

                chartCalib.Series[1].Points.Add(punto);

                chartCalib.Series[1].LegendText = string.Format(serie, oRL_serie2.getEcuation(), oRL_serie2.getR());
            }

            try
            {
                if (!double.IsNaN(oRL_serie2.r()))
                {
                    tbRexp2.BackColor = oRL_serie2.r() > Convert.ToDouble(tbRexp2.Value) ? Color.White : Color.Red;
                }

                if (!double.IsNaN(oRL_serie1.r()))
                {
                    tbRexp2.BackColor = oRL_serie1.r() > Convert.ToDouble(tbRexp2.Value) ? Color.White : Color.Red;
                }
            }
            catch
            {
            }
        }
Example #5
0
        private void GetAllpoints()
        {
            int n_num = 10;

            if (!Int32.TryParse(this.te_nnum.Text, out n_num))
            {
                //MessageBox.Show("");
                //Console.WriteLine("没有指定增加接收线数(N)");
                //return;
            }
            this.chartControl1.Series[0].Points.Clear();
            this.chartControl1.Series[1].Points.Clear();
            this.chartControl2.Series[0].Points.Clear();
            this.chartControl2.Series[1].Points.Clear();
            //投入采集道数(E)
            double max_num   = 0;
            int    flags_max = 0;

            double min_num  = double.MaxValue;
            int    flag_min = 0;

            for (int i = 1; i <= n_num; i++)
            {
                double s_value = this.GetS值(i);

                if (s_value > max_num)
                {
                    flags_max = i;
                    max_num   = s_value;
                }
                DevExpress.XtraCharts.SeriesPoint temp_point = new DevExpress.XtraCharts.SeriesPoint(i, (int)s_value);
                this.chartControl1.Series[0].Points.Add(temp_point);

                double e_value = this.GetE值(i);
                if (e_value < min_num)
                {
                    min_num  = e_value;
                    flag_min = i;
                }

                this.chartControl2.Series[0].Points.Add(new DevExpress.XtraCharts.SeriesPoint(i, (int)e_value));
            }
            this.chartControl1.Series[1].Points.Add(new DevExpress.XtraCharts.SeriesPoint(flags_max, max_num));
            this.chartControl2.Series[1].Points.Add(new DevExpress.XtraCharts.SeriesPoint(flag_min, min_num));
        }
        private void Istatistik_Load(object sender, EventArgs e)
        {
            baglanti.Open();
            OleDbCommand    komut = new OleDbCommand("Select * From Veresiyeler Where CariNo=" + cariNo, baglanti);
            OleDbDataReader oku   = komut.ExecuteReader();
            int             i     = 0;

            while (oku.Read())
            {
                DateTime tarih = new DateTime();
                tarih = Convert.ToDateTime(oku["VeresiyeTarih"]);

                DevExpress.XtraCharts.SeriesPoint p = new DevExpress.XtraCharts.SeriesPoint();
                p.Argument = tarih.ToString();
                chartControl1.Series[0].Points.Add(p);

                double[] say = new double[] { Convert.ToDouble(oku["VeresiyeTutar"]) };
                chartControl1.Series[0].Points[i].Values = say;
                i++;
            }
            baglanti.Close();
        }
Example #7
0
        private void Set全部班组折线图(DataTable dt)
        {
            chartControl1.Series.Clear();

            for (int i = 0; i < dt.Rows.Count; i++)
            {
                DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
                series1.ChangeView(DevExpress.XtraCharts.ViewType.Line);
                series1.Name          = dt.Rows[i][0].ToString().Trim();
                series1.Label.Visible = false;

                for (int j = 1; j < dt.Columns.Count; j++)
                {
                    decimal d = ReturnObjectToDecimal(dt.Rows[i][j], 2);
                    DevExpress.XtraCharts.SeriesPoint seriesPoint10 = new DevExpress.XtraCharts.SeriesPoint(dt.Columns[j].Caption.Trim(), new object[] { (d) });

                    series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] { seriesPoint10 });
                }

                chartControl1.Series.Add(series1);
            }
        }
Example #8
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraCharts.XYDiagram   xyDiagram1   = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series      series1      = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("I", new object[] {
         ((object)(1))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("II", new object[] {
         ((object)(4))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("III", new object[] {
         ((object)(2))
     });
     DevExpress.XtraCharts.LineSeriesView lineSeriesView1 = new DevExpress.XtraCharts.LineSeriesView();
     DevExpress.XtraCharts.Series         series2         = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint    seriesPoint4    = new DevExpress.XtraCharts.SeriesPoint("I", new object[] {
         ((object)(3))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint("II", new object[] {
         ((object)(2))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint("III", new object[] {
         ((object)(5))
     });
     DevExpress.XtraCharts.LineSeriesView lineSeriesView2 = new DevExpress.XtraCharts.LineSeriesView();
     this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
     this.button1       = new System.Windows.Forms.Button();
     this.button2       = new System.Windows.Forms.Button();
     this.button3       = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).BeginInit();
     this.SuspendLayout();
     //
     // chartControl1
     //
     xyDiagram1.AxisX.Range.SideMarginsEnabled = true;
     xyDiagram1.AxisY.Range.SideMarginsEnabled = true;
     this.chartControl1.Diagram  = xyDiagram1;
     this.chartControl1.Location = new System.Drawing.Point(12, 12);
     this.chartControl1.Name     = "chartControl1";
     series1.Name = "Series 1";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint1,
         seriesPoint2,
         seriesPoint3
     });
     series1.View = lineSeriesView1;
     series2.Name = "Series 2";
     series2.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint4,
         seriesPoint5,
         seriesPoint6
     });
     series2.View = lineSeriesView2;
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
         series1,
         series2
     };
     this.chartControl1.Size     = new System.Drawing.Size(657, 487);
     this.chartControl1.TabIndex = 0;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(84, 516);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(134, 43);
     this.button1.TabIndex = 1;
     this.button1.Text     = "Area";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(277, 516);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(127, 43);
     this.button2.TabIndex = 2;
     this.button2.Text     = "Line";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(463, 516);
     this.button3.Name     = "button3";
     this.button3.Size     = new System.Drawing.Size(132, 43);
     this.button3.TabIndex = 3;
     this.button3.Text     = "Pie";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.button3_Click);
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(681, 581);
     this.Controls.Add(this.button3);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.chartControl1);
     this.Name = "Form1";
     this.Text = "Form1";
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraCharts.XYDiagram   xyDiagram2    = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series      series4       = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint16 = new DevExpress.XtraCharts.SeriesPoint("Illinois", new object[] {
         ((object)(423.721D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint17 = new DevExpress.XtraCharts.SeriesPoint("Indiana", new object[] {
         ((object)(178.719D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint18 = new DevExpress.XtraCharts.SeriesPoint("Michigan", new object[] {
         ((object)(308.845D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint19 = new DevExpress.XtraCharts.SeriesPoint("Ohio", new object[] {
         ((object)(348.555D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint20 = new DevExpress.XtraCharts.SeriesPoint("Wisconsin", new object[] {
         ((object)(160.274D))
     });
     DevExpress.XtraCharts.Series      series5       = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint21 = new DevExpress.XtraCharts.SeriesPoint("Illinois", new object[] {
         ((object)(476.851D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint22 = new DevExpress.XtraCharts.SeriesPoint("Indiana", new object[] {
         ((object)(195.769D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint23 = new DevExpress.XtraCharts.SeriesPoint("Michigan", new object[] {
         ((object)(335.793D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint24 = new DevExpress.XtraCharts.SeriesPoint("Ohio", new object[] {
         ((object)(374.771D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint25 = new DevExpress.XtraCharts.SeriesPoint("Wisconsin", new object[] {
         ((object)(182.373D))
     });
     DevExpress.XtraCharts.Series      series6       = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint26 = new DevExpress.XtraCharts.SeriesPoint("Illinois", new object[] {
         ((object)(528.904D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint27 = new DevExpress.XtraCharts.SeriesPoint("Indiana", new object[] {
         ((object)(227.271D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint28 = new DevExpress.XtraCharts.SeriesPoint("Michigan", new object[] {
         ((object)(372.576D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint29 = new DevExpress.XtraCharts.SeriesPoint("Ohio", new object[] {
         ((object)(418.258D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint30 = new DevExpress.XtraCharts.SeriesPoint("Wisconsin", new object[] {
         ((object)(211.727D))
     });
     this.chartControl1       = new DevExpress.XtraCharts.ChartControl();
     this.defaultLookAndFeel1 = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series6)).BeginInit();
     this.SuspendLayout();
     //
     // chartControl1
     //
     xyDiagram2.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram2.AxisY.VisibleInPanesSerializable = "-1";
     this.chartControl1.Diagram  = xyDiagram2;
     this.chartControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.chartControl1.Location = new System.Drawing.Point(0, 0);
     this.chartControl1.Name     = "chartControl1";
     series4.Name = "1998";
     series4.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint16,
         seriesPoint17,
         seriesPoint18,
         seriesPoint19,
         seriesPoint20
     });
     series5.Name = "2004";
     series5.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint21,
         seriesPoint22,
         seriesPoint23,
         seriesPoint24,
         seriesPoint25
     });
     series6.Name = "2004";
     series6.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint26,
         seriesPoint27,
         seriesPoint28,
         seriesPoint29,
         seriesPoint30
     });
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
         series4,
         series5,
         series6
     };
     this.chartControl1.Size     = new System.Drawing.Size(624, 321);
     this.chartControl1.TabIndex = 0;
     //
     // defaultLookAndFeel1
     //
     this.defaultLookAndFeel1.LookAndFeel.SkinName = "Office 2013";
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(624, 321);
     this.Controls.Add(this.chartControl1);
     this.Name  = "Form1";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(xyDiagram2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     this.ResumeLayout(false);
 }
Example #10
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraCharts.XYDiagram   xyDiagram1   = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series      series1      = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("aaa", new object[] {
         ((object)(2D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("bbb", new object[] {
         ((object)(4.5D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("ccc", new object[] {
         ((object)(7.7D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("ddd", new object[] {
         ((object)(1.6D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint("eee", new object[] {
         ((object)(8.9D))
     });
     DevExpress.XtraCharts.Series      series2      = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint("aaa", new object[] {
         ((object)(8D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint("bbb", new object[] {
         ((object)(10D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint("ccc", new object[] {
         ((object)(7.3D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint9 = new DevExpress.XtraCharts.SeriesPoint("ddd", new object[] {
         ((object)(3.3D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint10 = new DevExpress.XtraCharts.SeriesPoint("eee", new object[] {
         ((object)(7.9D))
     });
     DevExpress.XtraCharts.Series      series3       = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint11 = new DevExpress.XtraCharts.SeriesPoint("aaa", new object[] {
         ((object)(1.2D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint12 = new DevExpress.XtraCharts.SeriesPoint("bbb", new object[] {
         ((object)(7.5D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint13 = new DevExpress.XtraCharts.SeriesPoint("ccc", new object[] {
         ((object)(2.5D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint14 = new DevExpress.XtraCharts.SeriesPoint("ddd", new object[] {
         ((object)(6.9D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint15 = new DevExpress.XtraCharts.SeriesPoint("eee", new object[] {
         ((object)(3.7D))
     });
     DevExpress.XtraCharts.ChartTitle chartTitle1             = new DevExpress.XtraCharts.ChartTitle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UcReportMonthlyHeadSale));
     this.chartControl1       = new DevExpress.XtraCharts.ChartControl();
     this.panelControl1       = new DevExpress.XtraEditors.PanelControl();
     this.btnSearch           = new DevExpress.XtraEditors.SimpleButton();
     this.cbbDataType         = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cbbCategory         = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     this.lblTime             = new DevExpress.XtraEditors.LabelControl();
     this.cbbBackward         = new DevExpress.XtraEditors.ComboBoxEdit();
     this.splashScreenManager = new DevExpress.XtraSplashScreen.SplashScreenManager(this, typeof(global::PowerBackend.FmWait), true, true, typeof(System.Windows.Forms.UserControl));
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbbDataType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbbCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbbBackward.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // chartControl1
     //
     xyDiagram1.AxisX.AutoScaleBreaks.Enabled = true;
     xyDiagram1.AxisX.CrosshairAxisLabelOptions.Visibility = DevExpress.Utils.DefaultBoolean.False;
     xyDiagram1.AxisX.Tickmarks.MinorVisible     = false;
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.Label.TextPattern          = "{V:#,#}";
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     this.chartControl1.Diagram           = xyDiagram1;
     this.chartControl1.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.chartControl1.Legend.Visibility = DevExpress.Utils.DefaultBoolean.False;
     this.chartControl1.Location          = new System.Drawing.Point(0, 30);
     this.chartControl1.Name              = "chartControl1";
     series1.Name = "มกรา";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint1,
         seriesPoint2,
         seriesPoint3,
         seriesPoint4,
         seriesPoint5
     });
     series2.Name = "กุมภา";
     series2.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint6,
         seriesPoint7,
         seriesPoint8,
         seriesPoint9,
         seriesPoint10
     });
     series3.Name = "มีนา";
     series3.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint11,
         seriesPoint12,
         seriesPoint13,
         seriesPoint14,
         seriesPoint15
     });
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
         series1,
         series2,
         series3
     };
     this.chartControl1.Size     = new System.Drawing.Size(1140, 467);
     this.chartControl1.TabIndex = 2;
     chartTitle1.Font            = new System.Drawing.Font("DilleniaUPC", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartTitle1.Text            = "กราฟแสดง";
     this.chartControl1.Titles.AddRange(new DevExpress.XtraCharts.ChartTitle[] {
         chartTitle1
     });
     this.chartControl1.Visible = false;
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.btnSearch);
     this.panelControl1.Controls.Add(this.cbbDataType);
     this.panelControl1.Controls.Add(this.cbbCategory);
     this.panelControl1.Controls.Add(this.lblTime);
     this.panelControl1.Controls.Add(this.cbbBackward);
     this.panelControl1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name     = "panelControl1";
     this.panelControl1.Size     = new System.Drawing.Size(1140, 30);
     this.panelControl1.TabIndex = 3;
     //
     // btnSearch
     //
     this.btnSearch.Appearance.Font            = new System.Drawing.Font("Tahoma", 9.5F);
     this.btnSearch.Appearance.Options.UseFont = true;
     this.btnSearch.Image         = ((System.Drawing.Image)(resources.GetObject("btnSearch.Image")));
     this.btnSearch.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnSearch.Location      = new System.Drawing.Point(636, 0);
     this.btnSearch.Name          = "btnSearch";
     this.btnSearch.Size          = new System.Drawing.Size(95, 23);
     this.btnSearch.TabIndex      = 10;
     this.btnSearch.Text          = "ค้นหาข้อมูล";
     this.btnSearch.Click        += new System.EventHandler(this.btnSearch_Click);
     //
     // cbbDataType
     //
     this.cbbDataType.EditValue = "ยอดขาย";
     this.cbbDataType.Location  = new System.Drawing.Point(211, 0);
     this.cbbDataType.Name      = "cbbDataType";
     this.cbbDataType.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 9.5F);
     this.cbbDataType.Properties.Appearance.Options.UseFont = true;
     this.cbbDataType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cbbDataType.Properties.Items.AddRange(new object[] {
         "ยอดขาย",
         "จำนวนชิ้น",
         "กำไร",
         "ต้นทุนเฉลี่ยต่อชิ้น",
         "ราคาขายเฉลี่ยต่อชิ้น",
         "กำไรเฉลี่ยต่อชิ้น"
     });
     this.cbbDataType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbbDataType.Size     = new System.Drawing.Size(130, 22);
     this.cbbDataType.TabIndex = 9;
     //
     // cbbCategory
     //
     this.cbbCategory.EditValue = "";
     this.cbbCategory.Location  = new System.Drawing.Point(369, 0);
     this.cbbCategory.Name      = "cbbCategory";
     this.cbbCategory.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 9.5F);
     this.cbbCategory.Properties.Appearance.Options.UseFont = true;
     this.cbbCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cbbCategory.Properties.SelectAllItemCaption = "ทุกหมวดหมู่";
     this.cbbCategory.Size     = new System.Drawing.Size(260, 22);
     this.cbbCategory.TabIndex = 7;
     //
     // lblTime
     //
     this.lblTime.Appearance.Font = new System.Drawing.Font("Tahoma", 9.5F);
     this.lblTime.Location        = new System.Drawing.Point(3, 3);
     this.lblTime.Name            = "lblTime";
     this.lblTime.Size            = new System.Drawing.Size(28, 16);
     this.lblTime.TabIndex        = 4;
     this.lblTime.Text            = "เดือน";
     //
     // cbbBackward
     //
     this.cbbBackward.EditValue = "3";
     this.cbbBackward.Location  = new System.Drawing.Point(37, 0);
     this.cbbBackward.Name      = "cbbBackward";
     this.cbbBackward.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 9.5F);
     this.cbbBackward.Properties.Appearance.Options.UseFont = true;
     this.cbbBackward.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cbbBackward.Properties.Items.AddRange(new object[] {
         "0",
         "1",
         "2",
         "3",
         "4",
         "5",
         "6",
         "7",
         "8",
         "9",
         "10",
         "11",
         "12"
     });
     this.cbbBackward.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbbBackward.Size     = new System.Drawing.Size(44, 22);
     this.cbbBackward.TabIndex = 3;
     //
     // splashScreenManager
     //
     this.splashScreenManager.ClosingDelay = 500;
     //
     // UcReportMonthlyHeadSale
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.chartControl1);
     this.Controls.Add(this.panelControl1);
     this.Name = "UcReportMonthlyHeadSale";
     this.Size = new System.Drawing.Size(1140, 497);
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbbDataType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbbCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbbBackward.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Example #11
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraCharts.Series      series1        = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint1   = new DevExpress.XtraCharts.SeriesPoint("合格率", new object[] {
         ((object)(60D))
     }, 0);
     DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("不合格率", new object[] {
         ((object)(40D))
     }, 1);
     DevExpress.XtraCharts.PieSeriesView pieSeriesView1 = new DevExpress.XtraCharts.PieSeriesView();
     DevExpress.XtraCharts.SeriesTitle   seriesTitle1   = new DevExpress.XtraCharts.SeriesTitle();
     this.gridView_报表数据            = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn11             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemImageEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemImageEdit();
     this.gridColumn12             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridControl_批次信息表        = new DevExpress.XtraGrid.GridControl();
     this.gridView_批次信息表           = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemImageEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageEdit();
     this.gridColumn4  = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7  = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1  = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9  = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8  = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6  = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.panel1        = new System.Windows.Forms.Panel();
     this.panel3        = new System.Windows.Forms.Panel();
     this.panel5        = new System.Windows.Forms.Panel();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.panel4        = new System.Windows.Forms.Panel();
     this.groupControl8 = new DevExpress.XtraEditors.GroupControl();
     this.panel6        = new System.Windows.Forms.Panel();
     this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
     this.panel2        = new System.Windows.Forms.Panel();
     this.label2        = new System.Windows.Forms.Label();
     this.label4        = new System.Windows.Forms.Label();
     this.label3        = new System.Windows.Forms.Label();
     this.label1        = new System.Windows.Forms.Label();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.gridColumn5   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2   = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridView_报表数据)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl_批次信息表)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView_批次信息表)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     this.panel1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.panel5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).BeginInit();
     this.groupControl8.SuspendLayout();
     this.panel6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pieSeriesView1)).BeginInit();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // gridView_报表数据
     //
     this.gridView_报表数据.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn11,
         this.gridColumn12,
         this.gridColumn13,
         this.gridColumn14,
         this.gridColumn15,
         this.gridColumn16
     });
     this.gridView_报表数据.GridControl = this.gridControl_批次信息表;
     this.gridView_报表数据.Name        = "gridView_报表数据";
     this.gridView_报表数据.OptionsBehavior.Editable   = false;
     this.gridView_报表数据.OptionsBehavior.ReadOnly   = true;
     this.gridView_报表数据.OptionsView.ShowGroupPanel = false;
     this.gridView_报表数据.OptionsView.ShowIndicator  = false;
     this.gridView_报表数据.SelectionChanged          += new DevExpress.Data.SelectionChangedEventHandler(this.gridView_报表数据_SelectionChanged);
     this.gridView_报表数据.FocusedRowChanged         += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView_报表数据_FocusedRowChanged);
     //
     // gridColumn11
     //
     this.gridColumn11.ColumnEdit = this.repositoryItemImageEdit2;
     this.gridColumn11.Name       = "gridColumn11";
     this.gridColumn11.OptionsColumn.AllowEdit = false;
     this.gridColumn11.OptionsColumn.ReadOnly  = true;
     this.gridColumn11.Visible      = true;
     this.gridColumn11.VisibleIndex = 0;
     this.gridColumn11.Width        = 50;
     //
     // repositoryItemImageEdit2
     //
     this.repositoryItemImageEdit2.AutoHeight = false;
     this.repositoryItemImageEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemImageEdit2.ContextImageOptions.SvgImage     = global::数据管理模块.Properties.Resources.xlsx;
     this.repositoryItemImageEdit2.ContextImageOptions.SvgImageSize = new System.Drawing.Size(32, 32);
     this.repositoryItemImageEdit2.Name     = "repositoryItemImageEdit2";
     this.repositoryItemImageEdit2.ReadOnly = true;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption      = "报表名称";
     this.gridColumn12.FieldName    = "TestReportName";
     this.gridColumn12.Name         = "gridColumn12";
     this.gridColumn12.Visible      = true;
     this.gridColumn12.VisibleIndex = 1;
     this.gridColumn12.Width        = 277;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption   = "备注";
     this.gridColumn13.FieldName = "TestReport备注";
     this.gridColumn13.Name      = "gridColumn13";
     this.gridColumn13.OptionsColumn.ReadOnly = true;
     this.gridColumn13.Visible      = true;
     this.gridColumn13.VisibleIndex = 3;
     this.gridColumn13.Width        = 172;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption   = "创建时间";
     this.gridColumn14.FieldName = "TestReport创建时间";
     this.gridColumn14.Name      = "gridColumn14";
     this.gridColumn14.OptionsColumn.ReadOnly = true;
     this.gridColumn14.Visible      = true;
     this.gridColumn14.VisibleIndex = 5;
     this.gridColumn14.Width        = 204;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption      = "合格情况";
     this.gridColumn15.Name         = "gridColumn15";
     this.gridColumn15.Visible      = true;
     this.gridColumn15.VisibleIndex = 4;
     this.gridColumn15.Width        = 88;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption      = "生产状态";
     this.gridColumn16.FieldName    = "UUT生产状态";
     this.gridColumn16.Name         = "gridColumn16";
     this.gridColumn16.Visible      = true;
     this.gridColumn16.VisibleIndex = 2;
     this.gridColumn16.Width        = 198;
     //
     // gridControl_批次信息表
     //
     this.gridControl_批次信息表.Dock  = System.Windows.Forms.DockStyle.Fill;
     gridLevelNode1.LevelTemplate = this.gridView_报表数据;
     gridLevelNode1.RelationName  = "Detail";
     this.gridControl_批次信息表.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
         gridLevelNode1
     });
     this.gridControl_批次信息表.Location = new System.Drawing.Point(2, 33);
     this.gridControl_批次信息表.MainView = this.gridView_批次信息表;
     this.gridControl_批次信息表.Name     = "gridControl_批次信息表";
     this.gridControl_批次信息表.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemImageComboBox1,
         this.repositoryItemImageEdit1,
         this.repositoryItemImageEdit2
     });
     this.gridControl_批次信息表.Size     = new System.Drawing.Size(989, 549);
     this.gridControl_批次信息表.TabIndex = 3;
     this.gridControl_批次信息表.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView_批次信息表,
         this.gridView_报表数据
     });
     //
     // gridView_批次信息表
     //
     this.gridView_批次信息表.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn3,
         this.gridColumn4,
         this.gridColumn7,
         this.gridColumn1,
         this.gridColumn9,
         this.gridColumn8,
         this.gridColumn6,
         this.gridColumn10
     });
     this.gridView_批次信息表.GridControl = this.gridControl_批次信息表;
     this.gridView_批次信息表.Name        = "gridView_批次信息表";
     this.gridView_批次信息表.OptionsBehavior.Editable   = false;
     this.gridView_批次信息表.OptionsBehavior.ReadOnly   = true;
     this.gridView_批次信息表.OptionsView.ShowGroupPanel = false;
     this.gridView_批次信息表.RowHeight = 32;
     //
     // gridColumn3
     //
     this.gridColumn3.ColumnEdit   = this.repositoryItemImageEdit1;
     this.gridColumn3.Name         = "gridColumn3";
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 0;
     this.gridColumn3.Width        = 65;
     //
     // repositoryItemImageEdit1
     //
     this.repositoryItemImageEdit1.AutoHeight = false;
     this.repositoryItemImageEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemImageEdit1.ContextImageOptions.SvgImage     = global::数据管理模块.Properties.Resources.huabanfuben2;
     this.repositoryItemImageEdit1.ContextImageOptions.SvgImageSize = new System.Drawing.Size(32, 32);
     this.repositoryItemImageEdit1.Name = "repositoryItemImageEdit1";
     //
     // gridColumn4
     //
     this.gridColumn4.Caption   = "ID";
     this.gridColumn4.FieldName = "ID";
     this.gridColumn4.Name      = "gridColumn4";
     //
     // gridColumn7
     //
     this.gridColumn7.Caption      = "UUT测试次数";
     this.gridColumn7.FieldName    = "UUT测试次数";
     this.gridColumn7.Name         = "gridColumn7";
     this.gridColumn7.Visible      = true;
     this.gridColumn7.VisibleIndex = 3;
     this.gridColumn7.Width        = 100;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "UUT生产状态";
     this.gridColumn1.FieldName    = "UUT生产状态";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 2;
     this.gridColumn1.Width        = 216;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption      = "合格情况";
     this.gridColumn9.Name         = "gridColumn9";
     this.gridColumn9.Visible      = true;
     this.gridColumn9.VisibleIndex = 4;
     this.gridColumn9.Width        = 66;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption      = "备注";
     this.gridColumn8.Name         = "gridColumn8";
     this.gridColumn8.Visible      = true;
     this.gridColumn8.VisibleIndex = 5;
     this.gridColumn8.Width        = 223;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption      = "UUT编号";
     this.gridColumn6.FieldName    = "UUT编号";
     this.gridColumn6.Name         = "gridColumn6";
     this.gridColumn6.Visible      = true;
     this.gridColumn6.VisibleIndex = 1;
     this.gridColumn6.Width        = 300;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption   = "测试数据";
     this.gridColumn10.FieldName = "Detail";
     this.gridColumn10.Name      = "gridColumn10";
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.panel3);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(1003, 906);
     this.panel1.TabIndex = 0;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.panel5);
     this.panel3.Controls.Add(this.panel4);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(0, 0);
     this.panel3.Name     = "panel3";
     this.panel3.Padding  = new System.Windows.Forms.Padding(5);
     this.panel3.Size     = new System.Drawing.Size(1003, 906);
     this.panel3.TabIndex = 1;
     //
     // panel5
     //
     this.panel5.Controls.Add(this.groupControl2);
     this.panel5.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel5.Location = new System.Drawing.Point(5, 5);
     this.panel5.Name     = "panel5";
     this.panel5.Size     = new System.Drawing.Size(993, 584);
     this.panel5.TabIndex = 1;
     //
     // groupControl2
     //
     this.groupControl2.AppearanceCaption.Font            = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupControl2.AppearanceCaption.Options.UseFont = true;
     this.groupControl2.CaptionImageOptions.SvgImage      = global::数据管理模块.Properties.Resources.m_reports;
     this.groupControl2.CaptionImageOptions.SvgImageSize  = new System.Drawing.Size(32, 32);
     this.groupControl2.Controls.Add(this.gridControl_批次信息表);
     this.groupControl2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupControl2.Location = new System.Drawing.Point(0, 0);
     this.groupControl2.Name     = "groupControl2";
     this.groupControl2.Size     = new System.Drawing.Size(993, 584);
     this.groupControl2.TabIndex = 3;
     this.groupControl2.Text     = "批次-UUT 信息(The Batch Mapping UUT View)";
     //
     // panel4
     //
     this.panel4.Controls.Add(this.groupControl8);
     this.panel4.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel4.Location = new System.Drawing.Point(5, 589);
     this.panel4.Name     = "panel4";
     this.panel4.Size     = new System.Drawing.Size(993, 312);
     this.panel4.TabIndex = 0;
     //
     // groupControl8
     //
     this.groupControl8.AppearanceCaption.Font            = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupControl8.AppearanceCaption.Options.UseFont = true;
     this.groupControl8.CaptionImageOptions.SvgImage      = global::数据管理模块.Properties.Resources.m_asm;
     this.groupControl8.CaptionImageOptions.SvgImageSize  = new System.Drawing.Size(32, 32);
     this.groupControl8.Controls.Add(this.panel6);
     this.groupControl8.Controls.Add(this.panel2);
     this.groupControl8.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupControl8.Location = new System.Drawing.Point(0, 0);
     this.groupControl8.Name     = "groupControl8";
     this.groupControl8.Size     = new System.Drawing.Size(993, 312);
     this.groupControl8.TabIndex = 9;
     this.groupControl8.Text     = "批次测试概述(Batch Conclusion)";
     //
     // panel6
     //
     this.panel6.Controls.Add(this.chartControl1);
     this.panel6.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel6.Location = new System.Drawing.Point(508, 33);
     this.panel6.Name     = "panel6";
     this.panel6.Size     = new System.Drawing.Size(483, 277);
     this.panel6.TabIndex = 1;
     //
     // chartControl1
     //
     this.chartControl1.BackColor = System.Drawing.Color.Transparent;
     this.chartControl1.BorderOptions.Visibility = DevExpress.Utils.DefaultBoolean.False;
     this.chartControl1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.chartControl1.Legend.Name = "Default Legend";
     this.chartControl1.Location    = new System.Drawing.Point(0, 0);
     this.chartControl1.Name        = "chartControl1";
     series1.Name = "Series 1";
     seriesPoint1.ColorSerializable = "#00B050";
     seriesPoint2.ColorSerializable = "#F00000";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint1,
         seriesPoint2
     });
     seriesTitle1.Text = "批次合格率";
     pieSeriesView1.Titles.AddRange(new DevExpress.XtraCharts.SeriesTitle[] {
         seriesTitle1
     });
     series1.View = pieSeriesView1;
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
         series1
     };
     this.chartControl1.Size     = new System.Drawing.Size(483, 277);
     this.chartControl1.TabIndex = 0;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.label2);
     this.panel2.Controls.Add(this.label4);
     this.panel2.Controls.Add(this.label3);
     this.panel2.Controls.Add(this.label1);
     this.panel2.Controls.Add(this.labelControl4);
     this.panel2.Controls.Add(this.labelControl2);
     this.panel2.Controls.Add(this.labelControl5);
     this.panel2.Controls.Add(this.labelControl3);
     this.panel2.Controls.Add(this.labelControl1);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Left;
     this.panel2.Location = new System.Drawing.Point(2, 33);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(506, 277);
     this.panel2.TabIndex = 0;
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.Font      = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.OrangeRed;
     this.label2.Location  = new System.Drawing.Point(328, 32);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(51, 28);
     this.label2.TabIndex  = 1;
     this.label2.Text      = "000";
     //
     // label4
     //
     this.label4.AutoSize  = true;
     this.label4.Font      = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.RoyalBlue;
     this.label4.Location  = new System.Drawing.Point(210, 183);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(71, 28);
     this.label4.TabIndex  = 1;
     this.label4.Text      = "100%";
     //
     // label3
     //
     this.label3.AutoSize  = true;
     this.label3.Font      = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.LimeGreen;
     this.label3.Location  = new System.Drawing.Point(171, 105);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(71, 28);
     this.label3.TabIndex  = 1;
     this.label3.Text      = "100%";
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.Font      = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.OrangeRed;
     this.label1.Location  = new System.Drawing.Point(191, 32);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(51, 28);
     this.label1.TabIndex  = 1;
     this.label1.Text      = "000";
     //
     // labelControl4
     //
     this.labelControl4.Appearance.Font            = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelControl4.Appearance.Options.UseFont = true;
     this.labelControl4.Location = new System.Drawing.Point(385, 39);
     this.labelControl4.Name     = "labelControl4";
     this.labelControl4.Size     = new System.Drawing.Size(14, 19);
     this.labelControl4.TabIndex = 0;
     this.labelControl4.Text     = "次";
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font            = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelControl2.Appearance.Options.UseFont = true;
     this.labelControl2.Location = new System.Drawing.Point(248, 39);
     this.labelControl2.Name     = "labelControl2";
     this.labelControl2.Size     = new System.Drawing.Size(74, 19);
     this.labelControl2.TabIndex = 0;
     this.labelControl2.Text     = "次,累计测试";
     //
     // labelControl5
     //
     this.labelControl5.Appearance.Font            = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelControl5.Appearance.Options.UseFont = true;
     this.labelControl5.Location = new System.Drawing.Point(17, 192);
     this.labelControl5.Name     = "labelControl5";
     this.labelControl5.Size     = new System.Drawing.Size(168, 19);
     this.labelControl5.TabIndex = 0;
     this.labelControl5.Text     = "③该批次一次测试合格率为";
     //
     // labelControl3
     //
     this.labelControl3.Appearance.Font            = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelControl3.Appearance.Options.UseFont = true;
     this.labelControl3.Location = new System.Drawing.Point(17, 112);
     this.labelControl3.Name     = "labelControl3";
     this.labelControl3.Size     = new System.Drawing.Size(140, 19);
     this.labelControl3.TabIndex = 0;
     this.labelControl3.Text     = "②该批次当前合格率为";
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font            = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelControl1.Appearance.Options.UseFont = true;
     this.labelControl1.Location = new System.Drawing.Point(17, 39);
     this.labelControl1.Name     = "labelControl1";
     this.labelControl1.Size     = new System.Drawing.Size(168, 19);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text     = "①该批次测试被测件数量为";
     //
     // gridColumn5
     //
     this.gridColumn5.Caption   = "UUT数量";
     this.gridColumn5.FieldName = "UUT数量";
     this.gridColumn5.Name      = "gridColumn5";
     this.gridColumn5.Width     = 68;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption   = "UUT类型";
     this.gridColumn2.FieldName = "UUT类型";
     this.gridColumn2.Name      = "gridColumn2";
     //
     // ChildModuleOf批次详细信息
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1003, 906);
     this.Controls.Add(this.panel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "ChildModuleOf批次详细信息";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "批次详细信息";
     this.Load           += new System.EventHandler(this.ChildModuleOf批次详细信息_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridView_报表数据)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl_批次信息表)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView_批次信息表)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).EndInit();
     this.groupControl8.ResumeLayout(false);
     this.panel6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(pieSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmPainel));
            DevExpress.XtraCharts.Series series4 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.DoughnutSeriesLabel doughnutSeriesLabel2 = new DevExpress.XtraCharts.DoughnutSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint16 = new DevExpress.XtraCharts.SeriesPoint("0", new object[] {
            ((object)(5.2D))}, 0);
            DevExpress.XtraCharts.SeriesPoint seriesPoint17 = new DevExpress.XtraCharts.SeriesPoint("1", new object[] {
            ((object)(1.7D))}, 1);
            DevExpress.XtraCharts.SeriesPoint seriesPoint18 = new DevExpress.XtraCharts.SeriesPoint("2", new object[] {
            ((object)(4.4D))}, 2);
            DevExpress.XtraCharts.SeriesPoint seriesPoint19 = new DevExpress.XtraCharts.SeriesPoint("3", new object[] {
            ((object)(1.2D))}, 3);
            DevExpress.XtraCharts.SeriesPoint seriesPoint20 = new DevExpress.XtraCharts.SeriesPoint("4", new object[] {
            ((object)(6.2D))}, 4);
            DevExpress.XtraCharts.DoughnutSeriesView doughnutSeriesView2 = new DevExpress.XtraCharts.DoughnutSeriesView(new int[0]);
            DevExpress.XtraCharts.XYDiagram xyDiagram3 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.Series series5 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SeriesPoint seriesPoint21 = new DevExpress.XtraCharts.SeriesPoint("0", new object[] {
            ((object)(1.2D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint22 = new DevExpress.XtraCharts.SeriesPoint("1", new object[] {
            ((object)(6D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint23 = new DevExpress.XtraCharts.SeriesPoint("2", new object[] {
            ((object)(6.4D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint24 = new DevExpress.XtraCharts.SeriesPoint("3", new object[] {
            ((object)(9.5D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint25 = new DevExpress.XtraCharts.SeriesPoint("4", new object[] {
            ((object)(3.5D))});
            DevExpress.XtraCharts.XYDiagram xyDiagram4 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.Series series6 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SeriesPoint seriesPoint26 = new DevExpress.XtraCharts.SeriesPoint("0", new object[] {
            ((object)(6.2D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint27 = new DevExpress.XtraCharts.SeriesPoint("1", new object[] {
            ((object)(1D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint28 = new DevExpress.XtraCharts.SeriesPoint("2", new object[] {
            ((object)(8.5D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint29 = new DevExpress.XtraCharts.SeriesPoint("3", new object[] {
            ((object)(7.3D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint30 = new DevExpress.XtraCharts.SeriesPoint("4", new object[] {
            ((object)(0.5D))});
            DevExpress.XtraCharts.LineSeriesView lineSeriesView2 = new DevExpress.XtraCharts.LineSeriesView();
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.lblPorcentagemHomens = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.lblPorcentagemMulheres = new System.Windows.Forms.Label();
            this.panel10 = new System.Windows.Forms.Panel();
            this.panel9 = new System.Windows.Forms.Panel();
            this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
            this.panelControl12 = new DevExpress.XtraEditors.PanelControl();
            this.lblQtdConsultasAgendadas = new System.Windows.Forms.Label();
            this.panel6 = new System.Windows.Forms.Panel();
            this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
            this.panelControl13 = new DevExpress.XtraEditors.PanelControl();
            this.panelControl8 = new DevExpress.XtraEditors.PanelControl();
            this.lblQtdNovosPacientes = new System.Windows.Forms.Label();
            this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
            this.panel2 = new System.Windows.Forms.Panel();
            this.panelControl9 = new DevExpress.XtraEditors.PanelControl();
            this.panelControl14 = new DevExpress.XtraEditors.PanelControl();
            this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
            this.panelControl15 = new DevExpress.XtraEditors.PanelControl();
            this.lblQtdConveniosAtendidos = new System.Windows.Forms.Label();
            this.panel3 = new System.Windows.Forms.Panel();
            this.panelControl6 = new DevExpress.XtraEditors.PanelControl();
            this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
            this.panel5 = new System.Windows.Forms.Panel();
            this.lblQtdTotalConsultas = new System.Windows.Forms.Label();
            this.panelControl7 = new DevExpress.XtraEditors.PanelControl();
            this.panelControl10 = new DevExpress.XtraEditors.PanelControl();
            this.panel7 = new System.Windows.Forms.Panel();
            this.lblQtdDuracaoMediaConsulta = new System.Windows.Forms.Label();
            this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
            this.panelControl11 = new DevExpress.XtraEditors.PanelControl();
            this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
            this.panel8 = new System.Windows.Forms.Panel();
            this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
            this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
            this.lblQtdTotalPacientes = new System.Windows.Forms.Label();
            this.chartControl3 = new DevExpress.XtraCharts.ChartControl();
            this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
            this.chartControl2 = new DevExpress.XtraCharts.ChartControl();
            this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
            this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
            this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
            this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
            this.lblTituloPainel = new DevExpress.XtraEditors.LabelControl();
            this.lblTituloPacientesDia = new DevExpress.XtraEditors.LabelControl();
            this.listPacientesDia = new System.Windows.Forms.ListBox();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            this.panelControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl12)).BeginInit();
            this.panelControl12.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl13)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl8)).BeginInit();
            this.panelControl8.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl14)).BeginInit();
            this.panelControl14.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl15)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).BeginInit();
            this.panelControl6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl10)).BeginInit();
            this.panelControl10.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl11)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
            this.panelControl4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(doughnutSeriesLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(doughnutSeriesView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
            this.SuspendLayout();
            // 
            // panelControl1
            // 
            this.panelControl1.AllowTouchScroll = true;
            this.panelControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.panelControl1.Appearance.BackColor = System.Drawing.Color.Silver;
            this.panelControl1.Appearance.Options.UseBackColor = true;
            this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
            this.panelControl1.Controls.Add(this.lblPorcentagemHomens);
            this.panelControl1.Controls.Add(this.label2);
            this.panelControl1.Controls.Add(this.label1);
            this.panelControl1.Controls.Add(this.lblPorcentagemMulheres);
            this.panelControl1.Controls.Add(this.panel10);
            this.panelControl1.Controls.Add(this.panel9);
            this.panelControl1.Controls.Add(this.labelControl13);
            this.panelControl1.Controls.Add(this.labelControl12);
            this.panelControl1.Controls.Add(this.panelControl12);
            this.panelControl1.Controls.Add(this.panelControl8);
            this.panelControl1.Controls.Add(this.panelControl14);
            this.panelControl1.Controls.Add(this.panelControl6);
            this.panelControl1.Controls.Add(this.panelControl10);
            this.panelControl1.Controls.Add(this.panelControl4);
            this.panelControl1.Controls.Add(this.chartControl3);
            this.panelControl1.Controls.Add(this.labelControl4);
            this.panelControl1.Controls.Add(this.labelControl5);
            this.panelControl1.Controls.Add(this.chartControl2);
            this.panelControl1.Controls.Add(this.labelControl3);
            this.panelControl1.Controls.Add(this.labelControl2);
            this.panelControl1.Controls.Add(this.labelControl1);
            this.panelControl1.Controls.Add(this.chartControl1);
            this.panelControl1.Controls.Add(this.panelControl3);
            this.panelControl1.Controls.Add(this.panelControl2);
            this.panelControl1.Location = new System.Drawing.Point(198, 0);
            this.panelControl1.Name = "panelControl1";
            this.panelControl1.Size = new System.Drawing.Size(950, 733);
            this.panelControl1.TabIndex = 0;
            // 
            // lblPorcentagemHomens
            // 
            this.lblPorcentagemHomens.AutoSize = true;
            this.lblPorcentagemHomens.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
            this.lblPorcentagemHomens.Font = new System.Drawing.Font("Microsoft Sans Serif", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblPorcentagemHomens.ForeColor = System.Drawing.Color.DodgerBlue;
            this.lblPorcentagemHomens.Location = new System.Drawing.Point(11, 95);
            this.lblPorcentagemHomens.Name = "lblPorcentagemHomens";
            this.lblPorcentagemHomens.Size = new System.Drawing.Size(27, 29);
            this.lblPorcentagemHomens.TabIndex = 107;
            this.lblPorcentagemHomens.Text = "0";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
            this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label2.ForeColor = System.Drawing.Color.DodgerBlue;
            this.label2.Location = new System.Drawing.Point(315, 95);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(36, 29);
            this.label2.TabIndex = 109;
            this.label2.Text = "%";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
            this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.ForeColor = System.Drawing.Color.DodgerBlue;
            this.label1.Location = new System.Drawing.Point(46, 95);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(36, 29);
            this.label1.TabIndex = 108;
            this.label1.Text = "%";
            // 
            // lblPorcentagemMulheres
            // 
            this.lblPorcentagemMulheres.AutoSize = true;
            this.lblPorcentagemMulheres.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
            this.lblPorcentagemMulheres.Font = new System.Drawing.Font("Microsoft Sans Serif", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblPorcentagemMulheres.ForeColor = System.Drawing.Color.DodgerBlue;
            this.lblPorcentagemMulheres.Location = new System.Drawing.Point(281, 95);
            this.lblPorcentagemMulheres.Name = "lblPorcentagemMulheres";
            this.lblPorcentagemMulheres.Size = new System.Drawing.Size(27, 29);
            this.lblPorcentagemMulheres.TabIndex = 106;
            this.lblPorcentagemMulheres.Text = "0";
            // 
            // panel10
            // 
            this.panel10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
            this.panel10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel10.BackgroundImage")));
            this.panel10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.panel10.Location = new System.Drawing.Point(367, 51);
            this.panel10.Name = "panel10";
            this.panel10.Size = new System.Drawing.Size(77, 73);
            this.panel10.TabIndex = 105;
            // 
            // panel9
            // 
            this.panel9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
            this.panel9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel9.BackgroundImage")));
            this.panel9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.panel9.Location = new System.Drawing.Point(88, 51);
            this.panel9.Name = "panel9";
            this.panel9.Size = new System.Drawing.Size(78, 73);
            this.panel9.TabIndex = 104;
            // 
            // labelControl13
            // 
            this.labelControl13.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl13.Location = new System.Drawing.Point(287, 51);
            this.labelControl13.Name = "labelControl13";
            this.labelControl13.Size = new System.Drawing.Size(64, 16);
            this.labelControl13.TabIndex = 103;
            this.labelControl13.Text = "Mulheres:";
            // 
            // labelControl12
            // 
            this.labelControl12.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl12.Location = new System.Drawing.Point(16, 51);
            this.labelControl12.Name = "labelControl12";
            this.labelControl12.Size = new System.Drawing.Size(56, 16);
            this.labelControl12.TabIndex = 102;
            this.labelControl12.Text = "Homens:";
            // 
            // panelControl12
            // 
            this.panelControl12.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
            this.panelControl12.Controls.Add(this.lblQtdConsultasAgendadas);
            this.panelControl12.Controls.Add(this.panel6);
            this.panelControl12.Controls.Add(this.labelControl11);
            this.panelControl12.Controls.Add(this.panelControl13);
            this.panelControl12.Location = new System.Drawing.Point(287, 332);
            this.panelControl12.Name = "panelControl12";
            this.panelControl12.Size = new System.Drawing.Size(264, 48);
            this.panelControl12.TabIndex = 15;
            // 
            // lblQtdConsultasAgendadas
            // 
            this.lblQtdConsultasAgendadas.AutoSize = true;
            this.lblQtdConsultasAgendadas.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblQtdConsultasAgendadas.ForeColor = System.Drawing.Color.SteelBlue;
            this.lblQtdConsultasAgendadas.Location = new System.Drawing.Point(224, 24);
            this.lblQtdConsultasAgendadas.Name = "lblQtdConsultasAgendadas";
            this.lblQtdConsultasAgendadas.Size = new System.Drawing.Size(19, 20);
            this.lblQtdConsultasAgendadas.TabIndex = 103;
            this.lblQtdConsultasAgendadas.Text = "0";
            // 
            // panel6
            // 
            this.panel6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel6.BackgroundImage")));
            this.panel6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.panel6.Location = new System.Drawing.Point(20, 5);
            this.panel6.Name = "panel6";
            this.panel6.Size = new System.Drawing.Size(43, 37);
            this.panel6.TabIndex = 92;
            // 
            // labelControl11
            // 
            this.labelControl11.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl11.Location = new System.Drawing.Point(121, 5);
            this.labelControl11.Name = "labelControl11";
            this.labelControl11.Size = new System.Drawing.Size(138, 16);
            this.labelControl11.TabIndex = 12;
            this.labelControl11.Text = "Consultas agendadas";
            // 
            // panelControl13
            // 
            this.panelControl13.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
            this.panelControl13.Location = new System.Drawing.Point(270, 0);
            this.panelControl13.Name = "panelControl13";
            this.panelControl13.Size = new System.Drawing.Size(264, 56);
            this.panelControl13.TabIndex = 10;
            // 
            // panelControl8
            // 
            this.panelControl8.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
            this.panelControl8.Controls.Add(this.lblQtdNovosPacientes);
            this.panelControl8.Controls.Add(this.labelControl7);
            this.panelControl8.Controls.Add(this.panel2);
            this.panelControl8.Controls.Add(this.panelControl9);
            this.panelControl8.Location = new System.Drawing.Point(287, 278);
            this.panelControl8.Name = "panelControl8";
            this.panelControl8.Size = new System.Drawing.Size(264, 48);
            this.panelControl8.TabIndex = 13;
            // 
            // lblQtdNovosPacientes
            // 
            this.lblQtdNovosPacientes.AutoSize = true;
            this.lblQtdNovosPacientes.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblQtdNovosPacientes.ForeColor = System.Drawing.Color.SteelBlue;
            this.lblQtdNovosPacientes.Location = new System.Drawing.Point(176, 24);
            this.lblQtdNovosPacientes.Name = "lblQtdNovosPacientes";
            this.lblQtdNovosPacientes.Size = new System.Drawing.Size(67, 20);
            this.lblQtdNovosPacientes.TabIndex = 105;
            this.lblQtdNovosPacientes.Text = "0 / Mês";
            // 
            // labelControl7
            // 
            this.labelControl7.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl7.Location = new System.Drawing.Point(153, 5);
            this.labelControl7.Name = "labelControl7";
            this.labelControl7.Size = new System.Drawing.Size(106, 16);
            this.labelControl7.TabIndex = 11;
            this.labelControl7.Text = "Novos pacientes";
            // 
            // panel2
            // 
            this.panel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel2.BackgroundImage")));
            this.panel2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.panel2.Location = new System.Drawing.Point(20, 5);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(43, 37);
            this.panel2.TabIndex = 90;
            // 
            // panelControl9
            // 
            this.panelControl9.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
            this.panelControl9.Location = new System.Drawing.Point(270, 0);
            this.panelControl9.Name = "panelControl9";
            this.panelControl9.Size = new System.Drawing.Size(264, 56);
            this.panelControl9.TabIndex = 10;
            // 
            // panelControl14
            // 
            this.panelControl14.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
            this.panelControl14.Controls.Add(this.labelControl9);
            this.panelControl14.Controls.Add(this.panelControl15);
            this.panelControl14.Controls.Add(this.lblQtdConveniosAtendidos);
            this.panelControl14.Controls.Add(this.panel3);
            this.panelControl14.Location = new System.Drawing.Point(17, 332);
            this.panelControl14.Name = "panelControl14";
            this.panelControl14.Size = new System.Drawing.Size(264, 48);
            this.panelControl14.TabIndex = 14;
            // 
            // labelControl9
            // 
            this.labelControl9.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl9.Location = new System.Drawing.Point(125, 5);
            this.labelControl9.Name = "labelControl9";
            this.labelControl9.Size = new System.Drawing.Size(134, 16);
            this.labelControl9.TabIndex = 13;
            this.labelControl9.Text = "Convênios atendidos";
            // 
            // panelControl15
            // 
            this.panelControl15.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
            this.panelControl15.Location = new System.Drawing.Point(270, 0);
            this.panelControl15.Name = "panelControl15";
            this.panelControl15.Size = new System.Drawing.Size(264, 56);
            this.panelControl15.TabIndex = 10;
            // 
            // lblQtdConveniosAtendidos
            // 
            this.lblQtdConveniosAtendidos.AutoSize = true;
            this.lblQtdConveniosAtendidos.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblQtdConveniosAtendidos.ForeColor = System.Drawing.Color.SteelBlue;
            this.lblQtdConveniosAtendidos.Location = new System.Drawing.Point(226, 24);
            this.lblQtdConveniosAtendidos.Name = "lblQtdConveniosAtendidos";
            this.lblQtdConveniosAtendidos.Size = new System.Drawing.Size(19, 20);
            this.lblQtdConveniosAtendidos.TabIndex = 102;
            this.lblQtdConveniosAtendidos.Text = "0";
            // 
            // panel3
            // 
            this.panel3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel3.BackgroundImage")));
            this.panel3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.panel3.Location = new System.Drawing.Point(20, 5);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(45, 37);
            this.panel3.TabIndex = 89;
            // 
            // panelControl6
            // 
            this.panelControl6.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
            this.panelControl6.Controls.Add(this.labelControl8);
            this.panelControl6.Controls.Add(this.panel5);
            this.panelControl6.Controls.Add(this.lblQtdTotalConsultas);
            this.panelControl6.Controls.Add(this.panelControl7);
            this.panelControl6.Location = new System.Drawing.Point(287, 224);
            this.panelControl6.Name = "panelControl6";
            this.panelControl6.Size = new System.Drawing.Size(264, 48);
            this.panelControl6.TabIndex = 11;
            // 
            // labelControl8
            // 
            this.labelControl8.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl8.Location = new System.Drawing.Point(141, 5);
            this.labelControl8.Name = "labelControl8";
            this.labelControl8.Size = new System.Drawing.Size(118, 16);
            this.labelControl8.TabIndex = 12;
            this.labelControl8.Text = "Total de consultas";
            // 
            // panel5
            // 
            this.panel5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel5.BackgroundImage")));
            this.panel5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.panel5.Location = new System.Drawing.Point(20, 5);
            this.panel5.Name = "panel5";
            this.panel5.Size = new System.Drawing.Size(43, 37);
            this.panel5.TabIndex = 93;
            // 
            // lblQtdTotalConsultas
            // 
            this.lblQtdTotalConsultas.AutoSize = true;
            this.lblQtdTotalConsultas.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblQtdTotalConsultas.ForeColor = System.Drawing.Color.SteelBlue;
            this.lblQtdTotalConsultas.Location = new System.Drawing.Point(224, 24);
            this.lblQtdTotalConsultas.Name = "lblQtdTotalConsultas";
            this.lblQtdTotalConsultas.Size = new System.Drawing.Size(19, 20);
            this.lblQtdTotalConsultas.TabIndex = 100;
            this.lblQtdTotalConsultas.Text = "0";
            // 
            // panelControl7
            // 
            this.panelControl7.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
            this.panelControl7.Location = new System.Drawing.Point(270, 0);
            this.panelControl7.Name = "panelControl7";
            this.panelControl7.Size = new System.Drawing.Size(264, 56);
            this.panelControl7.TabIndex = 10;
            // 
            // panelControl10
            // 
            this.panelControl10.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
            this.panelControl10.Controls.Add(this.panel7);
            this.panelControl10.Controls.Add(this.lblQtdDuracaoMediaConsulta);
            this.panelControl10.Controls.Add(this.labelControl10);
            this.panelControl10.Controls.Add(this.panelControl11);
            this.panelControl10.Location = new System.Drawing.Point(17, 278);
            this.panelControl10.Name = "panelControl10";
            this.panelControl10.Size = new System.Drawing.Size(264, 48);
            this.panelControl10.TabIndex = 12;
            // 
            // panel7
            // 
            this.panel7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel7.BackgroundImage")));
            this.panel7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.panel7.Location = new System.Drawing.Point(20, 5);
            this.panel7.Name = "panel7";
            this.panel7.Size = new System.Drawing.Size(45, 37);
            this.panel7.TabIndex = 91;
            // 
            // lblQtdDuracaoMediaConsulta
            // 
            this.lblQtdDuracaoMediaConsulta.AutoSize = true;
            this.lblQtdDuracaoMediaConsulta.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblQtdDuracaoMediaConsulta.ForeColor = System.Drawing.Color.SteelBlue;
            this.lblQtdDuracaoMediaConsulta.Location = new System.Drawing.Point(193, 24);
            this.lblQtdDuracaoMediaConsulta.Name = "lblQtdDuracaoMediaConsulta";
            this.lblQtdDuracaoMediaConsulta.Size = new System.Drawing.Size(52, 20);
            this.lblQtdDuracaoMediaConsulta.TabIndex = 104;
            this.lblQtdDuracaoMediaConsulta.Text = "0 min";
            // 
            // labelControl10
            // 
            this.labelControl10.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl10.Location = new System.Drawing.Point(104, 5);
            this.labelControl10.Name = "labelControl10";
            this.labelControl10.Size = new System.Drawing.Size(155, 16);
            this.labelControl10.TabIndex = 14;
            this.labelControl10.Text = "Duração média consulta";
            // 
            // panelControl11
            // 
            this.panelControl11.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
            this.panelControl11.Location = new System.Drawing.Point(270, 0);
            this.panelControl11.Name = "panelControl11";
            this.panelControl11.Size = new System.Drawing.Size(264, 56);
            this.panelControl11.TabIndex = 10;
            // 
            // panelControl4
            // 
            this.panelControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
            this.panelControl4.Controls.Add(this.panel8);
            this.panelControl4.Controls.Add(this.labelControl6);
            this.panelControl4.Controls.Add(this.panelControl5);
            this.panelControl4.Controls.Add(this.lblQtdTotalPacientes);
            this.panelControl4.Location = new System.Drawing.Point(17, 224);
            this.panelControl4.Name = "panelControl4";
            this.panelControl4.Size = new System.Drawing.Size(264, 48);
            this.panelControl4.TabIndex = 9;
            // 
            // panel8
            // 
            this.panel8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel8.BackgroundImage")));
            this.panel8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.panel8.Location = new System.Drawing.Point(20, 5);
            this.panel8.Name = "panel8";
            this.panel8.Size = new System.Drawing.Size(45, 38);
            this.panel8.TabIndex = 94;
            // 
            // labelControl6
            // 
            this.labelControl6.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl6.Location = new System.Drawing.Point(140, 5);
            this.labelControl6.Name = "labelControl6";
            this.labelControl6.Size = new System.Drawing.Size(119, 16);
            this.labelControl6.TabIndex = 1;
            this.labelControl6.Text = "Total de pacientes";
            // 
            // panelControl5
            // 
            this.panelControl5.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
            this.panelControl5.Location = new System.Drawing.Point(270, 0);
            this.panelControl5.Name = "panelControl5";
            this.panelControl5.Size = new System.Drawing.Size(264, 56);
            this.panelControl5.TabIndex = 10;
            // 
            // lblQtdTotalPacientes
            // 
            this.lblQtdTotalPacientes.AutoSize = true;
            this.lblQtdTotalPacientes.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblQtdTotalPacientes.ForeColor = System.Drawing.Color.SteelBlue;
            this.lblQtdTotalPacientes.Location = new System.Drawing.Point(226, 24);
            this.lblQtdTotalPacientes.Name = "lblQtdTotalPacientes";
            this.lblQtdTotalPacientes.Size = new System.Drawing.Size(19, 20);
            this.lblQtdTotalPacientes.TabIndex = 101;
            this.lblQtdTotalPacientes.Text = "0";
            // 
            // chartControl3
            // 
            this.chartControl3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.chartControl3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
            this.chartControl3.BorderOptions.Visibility = DevExpress.Utils.DefaultBoolean.False;
            this.chartControl3.Location = new System.Drawing.Point(570, 34);
            this.chartControl3.Name = "chartControl3";
            doughnutSeriesLabel2.Position = DevExpress.XtraCharts.PieSeriesLabelPosition.TwoColumns;
            series4.Label = doughnutSeriesLabel2;
            series4.Name = "Series 1";
            series4.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint16,
            seriesPoint17,
            seriesPoint18,
            seriesPoint19,
            seriesPoint20});
            doughnutSeriesView2.ExplodeMode = DevExpress.XtraCharts.PieExplodeMode.UsePoints;
            series4.View = doughnutSeriesView2;
            this.chartControl3.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series4};
            this.chartControl3.Size = new System.Drawing.Size(369, 144);
            this.chartControl3.TabIndex = 8;
            // 
            // labelControl4
            // 
            this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl4.Location = new System.Drawing.Point(569, 5);
            this.labelControl4.Name = "labelControl4";
            this.labelControl4.Size = new System.Drawing.Size(245, 23);
            this.labelControl4.TabIndex = 7;
            this.labelControl4.Text = "Procedimentos realizados";
            // 
            // labelControl5
            // 
            this.labelControl5.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl5.Location = new System.Drawing.Point(16, 5);
            this.labelControl5.Name = "labelControl5";
            this.labelControl5.Size = new System.Drawing.Size(203, 23);
            this.labelControl5.TabIndex = 6;
            this.labelControl5.Text = "Distribuição por sexo";
            // 
            // chartControl2
            // 
            this.chartControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.chartControl2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
            this.chartControl2.BorderOptions.Visibility = DevExpress.Utils.DefaultBoolean.False;
            xyDiagram3.AxisX.VisibleInPanesSerializable = "-1";
            xyDiagram3.AxisY.VisibleInPanesSerializable = "-1";
            this.chartControl2.Diagram = xyDiagram3;
            this.chartControl2.Legend.Visibility = DevExpress.Utils.DefaultBoolean.False;
            this.chartControl2.Location = new System.Drawing.Point(569, 221);
            this.chartControl2.Name = "chartControl2";
            series5.Name = "Series 1";
            series5.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint21,
            seriesPoint22,
            seriesPoint23,
            seriesPoint24,
            seriesPoint25});
            this.chartControl2.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series5};
            this.chartControl2.Size = new System.Drawing.Size(369, 167);
            this.chartControl2.TabIndex = 5;
            // 
            // labelControl3
            // 
            this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl3.Location = new System.Drawing.Point(569, 192);
            this.labelControl3.Name = "labelControl3";
            this.labelControl3.Size = new System.Drawing.Size(176, 23);
            this.labelControl3.TabIndex = 4;
            this.labelControl3.Text = "Distribuição etária";
            // 
            // labelControl2
            // 
            this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl2.Location = new System.Drawing.Point(16, 192);
            this.labelControl2.Name = "labelControl2";
            this.labelControl2.Size = new System.Drawing.Size(174, 23);
            this.labelControl2.TabIndex = 3;
            this.labelControl2.Text = "Estatísticas gerais";
            // 
            // labelControl1
            // 
            this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl1.Location = new System.Drawing.Point(16, 399);
            this.labelControl1.Name = "labelControl1";
            this.labelControl1.Size = new System.Drawing.Size(292, 23);
            this.labelControl1.TabIndex = 1;
            this.labelControl1.Text = "Total de consultas por período";
            // 
            // chartControl1
            // 
            this.chartControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.chartControl1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
            this.chartControl1.BorderOptions.Visibility = DevExpress.Utils.DefaultBoolean.False;
            xyDiagram4.AxisX.VisibleInPanesSerializable = "-1";
            xyDiagram4.AxisY.VisibleInPanesSerializable = "-1";
            this.chartControl1.Diagram = xyDiagram4;
            this.chartControl1.Legend.Visibility = DevExpress.Utils.DefaultBoolean.False;
            this.chartControl1.Location = new System.Drawing.Point(17, 428);
            this.chartControl1.Name = "chartControl1";
            series6.Name = "Series 1";
            series6.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint26,
            seriesPoint27,
            seriesPoint28,
            seriesPoint29,
            seriesPoint30});
            series6.View = lineSeriesView2;
            this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series6};
            this.chartControl1.Size = new System.Drawing.Size(922, 293);
            this.chartControl1.TabIndex = 2;
            // 
            // panelControl3
            // 
            this.panelControl3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.panelControl3.Appearance.BackColor = System.Drawing.Color.Red;
            this.panelControl3.Appearance.Options.UseBackColor = true;
            this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
            this.panelControl3.Location = new System.Drawing.Point(5, 394);
            this.panelControl3.Name = "panelControl3";
            this.panelControl3.Size = new System.Drawing.Size(940, 2);
            this.panelControl3.TabIndex = 1;
            // 
            // panelControl2
            // 
            this.panelControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.panelControl2.Appearance.BackColor = System.Drawing.Color.Red;
            this.panelControl2.Appearance.Options.UseBackColor = true;
            this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
            this.panelControl2.Location = new System.Drawing.Point(5, 184);
            this.panelControl2.Name = "panelControl2";
            this.panelControl2.Size = new System.Drawing.Size(940, 2);
            this.panelControl2.TabIndex = 0;
            // 
            // lblTituloPainel
            // 
            this.lblTituloPainel.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblTituloPainel.Location = new System.Drawing.Point(12, 12);
            this.lblTituloPainel.Name = "lblTituloPainel";
            this.lblTituloPainel.Size = new System.Drawing.Size(58, 23);
            this.lblTituloPainel.TabIndex = 0;
            this.lblTituloPainel.Text = "Painel";
            // 
            // lblTituloPacientesDia
            // 
            this.lblTituloPacientesDia.Location = new System.Drawing.Point(12, 41);
            this.lblTituloPacientesDia.Name = "lblTituloPacientesDia";
            this.lblTituloPacientesDia.Size = new System.Drawing.Size(82, 13);
            this.lblTituloPacientesDia.TabIndex = 0;
            this.lblTituloPacientesDia.Text = "Pacientes do dia:";
            // 
            // listPacientesDia
            // 
            this.listPacientesDia.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.listPacientesDia.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
            this.listPacientesDia.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.listPacientesDia.FormattingEnabled = true;
            this.listPacientesDia.Location = new System.Drawing.Point(12, 73);
            this.listPacientesDia.Name = "listPacientesDia";
            this.listPacientesDia.Size = new System.Drawing.Size(180, 650);
            this.listPacientesDia.TabIndex = 110;
            // 
            // frmPainel
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1148, 733);
            this.Controls.Add(this.listPacientesDia);
            this.Controls.Add(this.lblTituloPacientesDia);
            this.Controls.Add(this.lblTituloPainel);
            this.Controls.Add(this.panelControl1);
            this.Name = "frmPainel";
            this.Text = "frmPainel";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.frmPainel_Load);
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            this.panelControl1.ResumeLayout(false);
            this.panelControl1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl12)).EndInit();
            this.panelControl12.ResumeLayout(false);
            this.panelControl12.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl13)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl8)).EndInit();
            this.panelControl8.ResumeLayout(false);
            this.panelControl8.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl14)).EndInit();
            this.panelControl14.ResumeLayout(false);
            this.panelControl14.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl15)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).EndInit();
            this.panelControl6.ResumeLayout(false);
            this.panelControl6.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl10)).EndInit();
            this.panelControl10.ResumeLayout(false);
            this.panelControl10.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl11)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
            this.panelControl4.ResumeLayout(false);
            this.panelControl4.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(doughnutSeriesLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(doughnutSeriesView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Example #13
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraCharts.XYDiagram   xyDiagram1   = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series      series1      = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("10", new object[] {
         ((object)(10))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("20", new object[] {
         ((object)(20))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("30", new object[] {
         ((object)(30))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("40", new object[] {
         ((object)(40))
     });
     this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
     this.button1       = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     this.SuspendLayout();
     //
     // chartControl1
     //
     xyDiagram1.AxisY.Range.SideMarginsEnabled = true;
     xyDiagram1.AxisX.Range.SideMarginsEnabled = true;
     this.chartControl1.Diagram   = xyDiagram1;
     this.chartControl1.Location  = new System.Drawing.Point(24, 13);
     this.chartControl1.Name      = "chartControl1";
     series1.PointOptionsTypeName = "PointOptions";
     series1.Name = "Series 1";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint1,
         seriesPoint2,
         seriesPoint3,
         seriesPoint4
     });
     this.chartControl1.Series.AddRange(new DevExpress.XtraCharts.Series[] {
         series1
     });
     this.chartControl1.SeriesTemplate.PointOptionsTypeName = "PointOptions";
     this.chartControl1.Size     = new System.Drawing.Size(560, 375);
     this.chartControl1.TabIndex = 0;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(313, 424);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(159, 23);
     this.button1.TabIndex = 1;
     this.button1.Text     = "Show Preview";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(649, 476);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.chartControl1);
     this.Name = "Form1";
     this.Text = "Form1";
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraCharts.Series          series1          = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.PieSeriesLabel  pieSeriesLabel1  = new DevExpress.XtraCharts.PieSeriesLabel();
     DevExpress.XtraCharts.PiePointOptions piePointOptions1 = new DevExpress.XtraCharts.PiePointOptions();
     DevExpress.XtraCharts.SeriesPoint     seriesPoint1     = new DevExpress.XtraCharts.SeriesPoint(11, new object[] {
         ((object)(10))
     }, 0);
     DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint(12, new object[] {
         ((object)(20))
     }, 1);
     DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint(13, new object[] {
         ((object)(5))
     }, 3);
     DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint(14, new object[] {
         ((object)(8))
     }, 4);
     DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint(15, new object[] {
         ((object)(10))
     }, 5);
     DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint(16, new object[] {
         ((object)(20))
     }, 6);
     DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint(17, new object[] {
         ((object)(25))
     }, 7);
     DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint(18, new object[] {
         ((object)(10))
     }, 8);
     DevExpress.XtraCharts.SeriesPoint seriesPoint9 = new DevExpress.XtraCharts.SeriesPoint(19, new object[] {
         ((object)(10))
     }, 9);
     DevExpress.XtraCharts.PieSeriesView            pieSeriesView1            = new DevExpress.XtraCharts.PieSeriesView();
     DevExpress.XtraCharts.PieSeriesLabel           pieSeriesLabel2           = new DevExpress.XtraCharts.PieSeriesLabel();
     DevExpress.XtraCharts.PieSeriesView            pieSeriesView2            = new DevExpress.XtraCharts.PieSeriesView();
     DevExpress.XtraCharts.ChartTitle               chartTitle1               = new DevExpress.XtraCharts.ChartTitle();
     DevExpress.XtraCharts.XYDiagram                xyDiagram1                = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series                   series2                   = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel1 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.Series                   series3                   = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel2 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel3 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     this.groupBox1       = new System.Windows.Forms.GroupBox();
     this.dtEnd           = new System.Windows.Forms.DateTimePicker();
     this.label1          = new System.Windows.Forms.Label();
     this.label6          = new System.Windows.Forms.Label();
     this.dtBeginDate     = new System.Windows.Forms.DateTimePicker();
     this.nineCBSmallDept = new NineVigor.FrameWork.WinForms.Controls.NineComboBox(this.components);
     this.label3          = new System.Windows.Forms.Label();
     this.chartControl1   = new DevExpress.XtraCharts.ChartControl();
     this.chartControl2   = new DevExpress.XtraCharts.ChartControl();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pieSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pieSeriesView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel3)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.dtEnd);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.dtBeginDate);
     this.groupBox1.Controls.Add(this.nineCBSmallDept);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(772, 67);
     this.groupBox1.TabIndex = 5;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "分析条件";
     //
     // dtEnd
     //
     this.dtEnd.CustomFormat = "yyyy-MM-dd";
     this.dtEnd.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtEnd.Location     = new System.Drawing.Point(411, 20);
     this.dtEnd.Name         = "dtEnd";
     this.dtEnd.Size         = new System.Drawing.Size(101, 21);
     this.dtEnd.TabIndex     = 17;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(382, 23);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(23, 12);
     this.label1.TabIndex = 16;
     this.label1.Text     = "至 ";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(202, 23);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(65, 12);
     this.label6.TabIndex = 15;
     this.label6.Text     = "分析月份:";
     //
     // dtBeginDate
     //
     this.dtBeginDate.CustomFormat = "yyyy-MM-dd";
     this.dtBeginDate.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtBeginDate.Location     = new System.Drawing.Point(275, 18);
     this.dtBeginDate.Name         = "dtBeginDate";
     this.dtBeginDate.Size         = new System.Drawing.Size(101, 21);
     this.dtBeginDate.TabIndex     = 8;
     //
     // nineCBSmallDept
     //
     this.nineCBSmallDept.ArrowBackColor     = System.Drawing.SystemColors.Control;
     this.nineCBSmallDept.DropDownHeight     = 424;
     this.nineCBSmallDept.DropDownStyle      = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.nineCBSmallDept.FormattingEnabled  = true;
     this.nineCBSmallDept.IntegralHeight     = false;
     this.nineCBSmallDept.IsEnter2Tab        = false;
     this.nineCBSmallDept.IsFlat             = false;
     this.nineCBSmallDept.IsLike             = true;
     this.nineCBSmallDept.IsListOnly         = false;
     this.nineCBSmallDept.IsPopForm          = true;
     this.nineCBSmallDept.IsShowCustomerList = false;
     this.nineCBSmallDept.IsShowID           = false;
     this.nineCBSmallDept.Location           = new System.Drawing.Point(58, 20);
     this.nineCBSmallDept.Name             = "nineCBSmallDept";
     this.nineCBSmallDept.PopForm          = null;
     this.nineCBSmallDept.ShowCustomerList = false;
     this.nineCBSmallDept.ShowID           = false;
     this.nineCBSmallDept.Size             = new System.Drawing.Size(121, 20);
     this.nineCBSmallDept.Style            = NineVigor.FrameWork.WinForms.Controls.StyleType.Flat;
     this.nineCBSmallDept.TabIndex         = 6;
     this.nineCBSmallDept.Tag        = "";
     this.nineCBSmallDept.ToolBarUse = false;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(3, 25);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(41, 12);
     this.label3.TabIndex = 5;
     this.label3.Text     = "部门:";
     //
     // chartControl1
     //
     this.chartControl1.Dock = System.Windows.Forms.DockStyle.Left;
     this.chartControl1.Legend.EquallySpacedItems = false;
     this.chartControl1.Location = new System.Drawing.Point(0, 67);
     this.chartControl1.Name     = "chartControl1";
     series1.ArgumentScaleType   = DevExpress.XtraCharts.ScaleType.Qualitative;
     pieSeriesLabel1.LineVisible = true;
     series1.Label = pieSeriesLabel1;
     piePointOptions1.PercentOptions.ValueAsPercent = false;
     piePointOptions1.PointView = DevExpress.XtraCharts.PointView.ArgumentAndValues;
     series1.LegendPointOptions = piePointOptions1;
     series1.Name = "Series 1";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint1,
         seriesPoint2,
         seriesPoint3,
         seriesPoint4,
         seriesPoint5,
         seriesPoint6,
         seriesPoint7,
         seriesPoint8,
         seriesPoint9
     });
     series1.SynchronizePointOptions = false;
     series1.TopNOptions.Mode        = DevExpress.XtraCharts.TopNMode.ThresholdPercent;
     series1.TopNOptions.ShowOthers  = false;
     pieSeriesView1.RuntimeExploding = false;
     series1.View = pieSeriesView1;
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
         series1
     };
     pieSeriesLabel2.LineVisible             = true;
     this.chartControl1.SeriesTemplate.Label = pieSeriesLabel2;
     pieSeriesView2.RuntimeExploding         = false;
     this.chartControl1.SeriesTemplate.View  = pieSeriesView2;
     this.chartControl1.Size     = new System.Drawing.Size(282, 452);
     this.chartControl1.TabIndex = 6;
     chartTitle1.Font            = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold);
     chartTitle1.Text            = "住院证开立时间段分析";
     this.chartControl1.Titles.AddRange(new DevExpress.XtraCharts.ChartTitle[] {
         chartTitle1
     });
     this.chartControl1.ToolTipOptions.ShowForSeries = true;
     //
     // chartControl2
     //
     xyDiagram1.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram1.AxisX.Range.SideMarginsEnabled   = true;
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram1.AxisY.Range.SideMarginsEnabled   = true;
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     this.chartControl2.Diagram            = xyDiagram1;
     this.chartControl2.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.chartControl2.Location           = new System.Drawing.Point(282, 67);
     this.chartControl2.Name               = "chartControl2";
     sideBySideBarSeriesLabel1.LineVisible = true;
     series2.Label = sideBySideBarSeriesLabel1;
     series2.Name  = "Series 1";
     sideBySideBarSeriesLabel2.LineVisible = true;
     series3.Label = sideBySideBarSeriesLabel2;
     series3.Name  = "Series 2";
     this.chartControl2.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
         series2,
         series3
     };
     sideBySideBarSeriesLabel3.LineVisible   = true;
     this.chartControl2.SeriesTemplate.Label = sideBySideBarSeriesLabel3;
     this.chartControl2.Size     = new System.Drawing.Size(490, 452);
     this.chartControl2.TabIndex = 7;
     //
     // ucInMainPatientFeeType
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.chartControl2);
     this.Controls.Add(this.chartControl1);
     this.Controls.Add(this.groupBox1);
     this.Name  = "ucInMainPatientFeeType";
     this.Size  = new System.Drawing.Size(772, 519);
     this.Load += new System.EventHandler(this.ucInProofIfno_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pieSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pieSeriesView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl2)).EndInit();
     this.ResumeLayout(false);
 }
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
			DevExpress.XtraCharts.RectangleGradientFillOptions rectangleGradientFillOptions1 = new DevExpress.XtraCharts.RectangleGradientFillOptions();
			DevExpress.XtraCharts.ConstantLine constantLine1 = new DevExpress.XtraCharts.ConstantLine();
			DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
			DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel1 = new DevExpress.XtraCharts.PointSeriesLabel();
			DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint(0D, new object[] {
            ((object)(0D))});
			DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint(0.3D, new object[] {
            ((object)(0D))});
			DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint(1.4D, new object[] {
            ((object)(0D))});
			DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint(2.5D, new object[] {
            ((object)(0D))});
			DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint(3.6D, new object[] {
            ((object)(0D))});
			DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint(4.7D, new object[] {
            ((object)(0D))});
			DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint(5.8D, new object[] {
            ((object)(0D))});
			DevExpress.XtraCharts.LineSeriesView lineSeriesView1 = new DevExpress.XtraCharts.LineSeriesView();
			DevExpress.XtraCharts.Series series2 = new DevExpress.XtraCharts.Series();
			DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel2 = new DevExpress.XtraCharts.PointSeriesLabel();
			DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint(0D, new object[] {
            ((object)(0D))});
			DevExpress.XtraCharts.SeriesPoint seriesPoint9 = new DevExpress.XtraCharts.SeriesPoint(0.3D, new object[] {
            ((object)(0D))});
			DevExpress.XtraCharts.SeriesPoint seriesPoint10 = new DevExpress.XtraCharts.SeriesPoint(1.4D, new object[] {
            ((object)(0D))});
			DevExpress.XtraCharts.SeriesPoint seriesPoint11 = new DevExpress.XtraCharts.SeriesPoint(2.5D, new object[] {
            ((object)(0D))});
			DevExpress.XtraCharts.SeriesPoint seriesPoint12 = new DevExpress.XtraCharts.SeriesPoint(3.6D, new object[] {
            ((object)(0D))});
			DevExpress.XtraCharts.SeriesPoint seriesPoint13 = new DevExpress.XtraCharts.SeriesPoint(4.7D, new object[] {
            ((object)(0D))});
			DevExpress.XtraCharts.SeriesPoint seriesPoint14 = new DevExpress.XtraCharts.SeriesPoint(5.8D, new object[] {
            ((object)(0D))});
			DevExpress.XtraCharts.LineSeriesView lineSeriesView2 = new DevExpress.XtraCharts.LineSeriesView();
			DevExpress.XtraCharts.Series series3 = new DevExpress.XtraCharts.Series();
			DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel3 = new DevExpress.XtraCharts.PointSeriesLabel();
			DevExpress.XtraCharts.SeriesPoint seriesPoint15 = new DevExpress.XtraCharts.SeriesPoint(0D, new object[] {
            ((object)(0D))});
			DevExpress.XtraCharts.SeriesPoint seriesPoint16 = new DevExpress.XtraCharts.SeriesPoint(0.3D, new object[] {
            ((object)(0D))});
			DevExpress.XtraCharts.SeriesPoint seriesPoint17 = new DevExpress.XtraCharts.SeriesPoint(1.4D, new object[] {
            ((object)(0D))});
			DevExpress.XtraCharts.SeriesPoint seriesPoint18 = new DevExpress.XtraCharts.SeriesPoint(2.5D, new object[] {
            ((object)(0D))});
			DevExpress.XtraCharts.SeriesPoint seriesPoint19 = new DevExpress.XtraCharts.SeriesPoint(3.6D, new object[] {
            ((object)(0D))});
			DevExpress.XtraCharts.SeriesPoint seriesPoint20 = new DevExpress.XtraCharts.SeriesPoint(4.7D, new object[] {
            ((object)(0D))});
			DevExpress.XtraCharts.SeriesPoint seriesPoint21 = new DevExpress.XtraCharts.SeriesPoint(5.8D, new object[] {
            ((object)(0D))});
			DevExpress.XtraCharts.LineSeriesView lineSeriesView3 = new DevExpress.XtraCharts.LineSeriesView();
			DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel4 = new DevExpress.XtraCharts.PointSeriesLabel();
			DevExpress.XtraCharts.LineSeriesView lineSeriesView4 = new DevExpress.XtraCharts.LineSeriesView();
			this.beamLineChartControl = new DevExpress.XtraCharts.ChartControl();
			((System.ComponentModel.ISupportInitialize)(this.beamLineChartControl)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(pointSeriesLabel3)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(lineSeriesView3)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(pointSeriesLabel4)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(lineSeriesView4)).BeginInit();
			this.SuspendLayout();
			// 
			// beamLineChartControl
			// 
			this.beamLineChartControl.AppearanceName = "Light";
			this.beamLineChartControl.CacheToMemory = true;
			xyDiagram1.AxisX.Alignment = DevExpress.XtraCharts.AxisAlignment.Zero;
			xyDiagram1.AxisX.InterlacedColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
			xyDiagram1.AxisX.InterlacedFillStyle.FillMode = DevExpress.XtraCharts.FillMode.Gradient;
			rectangleGradientFillOptions1.Color2 = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
			xyDiagram1.AxisX.InterlacedFillStyle.Options = rectangleGradientFillOptions1;
			xyDiagram1.AxisX.Label.EndText = " m";
			xyDiagram1.AxisX.Range.Auto = false;
			xyDiagram1.AxisX.Range.MaxValueSerializable = "42";
			xyDiagram1.AxisX.Range.MinValueSerializable = "0";
			xyDiagram1.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
			xyDiagram1.AxisX.Range.SideMarginsEnabled = true;
			xyDiagram1.AxisX.Title.Alignment = System.Drawing.StringAlignment.Near;
			xyDiagram1.AxisX.Title.Antialiasing = false;
			xyDiagram1.AxisX.Title.Font = new System.Drawing.Font("Tahoma", 8F);
			xyDiagram1.AxisX.Title.Text = "Sector Lenght (m)";
			xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
			constantLine1.AxisValueSerializable = "0";
			constantLine1.LineStyle.DashStyle = DevExpress.XtraCharts.DashStyle.Solid;
			constantLine1.Name = "Drift Tube";
			constantLine1.ShowInLegend = false;
			xyDiagram1.AxisY.ConstantLines.AddRange(new DevExpress.XtraCharts.ConstantLine[] {
            constantLine1});
			xyDiagram1.AxisY.Range.Auto = false;
			xyDiagram1.AxisY.Range.MaxValueSerializable = "25";
			xyDiagram1.AxisY.Range.MinValueSerializable = "-25";
			xyDiagram1.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
			xyDiagram1.AxisY.Range.SideMarginsEnabled = true;
			xyDiagram1.AxisY.Title.Antialiasing = false;
			xyDiagram1.AxisY.Title.Font = new System.Drawing.Font("Tahoma", 8F);
			xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
			xyDiagram1.DefaultPane.SizeInPixels = 840;
			xyDiagram1.DefaultPane.SizeMode = DevExpress.XtraCharts.PaneSizeMode.UseSizeInPixels;
			xyDiagram1.Margins.Bottom = 0;
			xyDiagram1.Margins.Left = 1;
			xyDiagram1.Margins.Top = 0;
			this.beamLineChartControl.Diagram = xyDiagram1;
			this.beamLineChartControl.Legend.AlignmentHorizontal = DevExpress.XtraCharts.LegendAlignmentHorizontal.LeftOutside;
			this.beamLineChartControl.Legend.AlignmentVertical = DevExpress.XtraCharts.LegendAlignmentVertical.Bottom;
			this.beamLineChartControl.Legend.Margins.Bottom = 1;
			this.beamLineChartControl.Legend.Margins.Left = 1;
			this.beamLineChartControl.Legend.Margins.Right = 1;
			this.beamLineChartControl.Legend.Margins.Top = 1;
			this.beamLineChartControl.Location = new System.Drawing.Point(0, 0);
			this.beamLineChartControl.Name = "beamLineChartControl";
			this.beamLineChartControl.Padding.Bottom = 0;
			this.beamLineChartControl.Padding.Left = 0;
			this.beamLineChartControl.Padding.Right = 0;
			this.beamLineChartControl.Padding.Top = 0;
			this.beamLineChartControl.PaletteName = "Nature Colors";
			this.beamLineChartControl.RefreshDataOnRepaint = false;
			this.beamLineChartControl.RuntimeHitTesting = false;
			series1.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.Numerical;
			pointSeriesLabel1.Angle = -45;
			pointSeriesLabel1.Font = new System.Drawing.Font("Tahoma", 7F);
			pointSeriesLabel1.LineVisible = true;
			pointSeriesLabel1.ResolveOverlappingMode = DevExpress.XtraCharts.ResolveOverlappingMode.Default;
			pointSeriesLabel1.Visible = false;
			series1.Label = pointSeriesLabel1;
			series1.Name = "X-Position (mm)";
			series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint1,
            seriesPoint2,
            seriesPoint3,
            seriesPoint4,
            seriesPoint5,
            seriesPoint6,
            seriesPoint7});
			lineSeriesView1.LineMarkerOptions.Size = 5;
			series1.View = lineSeriesView1;
			series2.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.Numerical;
			pointSeriesLabel2.Angle = -135;
			pointSeriesLabel2.Font = new System.Drawing.Font("Tahoma", 7F);
			pointSeriesLabel2.LineVisible = true;
			pointSeriesLabel2.ResolveOverlappingMode = DevExpress.XtraCharts.ResolveOverlappingMode.Default;
			pointSeriesLabel2.Visible = false;
			series2.Label = pointSeriesLabel2;
			series2.Name = "Y-Position (mm)";
			series2.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint8,
            seriesPoint9,
            seriesPoint10,
            seriesPoint11,
            seriesPoint12,
            seriesPoint13,
            seriesPoint14});
			lineSeriesView2.LineMarkerOptions.Size = 5;
			series2.View = lineSeriesView2;
			series3.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.Numerical;
			pointSeriesLabel3.Angle = -90;
			pointSeriesLabel3.Font = new System.Drawing.Font("Tahoma", 7F);
			pointSeriesLabel3.LineLength = 7;
			pointSeriesLabel3.LineVisible = true;
			pointSeriesLabel3.ResolveOverlappingMode = DevExpress.XtraCharts.ResolveOverlappingMode.Default;
			pointSeriesLabel3.Visible = false;
			series3.Label = pointSeriesLabel3;
			series3.Name = "Current (10 µA)";
			series3.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint15,
            seriesPoint16,
            seriesPoint17,
            seriesPoint18,
            seriesPoint19,
            seriesPoint20,
            seriesPoint21});
			lineSeriesView3.LineMarkerOptions.Size = 5;
			series3.View = lineSeriesView3;
			this.beamLineChartControl.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series1,
        series2,
        series3};
			pointSeriesLabel4.LineVisible = true;
			this.beamLineChartControl.SeriesTemplate.Label = pointSeriesLabel4;
			this.beamLineChartControl.SeriesTemplate.View = lineSeriesView4;
			this.beamLineChartControl.Size = new System.Drawing.Size(9160, 125);
			this.beamLineChartControl.TabIndex = 2;
			this.beamLineChartControl.TabStop = false;
			// 
			// BeamLineChart
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Controls.Add(this.beamLineChartControl);
			this.Name = "BeamLineChart";
			this.Size = new System.Drawing.Size(9160, 125);
			((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(pointSeriesLabel3)).EndInit();
			((System.ComponentModel.ISupportInitialize)(lineSeriesView3)).EndInit();
			((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
			((System.ComponentModel.ISupportInitialize)(pointSeriesLabel4)).EndInit();
			((System.ComponentModel.ISupportInitialize)(lineSeriesView4)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.beamLineChartControl)).EndInit();
			this.ResumeLayout(false);

		}
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent() {
            DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.PointOptions pointOptions1 = new DevExpress.XtraCharts.PointOptions();
            DevExpress.XtraCharts.LineSeriesView lineSeriesView1 = new DevExpress.XtraCharts.LineSeriesView();
            DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("A", new object[] {
            ((object)(40))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("B", new object[] {
            ((object)(30))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("C", new object[] {
            ((object)(25))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("D", new object[] {
            ((object)(22.5))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint("E", new object[] {
            ((object)(21.25))});
            DevExpress.XtraCharts.Series series2 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.PointOptions pointOptions2 = new DevExpress.XtraCharts.PointOptions();
            DevExpress.XtraCharts.LineSeriesView lineSeriesView2 = new DevExpress.XtraCharts.LineSeriesView();
            DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint("A", new object[] {
            ((object)(1700))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint("B", new object[] {
            ((object)(900))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint("C", new object[] {
            ((object)(500))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint9 = new DevExpress.XtraCharts.SeriesPoint("D", new object[] {
            ((object)(300))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint10 = new DevExpress.XtraCharts.SeriesPoint("E", new object[] {
            ((object)(200))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint11 = new DevExpress.XtraCharts.SeriesPoint("F", new object[] {
            ((object)(150))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint12 = new DevExpress.XtraCharts.SeriesPoint("G", new object[] {
            ((object)(125))});
            this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.clientPanel = new DevExpress.XtraEditors.PanelControl();
            this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            ((System.ComponentModel.ISupportInitialize)(this.clientPanel)).BeginInit();
            this.clientPanel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).BeginInit();
            this.SuspendLayout();
            // 
            // ribbon
            // 
            this.ribbon.ApplicationButtonKeyTip = "";
            this.ribbon.ApplicationIcon = null;
            this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.barButtonItem1});
            this.ribbon.Location = new System.Drawing.Point(0, 0);
            this.ribbon.MaxItemId = 1;
            this.ribbon.Name = "ribbon";
            this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPage1});
            this.ribbon.SelectedPage = this.ribbonPage1;
            this.ribbon.Size = new System.Drawing.Size(595, 143);
            // 
            // ribbonPage1
            // 
            this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup1});
            this.ribbonPage1.KeyTip = "";
            this.ribbonPage1.Name = "ribbonPage1";
            this.ribbonPage1.Text = "ribbonPage1";
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem1);
            this.ribbonPageGroup1.KeyTip = "";
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            this.ribbonPageGroup1.Text = "ribbonPageGroup1";
            // 
            // ribbonStatusBar
            // 
            this.ribbonStatusBar.Location = new System.Drawing.Point(0, 457);
            this.ribbonStatusBar.Name = "ribbonStatusBar";
            this.ribbonStatusBar.Ribbon = this.ribbon;
            this.ribbonStatusBar.Size = new System.Drawing.Size(595, 25);
            // 
            // clientPanel
            // 
            this.clientPanel.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.clientPanel.Controls.Add(this.chartControl1);
            this.clientPanel.Dock = System.Windows.Forms.DockStyle.Fill;
            this.clientPanel.Location = new System.Drawing.Point(0, 143);
            this.clientPanel.Name = "clientPanel";
            this.clientPanel.Size = new System.Drawing.Size(595, 314);
            this.clientPanel.TabIndex = 2;
            // 
            // chartControl1
            // 
            xyDiagram1.AxisY.GridLines.MinorVisible = true;
            xyDiagram1.AxisY.Interlaced = true;
            xyDiagram1.AxisY.Title.Visible = true;
            xyDiagram1.AxisY.Title.Text = "Axis Y";
            xyDiagram1.AxisX.GridLines.Visible = true;
            xyDiagram1.AxisX.Title.Visible = true;
            xyDiagram1.AxisX.Title.Text = "Series 1, 2";
            this.chartControl1.Diagram = xyDiagram1;
            this.chartControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.chartControl1.Legend.Direction = DevExpress.XtraCharts.LegendDirection.BottomToTop;
            this.chartControl1.Location = new System.Drawing.Point(0, 0);
            this.chartControl1.Name = "chartControl1";
            pointOptions1.HiddenSerializableString = "to be serialized";
            pointOptions1.PointView = DevExpress.XtraCharts.PointView.ArgumentAndValues;
            series1.PointOptions = pointOptions1;
            series1.PointOptionsTypeName = "PointOptions";
            series1.View = lineSeriesView1;
            series1.Name = "Series 2";
            series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint1,
            seriesPoint2,
            seriesPoint3,
            seriesPoint4,
            seriesPoint5});
            pointOptions2.HiddenSerializableString = "to be serialized";
            pointOptions2.PointView = DevExpress.XtraCharts.PointView.ArgumentAndValues;
            series2.PointOptions = pointOptions2;
            series2.PointOptionsTypeName = "PointOptions";
            lineSeriesView2.LineMarkerOptions.Kind = DevExpress.XtraCharts.MarkerKind.Square;
            series2.View = lineSeriesView2;
            series2.Name = "Series 1";
            series2.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint6,
            seriesPoint7,
            seriesPoint8,
            seriesPoint9,
            seriesPoint10,
            seriesPoint11,
            seriesPoint12});
            this.chartControl1.Series.AddRange(new DevExpress.XtraCharts.Series[] {
            series1,
            series2});
            this.chartControl1.SeriesTemplate.PointOptionsTypeName = "PointOptions";
            this.chartControl1.Size = new System.Drawing.Size(595, 314);
            this.chartControl1.TabIndex = 2;
            // 
            // barButtonItem1
            // 
            this.barButtonItem1.Caption = "Chart Wizard...";
            this.barButtonItem1.Id = 0;
            this.barButtonItem1.Name = "barButtonItem1";
            this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
            // 
            // FormChart
            // 
            this.ClientSize = new System.Drawing.Size(595, 482);
            this.Controls.Add(this.clientPanel);
            this.Controls.Add(this.ribbonStatusBar);
            this.Controls.Add(this.ribbon);
            this.Name = "FormChart";
            this.Ribbon = this.ribbon;
            this.StatusBar = this.ribbonStatusBar;
            this.Text = "FormChart";
            ((System.ComponentModel.ISupportInitialize)(this.clientPanel)).EndInit();
            this.clientPanel.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
            this.ResumeLayout(false);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("0", new object[] {
            ((object)(7.6D))}, 0);
            DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("1", new object[] {
            ((object)(2.2D))}, 1);
            DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("2", new object[] {
            ((object)(2.9D))}, 2);
            DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("3", new object[] {
            ((object)(5.8D))}, 3);
            DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint("4", new object[] {
            ((object)(3.2D))}, 4);
            DevExpress.XtraCharts.PieSeriesView pieSeriesView1 = new DevExpress.XtraCharts.PieSeriesView();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmResumoTransacoes));
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
            this.lblTituloPainel = new DevExpress.XtraEditors.LabelControl();
            this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
            this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
            this.btnReceita = new DevExpress.XtraEditors.SimpleButton();
            this.btnDespesa = new DevExpress.XtraEditors.SimpleButton();
            this.btnTransferencia = new DevExpress.XtraEditors.SimpleButton();
            this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
            this.lblQtdCaixaEmpresa = new System.Windows.Forms.Label();
            this.panel5 = new System.Windows.Forms.Panel();
            this.button4 = new System.Windows.Forms.Button();
            this.lblQtdSaldoGeral = new System.Windows.Forms.Label();
            this.lblSaldoGeral = new System.Windows.Forms.Label();
            this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
            this.ltbProximaContasReceber = new System.Windows.Forms.ListBox();
            this.ltbProximasContasPagar = new System.Windows.Forms.ListBox();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesView1)).BeginInit();
            this.SuspendLayout();
            // 
            // panelControl1
            // 
            this.panelControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
            this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.panelControl1.Location = new System.Drawing.Point(384, 12);
            this.panelControl1.Name = "panelControl1";
            this.panelControl1.Size = new System.Drawing.Size(2, 584);
            this.panelControl1.TabIndex = 0;
            // 
            // panelControl2
            // 
            this.panelControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.panelControl2.Location = new System.Drawing.Point(12, 334);
            this.panelControl2.Name = "panelControl2";
            this.panelControl2.Size = new System.Drawing.Size(768, 2);
            this.panelControl2.TabIndex = 1;
            // 
            // lblTituloPainel
            // 
            this.lblTituloPainel.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblTituloPainel.Location = new System.Drawing.Point(12, 12);
            this.lblTituloPainel.Name = "lblTituloPainel";
            this.lblTituloPainel.Size = new System.Drawing.Size(186, 23);
            this.lblTituloPainel.TabIndex = 93;
            this.lblTituloPainel.Text = "Principais despesas";
            // 
            // chartControl1
            // 
            this.chartControl1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
            this.chartControl1.BorderOptions.Visibility = DevExpress.Utils.DefaultBoolean.False;
            this.chartControl1.Location = new System.Drawing.Point(12, 41);
            this.chartControl1.Name = "chartControl1";
            series1.Name = "Series 1";
            series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint1,
            seriesPoint2,
            seriesPoint3,
            seriesPoint4,
            seriesPoint5});
            series1.View = pieSeriesView1;
            this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series1};
            this.chartControl1.Size = new System.Drawing.Size(366, 287);
            this.chartControl1.TabIndex = 94;
            // 
            // labelControl1
            // 
            this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl1.Location = new System.Drawing.Point(392, 12);
            this.labelControl1.Name = "labelControl1";
            this.labelControl1.Size = new System.Drawing.Size(107, 23);
            this.labelControl1.TabIndex = 95;
            this.labelControl1.Text = "Transações";
            // 
            // btnReceita
            // 
            this.btnReceita.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.btnReceita.Appearance.BackColor = System.Drawing.Color.LimeGreen;
            this.btnReceita.Appearance.Options.UseBackColor = true;
            this.btnReceita.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnReceita.Location = new System.Drawing.Point(394, 52);
            this.btnReceita.Name = "btnReceita";
            this.btnReceita.Size = new System.Drawing.Size(107, 33);
            this.btnReceita.TabIndex = 96;
            this.btnReceita.Text = "Receita";
            this.btnReceita.Click += new System.EventHandler(this.btnReceita_Click);
            // 
            // btnDespesa
            // 
            this.btnDespesa.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.btnDespesa.Appearance.BackColor = System.Drawing.Color.Red;
            this.btnDespesa.Appearance.Options.UseBackColor = true;
            this.btnDespesa.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnDespesa.Location = new System.Drawing.Point(507, 52);
            this.btnDespesa.Name = "btnDespesa";
            this.btnDespesa.Size = new System.Drawing.Size(107, 33);
            this.btnDespesa.TabIndex = 97;
            this.btnDespesa.Text = "Despesa";
            this.btnDespesa.Click += new System.EventHandler(this.btnDespesa_Click);
            // 
            // btnTransferencia
            // 
            this.btnTransferencia.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.btnTransferencia.Appearance.BackColor = System.Drawing.Color.DarkGray;
            this.btnTransferencia.Appearance.Options.UseBackColor = true;
            this.btnTransferencia.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnTransferencia.Location = new System.Drawing.Point(620, 52);
            this.btnTransferencia.Name = "btnTransferencia";
            this.btnTransferencia.Size = new System.Drawing.Size(107, 33);
            this.btnTransferencia.TabIndex = 98;
            this.btnTransferencia.Text = "Transferência";
            this.btnTransferencia.Click += new System.EventHandler(this.btnTransferencia_Click);
            // 
            // labelControl2
            // 
            this.labelControl2.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl2.Location = new System.Drawing.Point(392, 129);
            this.labelControl2.Name = "labelControl2";
            this.labelControl2.Size = new System.Drawing.Size(53, 23);
            this.labelControl2.TabIndex = 99;
            this.labelControl2.Text = "Saldo";
            // 
            // lblQtdCaixaEmpresa
            // 
            this.lblQtdCaixaEmpresa.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.lblQtdCaixaEmpresa.AutoSize = true;
            this.lblQtdCaixaEmpresa.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblQtdCaixaEmpresa.Location = new System.Drawing.Point(503, 291);
            this.lblQtdCaixaEmpresa.Name = "lblQtdCaixaEmpresa";
            this.lblQtdCaixaEmpresa.Size = new System.Drawing.Size(102, 24);
            this.lblQtdCaixaEmpresa.TabIndex = 102;
            this.lblQtdCaixaEmpresa.Text = "R$ 000,00";
            // 
            // panel5
            // 
            this.panel5.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.panel5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel5.BackgroundImage")));
            this.panel5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.panel5.Location = new System.Drawing.Point(403, 255);
            this.panel5.Name = "panel5";
            this.panel5.Size = new System.Drawing.Size(74, 60);
            this.panel5.TabIndex = 101;
            // 
            // button4
            // 
            this.button4.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.button4.Enabled = false;
            this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
            this.button4.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.button4.Location = new System.Drawing.Point(392, 244);
            this.button4.Name = "button4";
            this.button4.Size = new System.Drawing.Size(249, 83);
            this.button4.TabIndex = 100;
            this.button4.Text = "Caixa - Empresa";
            this.button4.TextAlign = System.Drawing.ContentAlignment.TopRight;
            this.button4.UseVisualStyleBackColor = true;
            // 
            // lblQtdSaldoGeral
            // 
            this.lblQtdSaldoGeral.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.lblQtdSaldoGeral.AutoSize = true;
            this.lblQtdSaldoGeral.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblQtdSaldoGeral.Location = new System.Drawing.Point(389, 203);
            this.lblQtdSaldoGeral.Name = "lblQtdSaldoGeral";
            this.lblQtdSaldoGeral.Size = new System.Drawing.Size(116, 31);
            this.lblQtdSaldoGeral.TabIndex = 104;
            this.lblQtdSaldoGeral.Text = "R$ 0,00";
            // 
            // lblSaldoGeral
            // 
            this.lblSaldoGeral.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.lblSaldoGeral.AutoSize = true;
            this.lblSaldoGeral.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblSaldoGeral.Location = new System.Drawing.Point(392, 187);
            this.lblSaldoGeral.Name = "lblSaldoGeral";
            this.lblSaldoGeral.Size = new System.Drawing.Size(112, 16);
            this.lblSaldoGeral.TabIndex = 103;
            this.lblSaldoGeral.Text = "SALDO GERAL";
            // 
            // labelControl3
            // 
            this.labelControl3.Anchor = System.Windows.Forms.AnchorStyles.None;
            this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl3.Location = new System.Drawing.Point(392, 342);
            this.labelControl3.Name = "labelControl3";
            this.labelControl3.Size = new System.Drawing.Size(234, 23);
            this.labelControl3.TabIndex = 106;
            this.labelControl3.Text = "Próximas contas a pagar";
            // 
            // labelControl4
            // 
            this.labelControl4.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl4.Location = new System.Drawing.Point(12, 342);
            this.labelControl4.Name = "labelControl4";
            this.labelControl4.Size = new System.Drawing.Size(251, 23);
            this.labelControl4.TabIndex = 105;
            this.labelControl4.Text = "Próximas contas a receber";
            // 
            // ltbProximaContasReceber
            // 
            this.ltbProximaContasReceber.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.ltbProximaContasReceber.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
            this.ltbProximaContasReceber.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.ltbProximaContasReceber.FormattingEnabled = true;
            this.ltbProximaContasReceber.Items.AddRange(new object[] {
            "Nenhuma transação encontrada"});
            this.ltbProximaContasReceber.Location = new System.Drawing.Point(12, 375);
            this.ltbProximaContasReceber.Name = "ltbProximaContasReceber";
            this.ltbProximaContasReceber.Size = new System.Drawing.Size(366, 221);
            this.ltbProximaContasReceber.TabIndex = 108;
            // 
            // ltbProximasContasPagar
            // 
            this.ltbProximasContasPagar.Anchor = System.Windows.Forms.AnchorStyles.None;
            this.ltbProximasContasPagar.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
            this.ltbProximasContasPagar.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.ltbProximasContasPagar.FormattingEnabled = true;
            this.ltbProximasContasPagar.Items.AddRange(new object[] {
            "Nenhuma transação encontrada"});
            this.ltbProximasContasPagar.Location = new System.Drawing.Point(392, 375);
            this.ltbProximasContasPagar.Name = "ltbProximasContasPagar";
            this.ltbProximasContasPagar.Size = new System.Drawing.Size(388, 221);
            this.ltbProximasContasPagar.TabIndex = 107;
            // 
            // frmResumoTransacoes
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(792, 608);
            this.Controls.Add(this.ltbProximaContasReceber);
            this.Controls.Add(this.ltbProximasContasPagar);
            this.Controls.Add(this.labelControl3);
            this.Controls.Add(this.labelControl4);
            this.Controls.Add(this.lblQtdSaldoGeral);
            this.Controls.Add(this.lblSaldoGeral);
            this.Controls.Add(this.lblQtdCaixaEmpresa);
            this.Controls.Add(this.panel5);
            this.Controls.Add(this.button4);
            this.Controls.Add(this.labelControl2);
            this.Controls.Add(this.btnTransferencia);
            this.Controls.Add(this.btnDespesa);
            this.Controls.Add(this.btnReceita);
            this.Controls.Add(this.labelControl1);
            this.Controls.Add(this.chartControl1);
            this.Controls.Add(this.lblTituloPainel);
            this.Controls.Add(this.panelControl2);
            this.Controls.Add(this.panelControl1);
            this.Name = "frmResumoTransacoes";
            this.Text = "frmResumoTransacoes";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.frmResumoTransacoes_Load);
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Example #18
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            DevExpress.XtraCharts.XYDiagram xyDiagram6 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.Series series6 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SeriesPoint seriesPoint26 = new DevExpress.XtraCharts.SeriesPoint(0D, new object[] {
            ((object)(5.6D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint27 = new DevExpress.XtraCharts.SeriesPoint(1D, new object[] {
            ((object)(0.5D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint28 = new DevExpress.XtraCharts.SeriesPoint(2D, new object[] {
            ((object)(2.7D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint29 = new DevExpress.XtraCharts.SeriesPoint(3D, new object[] {
            ((object)(2.9D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint30 = new DevExpress.XtraCharts.SeriesPoint(4D, new object[] {
            ((object)(0.08D))});
            DevExpress.XtraCharts.LineSeriesView lineSeriesView4 = new DevExpress.XtraCharts.LineSeriesView();
            DevExpress.XtraCharts.XYDiagram xyDiagram5 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.Series series5 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SeriesPoint seriesPoint21 = new DevExpress.XtraCharts.SeriesPoint(0D, new object[] {
            ((object)(4.2D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint22 = new DevExpress.XtraCharts.SeriesPoint(1D, new object[] {
            ((object)(6.5D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint23 = new DevExpress.XtraCharts.SeriesPoint(2D, new object[] {
            ((object)(1.7D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint24 = new DevExpress.XtraCharts.SeriesPoint(3D, new object[] {
            ((object)(8.8D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint25 = new DevExpress.XtraCharts.SeriesPoint(4D, new object[] {
            ((object)(5.2D))});
            DevExpress.XtraCharts.LineSeriesView lineSeriesView3 = new DevExpress.XtraCharts.LineSeriesView();
            DevExpress.XtraCharts.XYDiagram xyDiagram4 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.Series series4 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SeriesPoint seriesPoint16 = new DevExpress.XtraCharts.SeriesPoint(0D, new object[] {
            ((object)(3.1D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint17 = new DevExpress.XtraCharts.SeriesPoint(1D, new object[] {
            ((object)(6D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint18 = new DevExpress.XtraCharts.SeriesPoint(2D, new object[] {
            ((object)(7.6D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint19 = new DevExpress.XtraCharts.SeriesPoint(3D, new object[] {
            ((object)(2.6D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint20 = new DevExpress.XtraCharts.SeriesPoint(4D, new object[] {
            ((object)(2.8D))});
            DevExpress.XtraCharts.LineSeriesView lineSeriesView2 = new DevExpress.XtraCharts.LineSeriesView();
            DevExpress.XtraCharts.XYDiagram xyDiagram3 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.Series series3 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SeriesPoint seriesPoint11 = new DevExpress.XtraCharts.SeriesPoint(0D, new object[] {
            ((object)(1.6D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint12 = new DevExpress.XtraCharts.SeriesPoint(1D, new object[] {
            ((object)(6.6D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint13 = new DevExpress.XtraCharts.SeriesPoint(2D, new object[] {
            ((object)(2.6D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint14 = new DevExpress.XtraCharts.SeriesPoint(3D, new object[] {
            ((object)(6.2D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint15 = new DevExpress.XtraCharts.SeriesPoint(4D, new object[] {
            ((object)(5.2D))});
            DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint(0D, new object[] {
            ((object)(1.6D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint(1D, new object[] {
            ((object)(6.6D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint(2D, new object[] {
            ((object)(2.6D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint(3D, new object[] {
            ((object)(6.2D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint(4D, new object[] {
            ((object)(5.2D))});
            DevExpress.XtraCharts.XYDiagram xyDiagram2 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.Series series2 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint(0D, new object[] {
            ((object)(3.1D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint(1D, new object[] {
            ((object)(6D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint(2D, new object[] {
            ((object)(7.6D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint9 = new DevExpress.XtraCharts.SeriesPoint(3D, new object[] {
            ((object)(2.6D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint10 = new DevExpress.XtraCharts.SeriesPoint(4D, new object[] {
            ((object)(2.8D))});
            DevExpress.XtraCharts.LineSeriesView lineSeriesView1 = new DevExpress.XtraCharts.LineSeriesView();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(JLSimOutput));
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.groupBox3 = new System.Windows.Forms.GroupBox();
            this.listViewCaseSummary = new System.Windows.Forms.ListView();
            this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.buttonExport = new System.Windows.Forms.Button();
            this.buttonLoad = new System.Windows.Forms.Button();
            this.listBoxCases = new System.Windows.Forms.ListBox();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.buttonFolder = new System.Windows.Forms.Button();
            this.textBoxFolder = new System.Windows.Forms.TextBox();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.tabPage3 = new System.Windows.Forms.TabPage();
            this.tabPage4 = new System.Windows.Forms.TabPage();
            this.tabPage5 = new System.Windows.Forms.TabPage();
            this.chartReturns = new DevExpress.XtraCharts.ChartControl();
            this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
            this.chartWeights = new DevExpress.XtraCharts.ChartControl();
            this.chartIndicesPrice = new DevExpress.XtraCharts.ChartControl();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.chartIndicesVolume = new DevExpress.XtraCharts.ChartControl();
            this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            this.chartSecurityVolume = new DevExpress.XtraCharts.ChartControl();
            this.chartSecurityPrice = new DevExpress.XtraCharts.ChartControl();
            this.checkedlbxSecurities = new System.Windows.Forms.CheckedListBox();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.groupBox3.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.tabPage2.SuspendLayout();
            this.tabPage3.SuspendLayout();
            this.tabPage4.SuspendLayout();
            this.tabPage5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chartReturns)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartWeights)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartIndicesPrice)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).BeginInit();
            this.tableLayoutPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chartIndicesVolume)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
            this.tableLayoutPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chartSecurityVolume)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartSecurityPrice)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).BeginInit();
            this.SuspendLayout();
            // 
            // tabControl1
            // 
            this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Controls.Add(this.tabPage3);
            this.tabControl1.Controls.Add(this.tabPage4);
            this.tabControl1.Controls.Add(this.tabPage5);
            this.tabControl1.Location = new System.Drawing.Point(12, 12);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(982, 565);
            this.tabControl1.TabIndex = 0;
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.groupBox3);
            this.tabPage1.Controls.Add(this.groupBox2);
            this.tabPage1.Controls.Add(this.groupBox1);
            this.tabPage1.Location = new System.Drawing.Point(4, 22);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage1.Size = new System.Drawing.Size(974, 539);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "Cases";
            this.tabPage1.UseVisualStyleBackColor = true;
            // 
            // groupBox3
            // 
            this.groupBox3.Controls.Add(this.listViewCaseSummary);
            this.groupBox3.Location = new System.Drawing.Point(452, 33);
            this.groupBox3.Name = "groupBox3";
            this.groupBox3.Size = new System.Drawing.Size(505, 499);
            this.groupBox3.TabIndex = 2;
            this.groupBox3.TabStop = false;
            this.groupBox3.Text = "Case Summary Data";
            // 
            // listViewCaseSummary
            // 
            this.listViewCaseSummary.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader1,
            this.columnHeader2});
            this.listViewCaseSummary.FullRowSelect = true;
            this.listViewCaseSummary.GridLines = true;
            this.listViewCaseSummary.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
            this.listViewCaseSummary.Location = new System.Drawing.Point(7, 20);
            this.listViewCaseSummary.Name = "listViewCaseSummary";
            this.listViewCaseSummary.Size = new System.Drawing.Size(493, 474);
            this.listViewCaseSummary.TabIndex = 0;
            this.listViewCaseSummary.UseCompatibleStateImageBehavior = false;
            this.listViewCaseSummary.View = System.Windows.Forms.View.Details;
            // 
            // columnHeader1
            // 
            this.columnHeader1.Width = 320;
            // 
            // columnHeader2
            // 
            this.columnHeader2.Width = 300;
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.buttonExport);
            this.groupBox2.Controls.Add(this.buttonLoad);
            this.groupBox2.Controls.Add(this.listBoxCases);
            this.groupBox2.Location = new System.Drawing.Point(33, 109);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(394, 424);
            this.groupBox2.TabIndex = 1;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "Cases Available";
            // 
            // buttonExport
            // 
            this.buttonExport.Location = new System.Drawing.Point(288, 393);
            this.buttonExport.Name = "buttonExport";
            this.buttonExport.Size = new System.Drawing.Size(75, 23);
            this.buttonExport.TabIndex = 2;
            this.buttonExport.Text = "Export Case";
            this.buttonExport.UseVisualStyleBackColor = true;
            // 
            // buttonLoad
            // 
            this.buttonLoad.Location = new System.Drawing.Point(15, 393);
            this.buttonLoad.Name = "buttonLoad";
            this.buttonLoad.Size = new System.Drawing.Size(75, 23);
            this.buttonLoad.TabIndex = 1;
            this.buttonLoad.Text = "Load Case";
            this.buttonLoad.UseVisualStyleBackColor = true;
            this.buttonLoad.Click += new System.EventHandler(this.buttonLoad_Click);
            // 
            // listBoxCases
            // 
            this.listBoxCases.FormattingEnabled = true;
            this.listBoxCases.Location = new System.Drawing.Point(15, 37);
            this.listBoxCases.Name = "listBoxCases";
            this.listBoxCases.Size = new System.Drawing.Size(348, 342);
            this.listBoxCases.TabIndex = 0;
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.buttonFolder);
            this.groupBox1.Controls.Add(this.textBoxFolder);
            this.groupBox1.Location = new System.Drawing.Point(33, 33);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(394, 55);
            this.groupBox1.TabIndex = 0;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Data Folder";
            // 
            // buttonFolder
            // 
            this.buttonFolder.Location = new System.Drawing.Point(366, 19);
            this.buttonFolder.Name = "buttonFolder";
            this.buttonFolder.Size = new System.Drawing.Size(26, 21);
            this.buttonFolder.TabIndex = 1;
            this.buttonFolder.Text = "...";
            this.buttonFolder.UseVisualStyleBackColor = true;
            this.buttonFolder.Click += new System.EventHandler(this.buttonFolder_Click);
            // 
            // textBoxFolder
            // 
            this.textBoxFolder.Location = new System.Drawing.Point(7, 20);
            this.textBoxFolder.Name = "textBoxFolder";
            this.textBoxFolder.ReadOnly = true;
            this.textBoxFolder.Size = new System.Drawing.Size(356, 20);
            this.textBoxFolder.TabIndex = 0;
            this.textBoxFolder.TextChanged += new System.EventHandler(this.textBoxFolder_TextChanged);
            // 
            // tabPage2
            // 
            this.tabPage2.Controls.Add(this.tableLayoutPanel2);
            this.tabPage2.Location = new System.Drawing.Point(4, 22);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage2.Size = new System.Drawing.Size(974, 539);
            this.tabPage2.TabIndex = 1;
            this.tabPage2.Text = "Securities";
            this.tabPage2.UseVisualStyleBackColor = true;
            // 
            // tabPage3
            // 
            this.tabPage3.Controls.Add(this.tableLayoutPanel1);
            this.tabPage3.Location = new System.Drawing.Point(4, 22);
            this.tabPage3.Name = "tabPage3";
            this.tabPage3.Size = new System.Drawing.Size(974, 539);
            this.tabPage3.TabIndex = 2;
            this.tabPage3.Text = "Indices";
            this.tabPage3.UseVisualStyleBackColor = true;
            // 
            // tabPage4
            // 
            this.tabPage4.Controls.Add(this.chartWeights);
            this.tabPage4.Location = new System.Drawing.Point(4, 22);
            this.tabPage4.Name = "tabPage4";
            this.tabPage4.Size = new System.Drawing.Size(974, 539);
            this.tabPage4.TabIndex = 3;
            this.tabPage4.Text = "Weights";
            this.tabPage4.UseVisualStyleBackColor = true;
            // 
            // tabPage5
            // 
            this.tabPage5.Controls.Add(this.chartReturns);
            this.tabPage5.Location = new System.Drawing.Point(4, 22);
            this.tabPage5.Name = "tabPage5";
            this.tabPage5.Size = new System.Drawing.Size(974, 539);
            this.tabPage5.TabIndex = 4;
            this.tabPage5.Text = "Returns";
            this.tabPage5.UseVisualStyleBackColor = true;
            // 
            // chartReturns
            // 
            this.chartReturns.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            xyDiagram6.AxisX.Title.Text = "Month";
            xyDiagram6.AxisX.Title.Visibility = DevExpress.Utils.DefaultBoolean.Default;
            xyDiagram6.AxisX.VisibleInPanesSerializable = "-1";
            xyDiagram6.AxisY.Title.Text = "Return Estimate (%)";
            xyDiagram6.AxisY.Title.Visibility = DevExpress.Utils.DefaultBoolean.Default;
            xyDiagram6.AxisY.VisibleInPanesSerializable = "-1";
            this.chartReturns.Diagram = xyDiagram6;
            this.chartReturns.Legend.AlignmentHorizontal = DevExpress.XtraCharts.LegendAlignmentHorizontal.Center;
            this.chartReturns.Legend.AlignmentVertical = DevExpress.XtraCharts.LegendAlignmentVertical.BottomOutside;
            this.chartReturns.Legend.Direction = DevExpress.XtraCharts.LegendDirection.LeftToRight;
            this.chartReturns.Location = new System.Drawing.Point(19, 16);
            this.chartReturns.Name = "chartReturns";
            series6.Name = "Series 1";
            series6.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint26,
            seriesPoint27,
            seriesPoint28,
            seriesPoint29,
            seriesPoint30});
            series6.View = lineSeriesView4;
            this.chartReturns.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series6};
            this.chartReturns.Size = new System.Drawing.Size(936, 507);
            this.chartReturns.TabIndex = 0;
            // 
            // chartWeights
            // 
            this.chartWeights.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            xyDiagram5.AxisX.Title.Text = "Day";
            xyDiagram5.AxisX.Title.Visibility = DevExpress.Utils.DefaultBoolean.Default;
            xyDiagram5.AxisX.VisibleInPanesSerializable = "-1";
            xyDiagram5.AxisY.Title.Text = "Portfolio Weight (%)";
            xyDiagram5.AxisY.Title.Visibility = DevExpress.Utils.DefaultBoolean.Default;
            xyDiagram5.AxisY.VisibleInPanesSerializable = "-1";
            this.chartWeights.Diagram = xyDiagram5;
            this.chartWeights.Location = new System.Drawing.Point(3, 3);
            this.chartWeights.Name = "chartWeights";
            series5.Name = "Series 1";
            series5.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint21,
            seriesPoint22,
            seriesPoint23,
            seriesPoint24,
            seriesPoint25});
            series5.View = lineSeriesView3;
            this.chartWeights.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series5};
            this.chartWeights.Size = new System.Drawing.Size(968, 536);
            this.chartWeights.TabIndex = 0;
            // 
            // chartIndicesPrice
            // 
            this.chartIndicesPrice.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            xyDiagram4.AxisX.VisibleInPanesSerializable = "-1";
            xyDiagram4.AxisY.VisibleInPanesSerializable = "-1";
            this.chartIndicesPrice.Diagram = xyDiagram4;
            this.chartIndicesPrice.Location = new System.Drawing.Point(3, 3);
            this.chartIndicesPrice.Name = "chartIndicesPrice";
            series4.Name = "Series 1";
            series4.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint16,
            seriesPoint17,
            seriesPoint18,
            seriesPoint19,
            seriesPoint20});
            series4.View = lineSeriesView2;
            this.chartIndicesPrice.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series4};
            this.chartIndicesPrice.Size = new System.Drawing.Size(968, 263);
            this.chartIndicesPrice.TabIndex = 1;
            // 
            // tableLayoutPanel1
            // 
            this.tableLayoutPanel1.ColumnCount = 1;
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel1.Controls.Add(this.chartIndicesVolume, 0, 1);
            this.tableLayoutPanel1.Controls.Add(this.chartIndicesPrice, 0, 0);
            this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
            this.tableLayoutPanel1.RowCount = 2;
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel1.Size = new System.Drawing.Size(974, 539);
            this.tableLayoutPanel1.TabIndex = 0;
            // 
            // chartIndicesVolume
            // 
            this.chartIndicesVolume.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            xyDiagram3.AxisX.VisibleInPanesSerializable = "-1";
            xyDiagram3.AxisY.VisibleInPanesSerializable = "-1";
            this.chartIndicesVolume.Diagram = xyDiagram3;
            this.chartIndicesVolume.Location = new System.Drawing.Point(3, 272);
            this.chartIndicesVolume.Name = "chartIndicesVolume";
            series3.Name = "Series 1";
            series3.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint11,
            seriesPoint12,
            seriesPoint13,
            seriesPoint14,
            seriesPoint15});
            this.chartIndicesVolume.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series3};
            this.chartIndicesVolume.Size = new System.Drawing.Size(968, 264);
            this.chartIndicesVolume.TabIndex = 3;
            // 
            // tableLayoutPanel2
            // 
            this.tableLayoutPanel2.ColumnCount = 2;
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 150F));
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel2.Controls.Add(this.chartSecurityVolume, 1, 1);
            this.tableLayoutPanel2.Controls.Add(this.chartSecurityPrice, 1, 0);
            this.tableLayoutPanel2.Controls.Add(this.checkedlbxSecurities, 0, 0);
            this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 3);
            this.tableLayoutPanel2.Name = "tableLayoutPanel2";
            this.tableLayoutPanel2.RowCount = 2;
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel2.Size = new System.Drawing.Size(968, 533);
            this.tableLayoutPanel2.TabIndex = 1;
            // 
            // chartSecurityVolume
            // 
            xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
            xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
            this.chartSecurityVolume.Diagram = xyDiagram1;
            this.chartSecurityVolume.Dock = System.Windows.Forms.DockStyle.Fill;
            this.chartSecurityVolume.Location = new System.Drawing.Point(153, 269);
            this.chartSecurityVolume.Name = "chartSecurityVolume";
            series1.Name = "Series 1";
            series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint1,
            seriesPoint2,
            seriesPoint3,
            seriesPoint4,
            seriesPoint5});
            this.chartSecurityVolume.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series1};
            this.chartSecurityVolume.Size = new System.Drawing.Size(812, 261);
            this.chartSecurityVolume.TabIndex = 3;
            // 
            // chartSecurityPrice
            // 
            xyDiagram2.AxisX.VisibleInPanesSerializable = "-1";
            xyDiagram2.AxisY.VisibleInPanesSerializable = "-1";
            this.chartSecurityPrice.Diagram = xyDiagram2;
            this.chartSecurityPrice.Dock = System.Windows.Forms.DockStyle.Fill;
            this.chartSecurityPrice.Location = new System.Drawing.Point(153, 3);
            this.chartSecurityPrice.Name = "chartSecurityPrice";
            series2.Name = "Series 1";
            series2.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint6,
            seriesPoint7,
            seriesPoint8,
            seriesPoint9,
            seriesPoint10});
            series2.View = lineSeriesView1;
            this.chartSecurityPrice.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series2};
            this.chartSecurityPrice.Size = new System.Drawing.Size(812, 260);
            this.chartSecurityPrice.TabIndex = 1;
            // 
            // checkedlbxSecurities
            // 
            this.checkedlbxSecurities.Dock = System.Windows.Forms.DockStyle.Fill;
            this.checkedlbxSecurities.FormattingEnabled = true;
            this.checkedlbxSecurities.Location = new System.Drawing.Point(3, 3);
            this.checkedlbxSecurities.Name = "checkedlbxSecurities";
            this.tableLayoutPanel2.SetRowSpan(this.checkedlbxSecurities, 2);
            this.checkedlbxSecurities.Size = new System.Drawing.Size(144, 527);
            this.checkedlbxSecurities.TabIndex = 4;
            this.checkedlbxSecurities.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.checkedlbxSecurities_ItemCheck);
            // 
            // JLSimOutput
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1006, 589);
            this.Controls.Add(this.tabControl1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "JLSimOutput";
            this.Text = "JLMSim Output";
            this.Load += new System.EventHandler(this.JLSimOutput_Load);
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.groupBox3.ResumeLayout(false);
            this.groupBox2.ResumeLayout(false);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.tabPage2.ResumeLayout(false);
            this.tabPage3.ResumeLayout(false);
            this.tabPage4.ResumeLayout(false);
            this.tabPage5.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(xyDiagram6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartReturns)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartWeights)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartIndicesPrice)).EndInit();
            this.tableLayoutPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(xyDiagram3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartIndicesVolume)).EndInit();
            this.tableLayoutPanel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartSecurityVolume)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartSecurityPrice)).EndInit();
            this.ResumeLayout(false);

        }
Example #19
0
        private XRControl AddStatistics(TemplateProperty template, TemplateDynamicData property, float yPosition, float xPosition)
        {
            var chart1 = new XRChart();
            var pieSeriesView1 = new DevExpress.XtraCharts.PieSeriesView();
            pieSeriesView1.RuntimeExploding = false;
            chart1.BorderColor = Color.Black;
            chart1.Borders = DevExpress.XtraPrinting.BorderSide.None;
            chart1.LocationFloat = new DevExpress.Utils.PointFloat(xPosition, yPosition);
            chart1.Name = "xrChart1" + Guid.NewGuid();

            //chart1.Titles.Add(new DevExpress.XtraCharts.ChartTitle { Text= });
            var series1 = new DevExpress.XtraCharts.Series();
            chart1.Series.Add(series1);

            series1.View = pieSeriesView1;

            var pieSeriesLabel1 = series1.Label as DevExpress.XtraCharts.PieSeriesLabel;
            pieSeriesLabel1.LineVisible = true;
            pieSeriesLabel1.Position = DevExpress.XtraCharts.PieSeriesLabelPosition.TwoColumns;
            chart1.Legend.AlignmentHorizontal = DevExpress.XtraCharts.LegendAlignmentHorizontal.LeftOutside;
            chart1.Legend.AlignmentVertical = DevExpress.XtraCharts.LegendAlignmentVertical.Top;

            //this is the label with lines connected to the pie chart
            var piePointOptions1 = pieSeriesLabel1.PointOptions as DevExpress.XtraCharts.PiePointOptions;
            piePointOptions1.PointView = DevExpress.XtraCharts.PointView.Values;
            piePointOptions1.PercentOptions.ValueAsPercent = false;
            piePointOptions1.ValueNumericOptions.Format = DevExpress.XtraCharts.NumericFormat.Number;
            piePointOptions1.ValueNumericOptions.Precision = 0;

            // this is the label with the name and value
            var piePointOptions2 = series1.LegendPointOptions as DevExpress.XtraCharts.PiePointOptions;
            piePointOptions2.PointView = DevExpress.XtraCharts.PointView.ArgumentAndValues;
            piePointOptions2.ValueNumericOptions.Format = DevExpress.XtraCharts.NumericFormat.Percent;
            piePointOptions2.ValueNumericOptions.Precision = 0;
            piePointOptions2.PercentOptions.ValueAsPercent = true;
            piePointOptions2.Pattern = "{V} : {A} ";

            //sorting by argument or by value
            PercentageValueSortingOption sortby = property.Statistics.PercentageValueSortBy;
            if (sortby == null ||
                sortby == PercentageValueSortingOption.PercentageDescending)
            {
                series1.SeriesPointsSorting = DevExpress.XtraCharts.SortingMode.Descending;
                series1.SeriesPointsSortingKey = DevExpress.XtraCharts.SeriesPointKey.Value_1;
            }
            else if (sortby == PercentageValueSortingOption.PercentageAscending)
            {
                series1.SeriesPointsSorting = DevExpress.XtraCharts.SortingMode.Ascending;
                series1.SeriesPointsSortingKey = DevExpress.XtraCharts.SeriesPointKey.Value_1;
            }
            else if (sortby == PercentageValueSortingOption.ValueDescending)
            {
                series1.SeriesPointsSorting = DevExpress.XtraCharts.SortingMode.Descending;
                series1.SeriesPointsSortingKey = DevExpress.XtraCharts.SeriesPointKey.Argument;
            }
            else if (sortby == PercentageValueSortingOption.ValueAscending)
            {
                series1.SeriesPointsSorting = DevExpress.XtraCharts.SortingMode.Ascending;
                series1.SeriesPointsSortingKey = DevExpress.XtraCharts.SeriesPointKey.Argument;
            }

            //set the data base on the statistics.data
            property.Statistics.Data = GetetStatisticsData(template, property.Statistics);

            //add data to the charts
            int cnt = 0;

            var sorted = property.Statistics.Data.OrderBy(e => e.Value);
            foreach (var item in sorted)
            {

                var seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint(item.Key, new object[] { ((object)(item.Value)) }, cnt);
                cnt++;
                series1.Points.Add(seriesPoint1);
            }

            if (!string.IsNullOrEmpty(property.Statistics.ChartTitle))
            {
                DevExpress.XtraCharts.ChartTitle newChartTitle = new DevExpress.XtraCharts.ChartTitle { Text = property.Statistics.ChartTitle };
                newChartTitle.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, FontStyle.Bold);
                newChartTitle.Alignment = StringAlignment.Near;
                newChartTitle.Dock = DevExpress.XtraCharts.ChartTitleDockStyle.Top;
                chart1.Titles.Add(newChartTitle);
            }

            //Add total items
            int totalCategory = property.Statistics.Data.Count;

            if (property.Statistics.IsTotalCountVisible)
            {
                int totalCount = GetTotalItems(property.Statistics.Data);
                DevExpress.XtraCharts.ChartTitle totalitems = new DevExpress.XtraCharts.ChartTitle { Text = "Total items: " + totalCount };
                totalitems.Font = new System.Drawing.Font("Tahoma", 8F, FontStyle.Bold);
                totalitems.Alignment = StringAlignment.Near;
                totalitems.Dock = DevExpress.XtraCharts.ChartTitleDockStyle.Bottom;
                chart1.Titles.Add(totalitems);
            }
            //chart1.SizeF = new System.Drawing.SizeF(505.2083F, 100 + (totalCategory * 60));
            if (property.Statistics.GraphSize == GraphSize.Small)
                chart1.SizeF = new System.Drawing.SizeF(505.2083F, 300);
            else if (property.Statistics.GraphSize == GraphSize.Normal)
                chart1.SizeF = new System.Drawing.SizeF(505.2083F, 500);
            else if (property.Statistics.GraphSize == GraphSize.Large)
                chart1.SizeF = new System.Drawing.SizeF(505.2083F, 700);
            return chart1;
        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            DevExpress.XtraCharts.XYDiagram3D xyDiagram3D1 = new DevExpress.XtraCharts.XYDiagram3D();
            DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.Line3DSeriesLabel line3DSeriesLabel1 = new DevExpress.XtraCharts.Line3DSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(1997, 1, 1, 0, 0, 0, 0), new object[] {
            ((object)(263D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(1999, 11, 1, 0, 0, 0, 0), new object[] {
            ((object)(169D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2001, 11, 1, 0, 0, 0, 0), new object[] {
            ((object)(57D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2003, 11, 1, 0, 0, 0, 0), new object[] {
            ((object)(0D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2005, 11, 1, 0, 0, 0, 0), new object[] {
            ((object)(0D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2007, 11, 1, 0, 0, 0, 0), new object[] {
            ((object)(0D))});
            DevExpress.XtraCharts.Spline3DSeriesView spline3DSeriesView1 = new DevExpress.XtraCharts.Spline3DSeriesView();
            DevExpress.XtraCharts.Series series2 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.Line3DSeriesLabel line3DSeriesLabel2 = new DevExpress.XtraCharts.Line3DSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(1997, 11, 1, 0, 0, 0, 0), new object[] {
            ((object)(226D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(1999, 11, 1, 0, 0, 0, 0), new object[] {
            ((object)(256D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint9 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2001, 11, 1, 0, 0, 0, 0), new object[] {
            ((object)(257D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint10 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2003, 11, 1, 0, 0, 0, 0), new object[] {
            ((object)(163D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint11 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2005, 11, 1, 0, 0, 0, 0), new object[] {
            ((object)(103D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint12 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2007, 11, 1, 0, 0, 0, 0), new object[] {
            ((object)(91D))});
            DevExpress.XtraCharts.Spline3DSeriesView spline3DSeriesView2 = new DevExpress.XtraCharts.Spline3DSeriesView();
            DevExpress.XtraCharts.Series series3 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.Line3DSeriesLabel line3DSeriesLabel3 = new DevExpress.XtraCharts.Line3DSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint13 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(1997, 11, 1, 0, 0, 0, 0), new object[] {
            ((object)(10D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint14 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(1999, 11, 1, 0, 0, 0, 0), new object[] {
            ((object)(66D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint15 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2001, 11, 1, 0, 0, 0, 0), new object[] {
            ((object)(143D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint16 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2003, 11, 1, 0, 0, 0, 0), new object[] {
            ((object)(127D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint17 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2005, 11, 1, 0, 0, 0, 0), new object[] {
            ((object)(36D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint18 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2007, 11, 1, 0, 0, 0, 0), new object[] {
            ((object)(3D))});
            DevExpress.XtraCharts.Spline3DSeriesView spline3DSeriesView3 = new DevExpress.XtraCharts.Spline3DSeriesView();
            DevExpress.XtraCharts.Series series4 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.Line3DSeriesLabel line3DSeriesLabel4 = new DevExpress.XtraCharts.Line3DSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint19 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(1997, 11, 1, 0, 0, 0, 0), new object[] {
            ((object)(1D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint20 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(1999, 11, 1, 0, 0, 0, 0), new object[] {
            ((object)(7D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint21 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2001, 11, 1, 0, 0, 0, 0), new object[] {
            ((object)(43D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint22 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2003, 11, 1, 0, 0, 0, 0), new object[] {
            ((object)(210D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint23 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2005, 11, 1, 0, 0, 0, 0), new object[] {
            ((object)(361D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint24 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2007, 11, 1, 0, 0, 0, 0), new object[] {
            ((object)(406D))});
            DevExpress.XtraCharts.Spline3DSeriesView spline3DSeriesView4 = new DevExpress.XtraCharts.Spline3DSeriesView();
            DevExpress.XtraCharts.Line3DSeriesLabel line3DSeriesLabel5 = new DevExpress.XtraCharts.Line3DSeriesLabel();
            DevExpress.XtraCharts.Spline3DSeriesView spline3DSeriesView5 = new DevExpress.XtraCharts.Spline3DSeriesView();
            DevExpress.XtraCharts.ChartTitle chartTitle1 = new DevExpress.XtraCharts.ChartTitle();
            DevExpress.XtraCharts.ChartTitle chartTitle2 = new DevExpress.XtraCharts.ChartTitle();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DColumn chartControlCommandGalleryItemGroup2DColumn1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DColumn();
            DevExpress.XtraCharts.UI.CreateBarChartItem createBarChartItem1 = new DevExpress.XtraCharts.UI.CreateBarChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedBarChartItem createFullStackedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateFullStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateSideBySideFullStackedBarChartItem createSideBySideFullStackedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateSideBySideFullStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateSideBySideStackedBarChartItem createSideBySideStackedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateSideBySideStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateStackedBarChartItem createStackedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateStackedBarChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DColumn chartControlCommandGalleryItemGroup3DColumn1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DColumn();
            DevExpress.XtraCharts.UI.CreateBar3DChartItem createBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedBar3DChartItem createFullStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateManhattanBarChartItem createManhattanBarChartItem1 = new DevExpress.XtraCharts.UI.CreateManhattanBarChartItem();
            DevExpress.XtraCharts.UI.CreateSideBySideFullStackedBar3DChartItem createSideBySideFullStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateSideBySideFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateSideBySideStackedBar3DChartItem createSideBySideStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateSideBySideStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateStackedBar3DChartItem createStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupCylinderColumn chartControlCommandGalleryItemGroupCylinderColumn1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupCylinderColumn();
            DevExpress.XtraCharts.UI.CreateCylinderBar3DChartItem createCylinderBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateCylinderBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateCylinderFullStackedBar3DChartItem createCylinderFullStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateCylinderFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateCylinderManhattanBarChartItem createCylinderManhattanBarChartItem1 = new DevExpress.XtraCharts.UI.CreateCylinderManhattanBarChartItem();
            DevExpress.XtraCharts.UI.CreateCylinderSideBySideFullStackedBar3DChartItem createCylinderSideBySideFullStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateCylinderSideBySideFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateCylinderSideBySideStackedBar3DChartItem createCylinderSideBySideStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateCylinderSideBySideStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateCylinderStackedBar3DChartItem createCylinderStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateCylinderStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupConeColumn chartControlCommandGalleryItemGroupConeColumn1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupConeColumn();
            DevExpress.XtraCharts.UI.CreateConeBar3DChartItem createConeBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateConeBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateConeFullStackedBar3DChartItem createConeFullStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateConeFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateConeManhattanBarChartItem createConeManhattanBarChartItem1 = new DevExpress.XtraCharts.UI.CreateConeManhattanBarChartItem();
            DevExpress.XtraCharts.UI.CreateConeSideBySideFullStackedBar3DChartItem createConeSideBySideFullStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateConeSideBySideFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateConeSideBySideStackedBar3DChartItem createConeSideBySideStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateConeSideBySideStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateConeStackedBar3DChartItem createConeStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateConeStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPyramidColumn chartControlCommandGalleryItemGroupPyramidColumn1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPyramidColumn();
            DevExpress.XtraCharts.UI.CreatePyramidBar3DChartItem createPyramidBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreatePyramidBar3DChartItem();
            DevExpress.XtraCharts.UI.CreatePyramidFullStackedBar3DChartItem createPyramidFullStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreatePyramidFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreatePyramidManhattanBarChartItem createPyramidManhattanBarChartItem1 = new DevExpress.XtraCharts.UI.CreatePyramidManhattanBarChartItem();
            DevExpress.XtraCharts.UI.CreatePyramidSideBySideFullStackedBar3DChartItem createPyramidSideBySideFullStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreatePyramidSideBySideFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreatePyramidSideBySideStackedBar3DChartItem createPyramidSideBySideStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreatePyramidSideBySideStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreatePyramidStackedBar3DChartItem createPyramidStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreatePyramidStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DLine chartControlCommandGalleryItemGroup2DLine1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DLine();
            DevExpress.XtraCharts.UI.CreateLineChartItem createLineChartItem1 = new DevExpress.XtraCharts.UI.CreateLineChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedLineChartItem createFullStackedLineChartItem1 = new DevExpress.XtraCharts.UI.CreateFullStackedLineChartItem();
            DevExpress.XtraCharts.UI.CreateScatterLineChartItem createScatterLineChartItem1 = new DevExpress.XtraCharts.UI.CreateScatterLineChartItem();
            DevExpress.XtraCharts.UI.CreateSplineChartItem createSplineChartItem1 = new DevExpress.XtraCharts.UI.CreateSplineChartItem();
            DevExpress.XtraCharts.UI.CreateStackedLineChartItem createStackedLineChartItem1 = new DevExpress.XtraCharts.UI.CreateStackedLineChartItem();
            DevExpress.XtraCharts.UI.CreateStepLineChartItem createStepLineChartItem1 = new DevExpress.XtraCharts.UI.CreateStepLineChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DLine chartControlCommandGalleryItemGroup3DLine1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DLine();
            DevExpress.XtraCharts.UI.CreateLine3DChartItem createLine3DChartItem1 = new DevExpress.XtraCharts.UI.CreateLine3DChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedLine3DChartItem createFullStackedLine3DChartItem1 = new DevExpress.XtraCharts.UI.CreateFullStackedLine3DChartItem();
            DevExpress.XtraCharts.UI.CreateSpline3DChartItem createSpline3DChartItem1 = new DevExpress.XtraCharts.UI.CreateSpline3DChartItem();
            DevExpress.XtraCharts.UI.CreateStackedLine3DChartItem createStackedLine3DChartItem1 = new DevExpress.XtraCharts.UI.CreateStackedLine3DChartItem();
            DevExpress.XtraCharts.UI.CreateStepLine3DChartItem createStepLine3DChartItem1 = new DevExpress.XtraCharts.UI.CreateStepLine3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DPie chartControlCommandGalleryItemGroup2DPie1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DPie();
            DevExpress.XtraCharts.UI.CreatePieChartItem createPieChartItem1 = new DevExpress.XtraCharts.UI.CreatePieChartItem();
            DevExpress.XtraCharts.UI.CreateDoughnutChartItem createDoughnutChartItem1 = new DevExpress.XtraCharts.UI.CreateDoughnutChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DPie chartControlCommandGalleryItemGroup3DPie1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DPie();
            DevExpress.XtraCharts.UI.CreatePie3DChartItem createPie3DChartItem1 = new DevExpress.XtraCharts.UI.CreatePie3DChartItem();
            DevExpress.XtraCharts.UI.CreateDoughnut3DChartItem createDoughnut3DChartItem1 = new DevExpress.XtraCharts.UI.CreateDoughnut3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DBar chartControlCommandGalleryItemGroup2DBar1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DBar();
            DevExpress.XtraCharts.UI.CreateRotatedBarChartItem createRotatedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateRotatedBarChartItem();
            DevExpress.XtraCharts.UI.CreateRotatedFullStackedBarChartItem createRotatedFullStackedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateRotatedFullStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateRotatedSideBySideFullStackedBarChartItem createRotatedSideBySideFullStackedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateRotatedSideBySideFullStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateRotatedSideBySideStackedBarChartItem createRotatedSideBySideStackedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateRotatedSideBySideStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateRotatedStackedBarChartItem createRotatedStackedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateRotatedStackedBarChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DArea chartControlCommandGalleryItemGroup2DArea1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DArea();
            DevExpress.XtraCharts.UI.CreateAreaChartItem createAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateAreaChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedAreaChartItem createFullStackedAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateFullStackedAreaChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedSplineAreaChartItem createFullStackedSplineAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateFullStackedSplineAreaChartItem();
            DevExpress.XtraCharts.UI.CreateSplineAreaChartItem createSplineAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateSplineAreaChartItem();
            DevExpress.XtraCharts.UI.CreateStackedAreaChartItem createStackedAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateStackedAreaChartItem();
            DevExpress.XtraCharts.UI.CreateStackedSplineAreaChartItem createStackedSplineAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateStackedSplineAreaChartItem();
            DevExpress.XtraCharts.UI.CreateStepAreaChartItem createStepAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateStepAreaChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DArea chartControlCommandGalleryItemGroup3DArea1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DArea();
            DevExpress.XtraCharts.UI.CreateArea3DChartItem createArea3DChartItem1 = new DevExpress.XtraCharts.UI.CreateArea3DChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedArea3DChartItem createFullStackedArea3DChartItem1 = new DevExpress.XtraCharts.UI.CreateFullStackedArea3DChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedSplineArea3DChartItem createFullStackedSplineArea3DChartItem1 = new DevExpress.XtraCharts.UI.CreateFullStackedSplineArea3DChartItem();
            DevExpress.XtraCharts.UI.CreateSplineArea3DChartItem createSplineArea3DChartItem1 = new DevExpress.XtraCharts.UI.CreateSplineArea3DChartItem();
            DevExpress.XtraCharts.UI.CreateStackedArea3DChartItem createStackedArea3DChartItem1 = new DevExpress.XtraCharts.UI.CreateStackedArea3DChartItem();
            DevExpress.XtraCharts.UI.CreateStackedSplineArea3DChartItem createStackedSplineArea3DChartItem1 = new DevExpress.XtraCharts.UI.CreateStackedSplineArea3DChartItem();
            DevExpress.XtraCharts.UI.CreateStepArea3DChartItem createStepArea3DChartItem1 = new DevExpress.XtraCharts.UI.CreateStepArea3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPoint chartControlCommandGalleryItemGroupPoint1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPoint();
            DevExpress.XtraCharts.UI.CreatePointChartItem createPointChartItem1 = new DevExpress.XtraCharts.UI.CreatePointChartItem();
            DevExpress.XtraCharts.UI.CreateBubbleChartItem createBubbleChartItem1 = new DevExpress.XtraCharts.UI.CreateBubbleChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupFunnel chartControlCommandGalleryItemGroupFunnel1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupFunnel();
            DevExpress.XtraCharts.UI.CreateFunnelChartItem createFunnelChartItem1 = new DevExpress.XtraCharts.UI.CreateFunnelChartItem();
            DevExpress.XtraCharts.UI.CreateFunnel3DChartItem createFunnel3DChartItem1 = new DevExpress.XtraCharts.UI.CreateFunnel3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupFinancial chartControlCommandGalleryItemGroupFinancial1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupFinancial();
            DevExpress.XtraCharts.UI.CreateStockChartItem createStockChartItem1 = new DevExpress.XtraCharts.UI.CreateStockChartItem();
            DevExpress.XtraCharts.UI.CreateCandleStickChartItem createCandleStickChartItem1 = new DevExpress.XtraCharts.UI.CreateCandleStickChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupRadar chartControlCommandGalleryItemGroupRadar1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupRadar();
            DevExpress.XtraCharts.UI.CreateRadarPointChartItem createRadarPointChartItem1 = new DevExpress.XtraCharts.UI.CreateRadarPointChartItem();
            DevExpress.XtraCharts.UI.CreateRadarLineChartItem createRadarLineChartItem1 = new DevExpress.XtraCharts.UI.CreateRadarLineChartItem();
            DevExpress.XtraCharts.UI.CreateRadarAreaChartItem createRadarAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateRadarAreaChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPolar chartControlCommandGalleryItemGroupPolar1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPolar();
            DevExpress.XtraCharts.UI.CreatePolarPointChartItem createPolarPointChartItem1 = new DevExpress.XtraCharts.UI.CreatePolarPointChartItem();
            DevExpress.XtraCharts.UI.CreatePolarLineChartItem createPolarLineChartItem1 = new DevExpress.XtraCharts.UI.CreatePolarLineChartItem();
            DevExpress.XtraCharts.UI.CreatePolarAreaChartItem createPolarAreaChartItem1 = new DevExpress.XtraCharts.UI.CreatePolarAreaChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupRange chartControlCommandGalleryItemGroupRange1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupRange();
            DevExpress.XtraCharts.UI.CreateRangeBarChartItem createRangeBarChartItem1 = new DevExpress.XtraCharts.UI.CreateRangeBarChartItem();
            DevExpress.XtraCharts.UI.CreateSideBySideRangeBarChartItem createSideBySideRangeBarChartItem1 = new DevExpress.XtraCharts.UI.CreateSideBySideRangeBarChartItem();
            DevExpress.XtraCharts.UI.CreateRangeAreaChartItem createRangeAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateRangeAreaChartItem();
            DevExpress.XtraCharts.UI.CreateRangeArea3DChartItem createRangeArea3DChartItem1 = new DevExpress.XtraCharts.UI.CreateRangeArea3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupGantt chartControlCommandGalleryItemGroupGantt1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupGantt();
            DevExpress.XtraCharts.UI.CreateGanttChartItem createGanttChartItem1 = new DevExpress.XtraCharts.UI.CreateGanttChartItem();
            DevExpress.XtraCharts.UI.CreateSideBySideGanttChartItem createSideBySideGanttChartItem1 = new DevExpress.XtraCharts.UI.CreateSideBySideGanttChartItem();
            DevExpress.Skins.SkinPaddingEdges skinPaddingEdges1 = new DevExpress.Skins.SkinPaddingEdges();
            DevExpress.Skins.SkinPaddingEdges skinPaddingEdges2 = new DevExpress.Skins.SkinPaddingEdges();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm));
            this.chartControl = new DevExpress.XtraCharts.ChartControl();
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.chartTypeBar1 = new DevExpress.XtraCharts.UI.ChartTypeBar();
            this.createBarBaseItem1 = new DevExpress.XtraCharts.UI.CreateBarBaseItem();
            this.galleryDropDown1 = new DevExpress.XtraBars.Ribbon.GalleryDropDown(this.components);
            this.createLineBaseItem1 = new DevExpress.XtraCharts.UI.CreateLineBaseItem();
            this.galleryDropDown2 = new DevExpress.XtraBars.Ribbon.GalleryDropDown(this.components);
            this.createPieBaseItem1 = new DevExpress.XtraCharts.UI.CreatePieBaseItem();
            this.galleryDropDown3 = new DevExpress.XtraBars.Ribbon.GalleryDropDown(this.components);
            this.createRotatedBarBaseItem1 = new DevExpress.XtraCharts.UI.CreateRotatedBarBaseItem();
            this.galleryDropDown4 = new DevExpress.XtraBars.Ribbon.GalleryDropDown(this.components);
            this.createAreaBaseItem1 = new DevExpress.XtraCharts.UI.CreateAreaBaseItem();
            this.galleryDropDown5 = new DevExpress.XtraBars.Ribbon.GalleryDropDown(this.components);
            this.createOtherSeriesTypesBaseItem1 = new DevExpress.XtraCharts.UI.CreateOtherSeriesTypesBaseItem();
            this.galleryDropDown6 = new DevExpress.XtraBars.Ribbon.GalleryDropDown(this.components);
            this.chartAppearanceBar1 = new DevExpress.XtraCharts.UI.ChartAppearanceBar();
            this.changePaletteGalleryBaseItem1 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryBaseItem();
            this.galleryDropDown7 = new DevExpress.XtraBars.Ribbon.GalleryDropDown(this.components);
            this.changeAppearanceGalleryBaseBarManagerItem1 = new DevExpress.XtraCharts.UI.ChangeAppearanceGalleryBaseBarManagerItem();
            this.galleryDropDown8 = new DevExpress.XtraBars.Ribbon.GalleryDropDown(this.components);
            this.chartWizardBar1 = new DevExpress.XtraCharts.UI.ChartWizardBar();
            this.runWizardChartItem1 = new DevExpress.XtraCharts.UI.RunWizardChartItem();
            this.chartTemplatesBar1 = new DevExpress.XtraCharts.UI.ChartTemplatesBar();
            this.saveAsTemplateChartItem1 = new DevExpress.XtraCharts.UI.SaveAsTemplateChartItem();
            this.loadTemplateChartItem1 = new DevExpress.XtraCharts.UI.LoadTemplateChartItem();
            this.chartPrintExportBar1 = new DevExpress.XtraCharts.UI.ChartPrintExportBar();
            this.printPreviewChartItem1 = new DevExpress.XtraCharts.UI.PrintPreviewChartItem();
            this.printChartItem1 = new DevExpress.XtraCharts.UI.PrintChartItem();
            this.createExportBaseItem1 = new DevExpress.XtraCharts.UI.CreateExportBaseItem();
            this.exportToPDFChartItem1 = new DevExpress.XtraCharts.UI.ExportToPDFChartItem();
            this.exportToHTMLChartItem1 = new DevExpress.XtraCharts.UI.ExportToHTMLChartItem();
            this.exportToMHTChartItem1 = new DevExpress.XtraCharts.UI.ExportToMHTChartItem();
            this.exportToXLSChartItem1 = new DevExpress.XtraCharts.UI.ExportToXLSChartItem();
            this.exportToXLSXChartItem1 = new DevExpress.XtraCharts.UI.ExportToXLSXChartItem();
            this.exportToRTFChartItem1 = new DevExpress.XtraCharts.UI.ExportToRTFChartItem();
            this.createExportToImageBaseItem1 = new DevExpress.XtraCharts.UI.CreateExportToImageBaseItem();
            this.exportToBMPChartItem1 = new DevExpress.XtraCharts.UI.ExportToBMPChartItem();
            this.exportToGIFChartItem1 = new DevExpress.XtraCharts.UI.ExportToGIFChartItem();
            this.exportToJPEGChartItem1 = new DevExpress.XtraCharts.UI.ExportToJPEGChartItem();
            this.exportToPNGChartItem1 = new DevExpress.XtraCharts.UI.ExportToPNGChartItem();
            this.exportToTIFFChartItem1 = new DevExpress.XtraCharts.UI.ExportToTIFFChartItem();
            this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
            this.chartBarController1 = new DevExpress.XtraCharts.UI.ChartBarController();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram3D1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(line3DSeriesLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(spline3DSeriesView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(line3DSeriesLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(spline3DSeriesView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(line3DSeriesLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(spline3DSeriesView3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(line3DSeriesLabel4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(spline3DSeriesView4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(line3DSeriesLabel5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(spline3DSeriesView5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartBarController1)).BeginInit();
            this.SuspendLayout();
            // 
            // chartControl
            // 
            this.chartControl.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
            xyDiagram3D1.AxisX.DateTimeGridAlignment = DevExpress.XtraCharts.DateTimeMeasurementUnit.Year;
            xyDiagram3D1.AxisX.DateTimeMeasureUnit = DevExpress.XtraCharts.DateTimeMeasurementUnit.Year;
            xyDiagram3D1.AxisX.DateTimeOptions.Format = DevExpress.XtraCharts.DateTimeFormat.Custom;
            xyDiagram3D1.AxisX.DateTimeOptions.FormatString = "yyyy";
            xyDiagram3D1.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
            xyDiagram3D1.AxisX.Range.SideMarginsEnabled = true;
            xyDiagram3D1.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
            xyDiagram3D1.AxisY.Range.SideMarginsEnabled = true;
            xyDiagram3D1.RotationMatrixSerializable = "0.766044443118978;-0.219846310392954;0.604022773555054;0;0;0.939692620785908;0.34" +
    "2020143325669;0;-0.642787609686539;-0.262002630229385;0.719846310392954;0;0;0;0;" +
    "1";
            xyDiagram3D1.RuntimeRotation = true;
            xyDiagram3D1.RuntimeScrolling = true;
            xyDiagram3D1.RuntimeZooming = true;
            xyDiagram3D1.VerticalScrollPercent = 6D;
            xyDiagram3D1.ZoomPercent = 130;
            this.chartControl.Diagram = xyDiagram3D1;
            this.chartControl.Dock = System.Windows.Forms.DockStyle.Fill;
            this.chartControl.Location = new System.Drawing.Point(0, 31);
            this.chartControl.Name = "chartControl";
            series1.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.DateTime;
            line3DSeriesLabel1.LineVisible = true;
            series1.Label = line3DSeriesLabel1;
            series1.LabelsVisibility = DevExpress.Utils.DefaultBoolean.False;
            series1.Name = "SMP";
            series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint1,
            seriesPoint2,
            seriesPoint3,
            seriesPoint4,
            seriesPoint5,
            seriesPoint6});
            spline3DSeriesView1.LineWidth = 1D;
            series1.View = spline3DSeriesView1;
            series2.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.DateTime;
            line3DSeriesLabel2.LineVisible = true;
            series2.Label = line3DSeriesLabel2;
            series2.LabelsVisibility = DevExpress.Utils.DefaultBoolean.False;
            series2.Name = "MMP";
            series2.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint7,
            seriesPoint8,
            seriesPoint9,
            seriesPoint10,
            seriesPoint11,
            seriesPoint12});
            spline3DSeriesView2.LineWidth = 1D;
            series2.View = spline3DSeriesView2;
            series3.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.DateTime;
            line3DSeriesLabel3.LineVisible = true;
            series3.Label = line3DSeriesLabel3;
            series3.LabelsVisibility = DevExpress.Utils.DefaultBoolean.False;
            series3.Name = "Constellations";
            series3.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint13,
            seriesPoint14,
            seriesPoint15,
            seriesPoint16,
            seriesPoint17,
            seriesPoint18});
            spline3DSeriesView3.LineWidth = 1D;
            series3.View = spline3DSeriesView3;
            series4.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.DateTime;
            line3DSeriesLabel4.LineVisible = true;
            series4.Label = line3DSeriesLabel4;
            series4.LabelsVisibility = DevExpress.Utils.DefaultBoolean.False;
            series4.Name = "Cluster";
            series4.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint19,
            seriesPoint20,
            seriesPoint21,
            seriesPoint22,
            seriesPoint23,
            seriesPoint24});
            spline3DSeriesView4.LineWidth = 1D;
            series4.View = spline3DSeriesView4;
            this.chartControl.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series1,
        series2,
        series3,
        series4};
            line3DSeriesLabel5.LineVisible = true;
            this.chartControl.SeriesTemplate.Label = line3DSeriesLabel5;
            this.chartControl.SeriesTemplate.LabelsVisibility = DevExpress.Utils.DefaultBoolean.True;
            this.chartControl.SeriesTemplate.View = spline3DSeriesView5;
            this.chartControl.Size = new System.Drawing.Size(912, 394);
            this.chartControl.TabIndex = 3;
            chartTitle1.Text = "透析设备数据分析图";
            chartTitle2.Alignment = System.Drawing.StringAlignment.Far;
            chartTitle2.Dock = DevExpress.XtraCharts.ChartTitleDockStyle.Bottom;
            chartTitle2.Font = new System.Drawing.Font("Tahoma", 8.25F);
            chartTitle2.Text = "血液净化中心";
            chartTitle2.TextColor = System.Drawing.Color.Gray;
            this.chartControl.Titles.AddRange(new DevExpress.XtraCharts.ChartTitle[] {
            chartTitle1,
            chartTitle2});
            // 
            // barManager1
            // 
            this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
            this.chartTypeBar1,
            this.chartAppearanceBar1,
            this.chartWizardBar1,
            this.chartTemplatesBar1,
            this.chartPrintExportBar1});
            this.barManager1.DockControls.Add(this.barDockControlTop);
            this.barManager1.DockControls.Add(this.barDockControlBottom);
            this.barManager1.DockControls.Add(this.barDockControlLeft);
            this.barManager1.DockControls.Add(this.barDockControlRight);
            this.barManager1.Form = this;
            this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.createBarBaseItem1,
            this.createLineBaseItem1,
            this.createPieBaseItem1,
            this.createRotatedBarBaseItem1,
            this.createAreaBaseItem1,
            this.createOtherSeriesTypesBaseItem1,
            this.changePaletteGalleryBaseItem1,
            this.changeAppearanceGalleryBaseBarManagerItem1,
            this.runWizardChartItem1,
            this.saveAsTemplateChartItem1,
            this.loadTemplateChartItem1,
            this.printPreviewChartItem1,
            this.printChartItem1,
            this.createExportBaseItem1,
            this.exportToPDFChartItem1,
            this.exportToHTMLChartItem1,
            this.exportToMHTChartItem1,
            this.exportToXLSChartItem1,
            this.exportToXLSXChartItem1,
            this.exportToRTFChartItem1,
            this.exportToBMPChartItem1,
            this.exportToGIFChartItem1,
            this.exportToJPEGChartItem1,
            this.exportToPNGChartItem1,
            this.exportToTIFFChartItem1,
            this.createExportToImageBaseItem1});
            this.barManager1.MaxItemId = 26;
            // 
            // chartTypeBar1
            // 
            this.chartTypeBar1.Control = this.chartControl;
            this.chartTypeBar1.DockCol = 1;
            this.chartTypeBar1.DockRow = 0;
            this.chartTypeBar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.chartTypeBar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.createBarBaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.createLineBaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.createPieBaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.createRotatedBarBaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.createAreaBaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.createOtherSeriesTypesBaseItem1)});
            this.chartTypeBar1.Offset = 109;
            // 
            // createBarBaseItem1
            // 
            this.createBarBaseItem1.DropDownControl = this.galleryDropDown1;
            this.createBarBaseItem1.Id = 0;
            this.createBarBaseItem1.Name = "createBarBaseItem1";
            // 
            // galleryDropDown1
            // 
            // 
            // 
            // 
            this.galleryDropDown1.Gallery.AllowFilter = false;
            this.galleryDropDown1.Gallery.ColumnCount = 4;
            chartControlCommandGalleryItemGroup2DColumn1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createBarChartItem1,
            createFullStackedBarChartItem1,
            createSideBySideFullStackedBarChartItem1,
            createSideBySideStackedBarChartItem1,
            createStackedBarChartItem1});
            chartControlCommandGalleryItemGroup3DColumn1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createBar3DChartItem1,
            createFullStackedBar3DChartItem1,
            createManhattanBarChartItem1,
            createSideBySideFullStackedBar3DChartItem1,
            createSideBySideStackedBar3DChartItem1,
            createStackedBar3DChartItem1});
            chartControlCommandGalleryItemGroupCylinderColumn1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createCylinderBar3DChartItem1,
            createCylinderFullStackedBar3DChartItem1,
            createCylinderManhattanBarChartItem1,
            createCylinderSideBySideFullStackedBar3DChartItem1,
            createCylinderSideBySideStackedBar3DChartItem1,
            createCylinderStackedBar3DChartItem1});
            chartControlCommandGalleryItemGroupConeColumn1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createConeBar3DChartItem1,
            createConeFullStackedBar3DChartItem1,
            createConeManhattanBarChartItem1,
            createConeSideBySideFullStackedBar3DChartItem1,
            createConeSideBySideStackedBar3DChartItem1,
            createConeStackedBar3DChartItem1});
            chartControlCommandGalleryItemGroupPyramidColumn1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createPyramidBar3DChartItem1,
            createPyramidFullStackedBar3DChartItem1,
            createPyramidManhattanBarChartItem1,
            createPyramidSideBySideFullStackedBar3DChartItem1,
            createPyramidSideBySideStackedBar3DChartItem1,
            createPyramidStackedBar3DChartItem1});
            this.galleryDropDown1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            chartControlCommandGalleryItemGroup2DColumn1,
            chartControlCommandGalleryItemGroup3DColumn1,
            chartControlCommandGalleryItemGroupCylinderColumn1,
            chartControlCommandGalleryItemGroupConeColumn1,
            chartControlCommandGalleryItemGroupPyramidColumn1});
            this.galleryDropDown1.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryDropDown1.Gallery.RowCount = 10;
            this.galleryDropDown1.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.galleryDropDown1.Manager = this.barManager1;
            this.galleryDropDown1.Name = "galleryDropDown1";
            // 
            // createLineBaseItem1
            // 
            this.createLineBaseItem1.DropDownControl = this.galleryDropDown2;
            this.createLineBaseItem1.Id = 1;
            this.createLineBaseItem1.Name = "createLineBaseItem1";
            // 
            // galleryDropDown2
            // 
            // 
            // 
            // 
            this.galleryDropDown2.Gallery.AllowFilter = false;
            this.galleryDropDown2.Gallery.ColumnCount = 3;
            chartControlCommandGalleryItemGroup2DLine1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createLineChartItem1,
            createFullStackedLineChartItem1,
            createScatterLineChartItem1,
            createSplineChartItem1,
            createStackedLineChartItem1,
            createStepLineChartItem1});
            chartControlCommandGalleryItemGroup3DLine1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createLine3DChartItem1,
            createFullStackedLine3DChartItem1,
            createSpline3DChartItem1,
            createStackedLine3DChartItem1,
            createStepLine3DChartItem1});
            this.galleryDropDown2.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            chartControlCommandGalleryItemGroup2DLine1,
            chartControlCommandGalleryItemGroup3DLine1});
            this.galleryDropDown2.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryDropDown2.Gallery.RowCount = 4;
            this.galleryDropDown2.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.galleryDropDown2.Manager = this.barManager1;
            this.galleryDropDown2.Name = "galleryDropDown2";
            // 
            // createPieBaseItem1
            // 
            this.createPieBaseItem1.DropDownControl = this.galleryDropDown3;
            this.createPieBaseItem1.Id = 2;
            this.createPieBaseItem1.Name = "createPieBaseItem1";
            // 
            // galleryDropDown3
            // 
            // 
            // 
            // 
            this.galleryDropDown3.Gallery.AllowFilter = false;
            this.galleryDropDown3.Gallery.ColumnCount = 2;
            chartControlCommandGalleryItemGroup2DPie1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createPieChartItem1,
            createDoughnutChartItem1});
            chartControlCommandGalleryItemGroup3DPie1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createPie3DChartItem1,
            createDoughnut3DChartItem1});
            this.galleryDropDown3.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            chartControlCommandGalleryItemGroup2DPie1,
            chartControlCommandGalleryItemGroup3DPie1});
            this.galleryDropDown3.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryDropDown3.Gallery.RowCount = 2;
            this.galleryDropDown3.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.galleryDropDown3.Manager = this.barManager1;
            this.galleryDropDown3.Name = "galleryDropDown3";
            // 
            // createRotatedBarBaseItem1
            // 
            this.createRotatedBarBaseItem1.DropDownControl = this.galleryDropDown4;
            this.createRotatedBarBaseItem1.Id = 3;
            this.createRotatedBarBaseItem1.Name = "createRotatedBarBaseItem1";
            // 
            // galleryDropDown4
            // 
            // 
            // 
            // 
            this.galleryDropDown4.Gallery.AllowFilter = false;
            this.galleryDropDown4.Gallery.ColumnCount = 3;
            chartControlCommandGalleryItemGroup2DBar1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createRotatedBarChartItem1,
            createRotatedFullStackedBarChartItem1,
            createRotatedSideBySideFullStackedBarChartItem1,
            createRotatedSideBySideStackedBarChartItem1,
            createRotatedStackedBarChartItem1});
            this.galleryDropDown4.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            chartControlCommandGalleryItemGroup2DBar1});
            this.galleryDropDown4.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryDropDown4.Gallery.RowCount = 2;
            this.galleryDropDown4.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.galleryDropDown4.Manager = this.barManager1;
            this.galleryDropDown4.Name = "galleryDropDown4";
            // 
            // createAreaBaseItem1
            // 
            this.createAreaBaseItem1.DropDownControl = this.galleryDropDown5;
            this.createAreaBaseItem1.Id = 4;
            this.createAreaBaseItem1.Name = "createAreaBaseItem1";
            // 
            // galleryDropDown5
            // 
            // 
            // 
            // 
            this.galleryDropDown5.Gallery.AllowFilter = false;
            this.galleryDropDown5.Gallery.ColumnCount = 4;
            chartControlCommandGalleryItemGroup2DArea1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createAreaChartItem1,
            createFullStackedAreaChartItem1,
            createFullStackedSplineAreaChartItem1,
            createSplineAreaChartItem1,
            createStackedAreaChartItem1,
            createStackedSplineAreaChartItem1,
            createStepAreaChartItem1});
            chartControlCommandGalleryItemGroup3DArea1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createArea3DChartItem1,
            createFullStackedArea3DChartItem1,
            createFullStackedSplineArea3DChartItem1,
            createSplineArea3DChartItem1,
            createStackedArea3DChartItem1,
            createStackedSplineArea3DChartItem1,
            createStepArea3DChartItem1});
            this.galleryDropDown5.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            chartControlCommandGalleryItemGroup2DArea1,
            chartControlCommandGalleryItemGroup3DArea1});
            this.galleryDropDown5.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryDropDown5.Gallery.RowCount = 4;
            this.galleryDropDown5.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.galleryDropDown5.Manager = this.barManager1;
            this.galleryDropDown5.Name = "galleryDropDown5";
            // 
            // createOtherSeriesTypesBaseItem1
            // 
            this.createOtherSeriesTypesBaseItem1.DropDownControl = this.galleryDropDown6;
            this.createOtherSeriesTypesBaseItem1.Id = 5;
            this.createOtherSeriesTypesBaseItem1.Name = "createOtherSeriesTypesBaseItem1";
            // 
            // galleryDropDown6
            // 
            // 
            // 
            // 
            this.galleryDropDown6.Gallery.AllowFilter = false;
            this.galleryDropDown6.Gallery.ColumnCount = 4;
            chartControlCommandGalleryItemGroupPoint1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createPointChartItem1,
            createBubbleChartItem1});
            chartControlCommandGalleryItemGroupFunnel1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createFunnelChartItem1,
            createFunnel3DChartItem1});
            chartControlCommandGalleryItemGroupFinancial1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createStockChartItem1,
            createCandleStickChartItem1});
            chartControlCommandGalleryItemGroupRadar1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createRadarPointChartItem1,
            createRadarLineChartItem1,
            createRadarAreaChartItem1});
            chartControlCommandGalleryItemGroupPolar1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createPolarPointChartItem1,
            createPolarLineChartItem1,
            createPolarAreaChartItem1});
            chartControlCommandGalleryItemGroupRange1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createRangeBarChartItem1,
            createSideBySideRangeBarChartItem1,
            createRangeAreaChartItem1,
            createRangeArea3DChartItem1});
            chartControlCommandGalleryItemGroupGantt1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createGanttChartItem1,
            createSideBySideGanttChartItem1});
            this.galleryDropDown6.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            chartControlCommandGalleryItemGroupPoint1,
            chartControlCommandGalleryItemGroupFunnel1,
            chartControlCommandGalleryItemGroupFinancial1,
            chartControlCommandGalleryItemGroupRadar1,
            chartControlCommandGalleryItemGroupPolar1,
            chartControlCommandGalleryItemGroupRange1,
            chartControlCommandGalleryItemGroupGantt1});
            this.galleryDropDown6.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryDropDown6.Gallery.RowCount = 7;
            this.galleryDropDown6.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.galleryDropDown6.Manager = this.barManager1;
            this.galleryDropDown6.Name = "galleryDropDown6";
            // 
            // chartAppearanceBar1
            // 
            this.chartAppearanceBar1.Control = this.chartControl;
            this.chartAppearanceBar1.DockCol = 3;
            this.chartAppearanceBar1.DockRow = 0;
            this.chartAppearanceBar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.chartAppearanceBar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.changePaletteGalleryBaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.changeAppearanceGalleryBaseBarManagerItem1)});
            this.chartAppearanceBar1.Offset = 371;
            // 
            // changePaletteGalleryBaseItem1
            // 
            this.changePaletteGalleryBaseItem1.DropDownControl = this.galleryDropDown7;
            this.changePaletteGalleryBaseItem1.Id = 6;
            this.changePaletteGalleryBaseItem1.Name = "changePaletteGalleryBaseItem1";
            // 
            // galleryDropDown7
            // 
            // 
            // 
            // 
            this.galleryDropDown7.Gallery.AllowFilter = false;
            this.galleryDropDown7.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseFont = true;
            this.galleryDropDown7.Gallery.Appearance.ItemCaptionAppearance.Hovered.Options.UseTextOptions = true;
            this.galleryDropDown7.Gallery.Appearance.ItemCaptionAppearance.Hovered.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.galleryDropDown7.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseFont = true;
            this.galleryDropDown7.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseTextOptions = true;
            this.galleryDropDown7.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.galleryDropDown7.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseFont = true;
            this.galleryDropDown7.Gallery.Appearance.ItemCaptionAppearance.Pressed.Options.UseTextOptions = true;
            this.galleryDropDown7.Gallery.Appearance.ItemCaptionAppearance.Pressed.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.galleryDropDown7.Gallery.Appearance.ItemDescriptionAppearance.Hovered.Options.UseFont = true;
            this.galleryDropDown7.Gallery.Appearance.ItemDescriptionAppearance.Hovered.Options.UseTextOptions = true;
            this.galleryDropDown7.Gallery.Appearance.ItemDescriptionAppearance.Hovered.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.galleryDropDown7.Gallery.Appearance.ItemDescriptionAppearance.Normal.Options.UseFont = true;
            this.galleryDropDown7.Gallery.Appearance.ItemDescriptionAppearance.Normal.Options.UseTextOptions = true;
            this.galleryDropDown7.Gallery.Appearance.ItemDescriptionAppearance.Normal.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.galleryDropDown7.Gallery.Appearance.ItemDescriptionAppearance.Pressed.Options.UseFont = true;
            this.galleryDropDown7.Gallery.Appearance.ItemDescriptionAppearance.Pressed.Options.UseTextOptions = true;
            this.galleryDropDown7.Gallery.Appearance.ItemDescriptionAppearance.Pressed.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.galleryDropDown7.Gallery.ColumnCount = 1;
            this.galleryDropDown7.Gallery.ImageSize = new System.Drawing.Size(160, 10);
            this.galleryDropDown7.Gallery.ItemImageLayout = DevExpress.Utils.Drawing.ImageLayoutMode.MiddleLeft;
            this.galleryDropDown7.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Right;
            skinPaddingEdges1.Bottom = -3;
            skinPaddingEdges1.Top = -3;
            this.galleryDropDown7.Gallery.ItemImagePadding = skinPaddingEdges1;
            skinPaddingEdges2.Bottom = -3;
            skinPaddingEdges2.Top = -3;
            this.galleryDropDown7.Gallery.ItemTextPadding = skinPaddingEdges2;
            this.galleryDropDown7.Gallery.RowCount = 10;
            this.galleryDropDown7.Gallery.ShowGroupCaption = false;
            this.galleryDropDown7.Gallery.ShowItemText = true;
            this.galleryDropDown7.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.galleryDropDown7.Manager = this.barManager1;
            this.galleryDropDown7.Name = "galleryDropDown7";
            // 
            // changeAppearanceGalleryBaseBarManagerItem1
            // 
            this.changeAppearanceGalleryBaseBarManagerItem1.DropDownControl = this.galleryDropDown8;
            this.changeAppearanceGalleryBaseBarManagerItem1.Id = 7;
            this.changeAppearanceGalleryBaseBarManagerItem1.Name = "changeAppearanceGalleryBaseBarManagerItem1";
            // 
            // galleryDropDown8
            // 
            // 
            // 
            // 
            this.galleryDropDown8.Gallery.AllowFilter = false;
            this.galleryDropDown8.Gallery.ColumnCount = 7;
            this.galleryDropDown8.Gallery.ImageSize = new System.Drawing.Size(80, 50);
            this.galleryDropDown8.Gallery.RowCount = 4;
            this.galleryDropDown8.Gallery.ShowGroupCaption = false;
            this.galleryDropDown8.Gallery.ShowScrollBar = DevExpress.XtraBars.Ribbon.Gallery.ShowScrollBar.Auto;
            this.galleryDropDown8.Manager = this.barManager1;
            this.galleryDropDown8.Name = "galleryDropDown8";
            // 
            // chartWizardBar1
            // 
            this.chartWizardBar1.Control = this.chartControl;
            this.chartWizardBar1.DockCol = 2;
            this.chartWizardBar1.DockRow = 0;
            this.chartWizardBar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.chartWizardBar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.runWizardChartItem1)});
            this.chartWizardBar1.Offset = 280;
            // 
            // runWizardChartItem1
            // 
            this.runWizardChartItem1.Id = 8;
            this.runWizardChartItem1.Name = "runWizardChartItem1";
            // 
            // chartTemplatesBar1
            // 
            this.chartTemplatesBar1.Control = this.chartControl;
            this.chartTemplatesBar1.DockCol = 0;
            this.chartTemplatesBar1.DockRow = 0;
            this.chartTemplatesBar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.chartTemplatesBar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.saveAsTemplateChartItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.loadTemplateChartItem1)});
            // 
            // saveAsTemplateChartItem1
            // 
            this.saveAsTemplateChartItem1.Id = 9;
            this.saveAsTemplateChartItem1.Name = "saveAsTemplateChartItem1";
            // 
            // loadTemplateChartItem1
            // 
            this.loadTemplateChartItem1.Id = 10;
            this.loadTemplateChartItem1.Name = "loadTemplateChartItem1";
            // 
            // chartPrintExportBar1
            // 
            this.chartPrintExportBar1.Control = this.chartControl;
            this.chartPrintExportBar1.DockCol = 4;
            this.chartPrintExportBar1.DockRow = 0;
            this.chartPrintExportBar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.chartPrintExportBar1.FloatLocation = new System.Drawing.Point(637, 139);
            this.chartPrintExportBar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.printPreviewChartItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.printChartItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.createExportBaseItem1)});
            this.chartPrintExportBar1.Offset = 494;
            // 
            // printPreviewChartItem1
            // 
            this.printPreviewChartItem1.Id = 11;
            this.printPreviewChartItem1.Name = "printPreviewChartItem1";
            // 
            // printChartItem1
            // 
            this.printChartItem1.Id = 12;
            this.printChartItem1.Name = "printChartItem1";
            // 
            // createExportBaseItem1
            // 
            this.createExportBaseItem1.Id = 13;
            this.createExportBaseItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.exportToPDFChartItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.exportToHTMLChartItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.exportToMHTChartItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.exportToXLSChartItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.exportToXLSXChartItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.exportToRTFChartItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.createExportToImageBaseItem1)});
            this.createExportBaseItem1.MenuDrawMode = DevExpress.XtraBars.MenuDrawMode.SmallImagesText;
            this.createExportBaseItem1.Name = "createExportBaseItem1";
            // 
            // exportToPDFChartItem1
            // 
            this.exportToPDFChartItem1.Id = 14;
            this.exportToPDFChartItem1.Name = "exportToPDFChartItem1";
            // 
            // exportToHTMLChartItem1
            // 
            this.exportToHTMLChartItem1.Id = 15;
            this.exportToHTMLChartItem1.Name = "exportToHTMLChartItem1";
            // 
            // exportToMHTChartItem1
            // 
            this.exportToMHTChartItem1.Id = 16;
            this.exportToMHTChartItem1.Name = "exportToMHTChartItem1";
            // 
            // exportToXLSChartItem1
            // 
            this.exportToXLSChartItem1.Id = 17;
            this.exportToXLSChartItem1.Name = "exportToXLSChartItem1";
            // 
            // exportToXLSXChartItem1
            // 
            this.exportToXLSXChartItem1.Id = 18;
            this.exportToXLSXChartItem1.Name = "exportToXLSXChartItem1";
            // 
            // exportToRTFChartItem1
            // 
            this.exportToRTFChartItem1.Id = 19;
            this.exportToRTFChartItem1.Name = "exportToRTFChartItem1";
            // 
            // createExportToImageBaseItem1
            // 
            this.createExportToImageBaseItem1.Id = 20;
            this.createExportToImageBaseItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.exportToBMPChartItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.exportToGIFChartItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.exportToJPEGChartItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.exportToPNGChartItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.exportToTIFFChartItem1)});
            this.createExportToImageBaseItem1.MenuDrawMode = DevExpress.XtraBars.MenuDrawMode.SmallImagesText;
            this.createExportToImageBaseItem1.Name = "createExportToImageBaseItem1";
            // 
            // exportToBMPChartItem1
            // 
            this.exportToBMPChartItem1.Id = 21;
            this.exportToBMPChartItem1.Name = "exportToBMPChartItem1";
            // 
            // exportToGIFChartItem1
            // 
            this.exportToGIFChartItem1.Id = 22;
            this.exportToGIFChartItem1.Name = "exportToGIFChartItem1";
            // 
            // exportToJPEGChartItem1
            // 
            this.exportToJPEGChartItem1.Id = 23;
            this.exportToJPEGChartItem1.Name = "exportToJPEGChartItem1";
            // 
            // exportToPNGChartItem1
            // 
            this.exportToPNGChartItem1.Id = 24;
            this.exportToPNGChartItem1.Name = "exportToPNGChartItem1";
            // 
            // exportToTIFFChartItem1
            // 
            this.exportToTIFFChartItem1.Id = 25;
            this.exportToTIFFChartItem1.Name = "exportToTIFFChartItem1";
            // 
            // barDockControlTop
            // 
            this.barDockControlTop.CausesValidation = false;
            this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
            this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
            this.barDockControlTop.Size = new System.Drawing.Size(912, 31);
            // 
            // barDockControlBottom
            // 
            this.barDockControlBottom.CausesValidation = false;
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 425);
            this.barDockControlBottom.Size = new System.Drawing.Size(912, 0);
            // 
            // barDockControlLeft
            // 
            this.barDockControlLeft.CausesValidation = false;
            this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.barDockControlLeft.Location = new System.Drawing.Point(0, 31);
            this.barDockControlLeft.Size = new System.Drawing.Size(0, 394);
            // 
            // barDockControlRight
            // 
            this.barDockControlRight.CausesValidation = false;
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(912, 31);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 394);
            // 
            // chartBarController1
            // 
            this.chartBarController1.BarItems.Add(this.createBarBaseItem1);
            this.chartBarController1.BarItems.Add(this.createLineBaseItem1);
            this.chartBarController1.BarItems.Add(this.createPieBaseItem1);
            this.chartBarController1.BarItems.Add(this.createRotatedBarBaseItem1);
            this.chartBarController1.BarItems.Add(this.createAreaBaseItem1);
            this.chartBarController1.BarItems.Add(this.createOtherSeriesTypesBaseItem1);
            this.chartBarController1.BarItems.Add(this.changePaletteGalleryBaseItem1);
            this.chartBarController1.BarItems.Add(this.changeAppearanceGalleryBaseBarManagerItem1);
            this.chartBarController1.BarItems.Add(this.runWizardChartItem1);
            this.chartBarController1.BarItems.Add(this.saveAsTemplateChartItem1);
            this.chartBarController1.BarItems.Add(this.loadTemplateChartItem1);
            this.chartBarController1.BarItems.Add(this.printPreviewChartItem1);
            this.chartBarController1.BarItems.Add(this.printChartItem1);
            this.chartBarController1.BarItems.Add(this.createExportBaseItem1);
            this.chartBarController1.BarItems.Add(this.exportToPDFChartItem1);
            this.chartBarController1.BarItems.Add(this.exportToHTMLChartItem1);
            this.chartBarController1.BarItems.Add(this.exportToMHTChartItem1);
            this.chartBarController1.BarItems.Add(this.exportToXLSChartItem1);
            this.chartBarController1.BarItems.Add(this.exportToXLSXChartItem1);
            this.chartBarController1.BarItems.Add(this.exportToRTFChartItem1);
            this.chartBarController1.BarItems.Add(this.createExportToImageBaseItem1);
            this.chartBarController1.BarItems.Add(this.exportToBMPChartItem1);
            this.chartBarController1.BarItems.Add(this.exportToGIFChartItem1);
            this.chartBarController1.BarItems.Add(this.exportToJPEGChartItem1);
            this.chartBarController1.BarItems.Add(this.exportToPNGChartItem1);
            this.chartBarController1.BarItems.Add(this.exportToTIFFChartItem1);
            this.chartBarController1.Control = this.chartControl;
            // 
            // Frm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(912, 425);
            this.Controls.Add(this.chartControl);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "Frm";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "透析设备数据分析图";
            ((System.ComponentModel.ISupportInitialize)(xyDiagram3D1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(line3DSeriesLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(spline3DSeriesView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(line3DSeriesLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(spline3DSeriesView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(line3DSeriesLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(spline3DSeriesView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(line3DSeriesLabel4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(spline3DSeriesView4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(line3DSeriesLabel5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(spline3DSeriesView5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.galleryDropDown8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartBarController1)).EndInit();
            this.ResumeLayout(false);

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraCharts.XYDiagram        xyDiagram1        = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series           series1           = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel1 = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.XtraCharts.SeriesPoint      seriesPoint1      = new DevExpress.XtraCharts.SeriesPoint("A", new object[] {
         ((object)(-12D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("B", new object[] {
         ((object)(-2D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("C", new object[] {
         ((object)(3D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("D", new object[] {
         ((object)(8D))
     });
     DevExpress.XtraCharts.LineSeriesView   lineSeriesView1   = new DevExpress.XtraCharts.LineSeriesView();
     DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel2 = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.XtraCharts.LineSeriesView   lineSeriesView2   = new DevExpress.XtraCharts.LineSeriesView();
     this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).BeginInit();
     this.SuspendLayout();
     //
     // chartControl1
     //
     xyDiagram1.AxisX.Label.Visible = false;
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.Label.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     this.chartControl1.Diagram           = xyDiagram1;
     this.chartControl1.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.chartControl1.Legend.Visibility = DevExpress.Utils.DefaultBoolean.False;
     this.chartControl1.Location          = new System.Drawing.Point(0, 0);
     this.chartControl1.Name              = "chartControl1";
     pointSeriesLabel1.LineVisibility     = DevExpress.Utils.DefaultBoolean.True;
     series1.Label            = pointSeriesLabel1;
     series1.LabelsVisibility = DevExpress.Utils.DefaultBoolean.False;
     series1.Name             = "Series 1";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint1,
         seriesPoint2,
         seriesPoint3,
         seriesPoint4
     });
     series1.View = lineSeriesView1;
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
         series1
     };
     pointSeriesLabel2.LineVisibility        = DevExpress.Utils.DefaultBoolean.True;
     this.chartControl1.SeriesTemplate.Label = pointSeriesLabel2;
     this.chartControl1.SeriesTemplate.View  = lineSeriesView2;
     this.chartControl1.Size                 = new System.Drawing.Size(478, 287);
     this.chartControl1.TabIndex             = 0;
     this.chartControl1.CustomDrawAxisLabel += new DevExpress.XtraCharts.CustomDrawAxisLabelEventHandler(this.chartControl1_CustomDrawAxisLabel);
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(478, 287);
     this.Controls.Add(this.chartControl1);
     this.Name = "Form1";
     this.Text = "Form1";
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     this.ResumeLayout(false);
 }
Example #22
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
     System.ComponentModel.ComponentResourceManager resources   = new System.ComponentModel.ComponentResourceManager(typeof(XtraChartTestForm));
     DevExpress.XtraCharts.Series            series1            = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.BubbleSeriesLabel bubbleSeriesLabel1 = new DevExpress.XtraCharts.BubbleSeriesLabel();
     DevExpress.XtraCharts.SeriesPoint       seriesPoint1       = new DevExpress.XtraCharts.SeriesPoint("1", new object[] {
         ((object)(2)),
         ((object)(2))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("3", new object[] {
         ((object)(4)),
         ((object)(4))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("5", new object[] {
         ((object)(6)),
         ((object)(6))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("7", new object[] {
         ((object)(8)),
         ((object)(8))
     });
     DevExpress.XtraCharts.BubbleSeriesView  bubbleSeriesView1  = new DevExpress.XtraCharts.BubbleSeriesView();
     DevExpress.XtraCharts.Series            series2            = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.BubbleSeriesLabel bubbleSeriesLabel2 = new DevExpress.XtraCharts.BubbleSeriesLabel();
     DevExpress.XtraCharts.BubbleSeriesView  bubbleSeriesView2  = new DevExpress.XtraCharts.BubbleSeriesView();
     DevExpress.XtraCharts.BubbleSeriesLabel bubbleSeriesLabel3 = new DevExpress.XtraCharts.BubbleSeriesLabel();
     DevExpress.XtraCharts.BubbleSeriesView  bubbleSeriesView3  = new DevExpress.XtraCharts.BubbleSeriesView();
     this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(bubbleSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(bubbleSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(bubbleSeriesLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(bubbleSeriesView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(bubbleSeriesLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(bubbleSeriesView3)).BeginInit();
     this.SuspendLayout();
     //
     // chartControl1
     //
     this.chartControl1.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.chartControl1.BackImage.Stretch = true;
     ////xyDiagram1.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     ////xyDiagram1.AxisX.Range.SideMarginsEnabled = true;
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     ////xyDiagram1.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     ////xyDiagram1.AxisY.Range.SideMarginsEnabled = true;
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     xyDiagram1.DefaultPane.BackImage.Image      = ((System.Drawing.Image)(resources.GetObject("resource.Image")));
     xyDiagram1.DefaultPane.BackImage.Stretch    = true;
     xyDiagram1.DefaultPane.EnableAxisXScrolling = DevExpress.Utils.DefaultBoolean.True;
     xyDiagram1.DefaultPane.EnableAxisXZooming   = DevExpress.Utils.DefaultBoolean.True;
     xyDiagram1.DefaultPane.EnableAxisYScrolling = DevExpress.Utils.DefaultBoolean.True;
     xyDiagram1.DefaultPane.EnableAxisYZooming   = DevExpress.Utils.DefaultBoolean.True;
     xyDiagram1.EnableAxisXScrolling             = true;
     xyDiagram1.EnableAxisXZooming     = true;
     xyDiagram1.EnableAxisYScrolling   = true;
     xyDiagram1.EnableAxisYZooming     = true;
     xyDiagram1.Margins.Bottom         = 0;
     xyDiagram1.Margins.Left           = 0;
     xyDiagram1.Margins.Right          = 0;
     xyDiagram1.Margins.Top            = 0;
     this.chartControl1.Diagram        = xyDiagram1;
     this.chartControl1.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.chartControl1.Location       = new System.Drawing.Point(0, 0);
     this.chartControl1.Name           = "chartControl1";
     bubbleSeriesLabel1.LineVisibility = DevExpress.Utils.DefaultBoolean.True;
     series1.Label = bubbleSeriesLabel1;
     series1.Name  = "Series 1";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint1,
         seriesPoint2,
         seriesPoint3,
         seriesPoint4
     });
     series1.View = bubbleSeriesView1;
     bubbleSeriesLabel2.LineVisibility = DevExpress.Utils.DefaultBoolean.True;
     series2.Label = bubbleSeriesLabel2;
     series2.Name  = "Series 2";
     series2.View  = bubbleSeriesView2;
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
         series1,
         series2
     };
     bubbleSeriesLabel3.LineVisibility       = DevExpress.Utils.DefaultBoolean.True;
     this.chartControl1.SeriesTemplate.Label = bubbleSeriesLabel3;
     this.chartControl1.SeriesTemplate.View  = bubbleSeriesView3;
     this.chartControl1.Size     = new System.Drawing.Size(813, 796);
     this.chartControl1.TabIndex = 0;
     //
     // XtraChartView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(813, 796);
     this.Controls.Add(this.chartControl1);
     this.Name = "XtraChartView";
     this.Text = "XtraChartView";
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(bubbleSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(bubbleSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(bubbleSeriesLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(bubbleSeriesView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(bubbleSeriesLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(bubbleSeriesView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.PieSeriesLabel pieSeriesLabel1 = new DevExpress.XtraCharts.PieSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("1", new object[] {
            ((object)(45D))}, 0);
            DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("2", new object[] {
            ((object)(35D))}, 1);
            DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("2", new object[] {
            ((object)(89D))}, 2);
            DevExpress.XtraCharts.PieSeriesView pieSeriesView1 = new DevExpress.XtraCharts.PieSeriesView();
            DevExpress.XtraCharts.PieSeriesLabel pieSeriesLabel2 = new DevExpress.XtraCharts.PieSeriesLabel();
            DevExpress.XtraCharts.PieSeriesView pieSeriesView2 = new DevExpress.XtraCharts.PieSeriesView();
            DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.Series series2 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel1 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("1", new object[] {
            ((object)(23D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint("3", new object[] {
            ((object)(23D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint("1", new object[] {
            ((object)(23D))});
            DevExpress.XtraCharts.Series series3 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel2 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint("2", new object[] {
            ((object)(34D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint("2", new object[] {
            ((object)(45D))});
            DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel3 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
            DevExpress.XtraCharts.XYDiagram xyDiagram2 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.Series series4 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel1 = new DevExpress.XtraCharts.PointSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint9 = new DevExpress.XtraCharts.SeriesPoint("2", new object[] {
            ((object)(34D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint10 = new DevExpress.XtraCharts.SeriesPoint("2", new object[] {
            ((object)(46D))});
            DevExpress.XtraCharts.StackedAreaSeriesView stackedAreaSeriesView1 = new DevExpress.XtraCharts.StackedAreaSeriesView();
            DevExpress.XtraCharts.Series series5 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel2 = new DevExpress.XtraCharts.PointSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint11 = new DevExpress.XtraCharts.SeriesPoint("2", new object[] {
            ((object)(67D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint12 = new DevExpress.XtraCharts.SeriesPoint("3", new object[] {
            ((object)(34D))});
            DevExpress.XtraCharts.StackedAreaSeriesView stackedAreaSeriesView2 = new DevExpress.XtraCharts.StackedAreaSeriesView();
            DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel3 = new DevExpress.XtraCharts.PointSeriesLabel();
            DevExpress.XtraCharts.StackedAreaSeriesView stackedAreaSeriesView3 = new DevExpress.XtraCharts.StackedAreaSeriesView();
            DevExpress.XtraCharts.XYDiagram xyDiagram3 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.Series series6 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.StackedLineSeriesLabel stackedLineSeriesLabel1 = new DevExpress.XtraCharts.StackedLineSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint13 = new DevExpress.XtraCharts.SeriesPoint("1", new object[] {
            ((object)(34D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint14 = new DevExpress.XtraCharts.SeriesPoint("2", new object[] {
            ((object)(12D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint15 = new DevExpress.XtraCharts.SeriesPoint("2", new object[] {
            ((object)(34D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint16 = new DevExpress.XtraCharts.SeriesPoint("4", new object[] {
            ((object)(56D))});
            DevExpress.XtraCharts.StackedLineSeriesView stackedLineSeriesView1 = new DevExpress.XtraCharts.StackedLineSeriesView();
            DevExpress.XtraCharts.Series series7 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.StackedLineSeriesLabel stackedLineSeriesLabel2 = new DevExpress.XtraCharts.StackedLineSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint17 = new DevExpress.XtraCharts.SeriesPoint("3", new object[] {
            ((object)(45D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint18 = new DevExpress.XtraCharts.SeriesPoint("4", new object[] {
            ((object)(56D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint19 = new DevExpress.XtraCharts.SeriesPoint("5", new object[] {
            ((object)(67D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint20 = new DevExpress.XtraCharts.SeriesPoint("7", new object[] {
            ((object)(89D))});
            DevExpress.XtraCharts.StackedLineSeriesView stackedLineSeriesView2 = new DevExpress.XtraCharts.StackedLineSeriesView();
            DevExpress.XtraCharts.StackedLineSeriesLabel stackedLineSeriesLabel3 = new DevExpress.XtraCharts.StackedLineSeriesLabel();
            DevExpress.XtraCharts.StackedLineSeriesView stackedLineSeriesView3 = new DevExpress.XtraCharts.StackedLineSeriesView();
            this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
            this.chartControl2 = new DevExpress.XtraCharts.ChartControl();
            this.chartControl3 = new DevExpress.XtraCharts.ChartControl();
            this.chartControl4 = new DevExpress.XtraCharts.ChartControl();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedAreaSeriesView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedAreaSeriesView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedAreaSeriesView3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedLineSeriesLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedLineSeriesView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedLineSeriesLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedLineSeriesView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedLineSeriesLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedLineSeriesView3)).BeginInit();
            this.SuspendLayout();
            // 
            // chartControl1
            // 
            this.chartControl1.Location = new System.Drawing.Point(32, 21);
            this.chartControl1.Name = "chartControl1";
            pieSeriesLabel1.LineVisible = true;
            series1.Label = pieSeriesLabel1;
            series1.Name = "Series 1";
            series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint1,
            seriesPoint2,
            seriesPoint3});
            pieSeriesView1.RuntimeExploding = false;
            series1.View = pieSeriesView1;
            this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series1};
            pieSeriesLabel2.LineVisible = true;
            this.chartControl1.SeriesTemplate.Label = pieSeriesLabel2;
            pieSeriesView2.RuntimeExploding = false;
            this.chartControl1.SeriesTemplate.View = pieSeriesView2;
            this.chartControl1.Size = new System.Drawing.Size(400, 189);
            this.chartControl1.TabIndex = 1;
            // 
            // chartControl2
            // 
            xyDiagram1.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
            xyDiagram1.AxisX.Range.SideMarginsEnabled = true;
            xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
            xyDiagram1.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
            xyDiagram1.AxisY.Range.SideMarginsEnabled = true;
            xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
            this.chartControl2.Diagram = xyDiagram1;
            this.chartControl2.Location = new System.Drawing.Point(470, 21);
            this.chartControl2.Name = "chartControl2";
            sideBySideBarSeriesLabel1.LineVisible = true;
            series2.Label = sideBySideBarSeriesLabel1;
            series2.Name = "Series 1";
            series2.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint4,
            seriesPoint5,
            seriesPoint6});
            sideBySideBarSeriesLabel2.LineVisible = true;
            series3.Label = sideBySideBarSeriesLabel2;
            series3.Name = "Series 2";
            series3.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint7,
            seriesPoint8});
            this.chartControl2.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series2,
        series3};
            sideBySideBarSeriesLabel3.LineVisible = true;
            this.chartControl2.SeriesTemplate.Label = sideBySideBarSeriesLabel3;
            this.chartControl2.Size = new System.Drawing.Size(382, 189);
            this.chartControl2.TabIndex = 2;
            // 
            // chartControl3
            // 
            xyDiagram2.AxisX.Range.ScrollingRange.SideMarginsEnabled = false;
            xyDiagram2.AxisX.Range.SideMarginsEnabled = false;
            xyDiagram2.AxisX.VisibleInPanesSerializable = "-1";
            xyDiagram2.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
            xyDiagram2.AxisY.Range.SideMarginsEnabled = true;
            xyDiagram2.AxisY.VisibleInPanesSerializable = "-1";
            this.chartControl3.Diagram = xyDiagram2;
            this.chartControl3.Location = new System.Drawing.Point(32, 253);
            this.chartControl3.Name = "chartControl3";
            pointSeriesLabel1.LineVisible = true;
            series4.Label = pointSeriesLabel1;
            series4.Name = "Series 1";
            series4.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint9,
            seriesPoint10});
            series4.View = stackedAreaSeriesView1;
            pointSeriesLabel2.LineVisible = true;
            series5.Label = pointSeriesLabel2;
            series5.Name = "Series 2";
            series5.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint11,
            seriesPoint12});
            series5.View = stackedAreaSeriesView2;
            this.chartControl3.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series4,
        series5};
            pointSeriesLabel3.LineVisible = true;
            this.chartControl3.SeriesTemplate.Label = pointSeriesLabel3;
            this.chartControl3.SeriesTemplate.View = stackedAreaSeriesView3;
            this.chartControl3.Size = new System.Drawing.Size(400, 200);
            this.chartControl3.TabIndex = 3;
            // 
            // chartControl4
            // 
            xyDiagram3.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
            xyDiagram3.AxisX.Range.SideMarginsEnabled = true;
            xyDiagram3.AxisX.VisibleInPanesSerializable = "-1";
            xyDiagram3.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
            xyDiagram3.AxisY.Range.SideMarginsEnabled = true;
            xyDiagram3.AxisY.VisibleInPanesSerializable = "-1";
            this.chartControl4.Diagram = xyDiagram3;
            this.chartControl4.Location = new System.Drawing.Point(470, 253);
            this.chartControl4.Name = "chartControl4";
            stackedLineSeriesLabel1.LineVisible = true;
            series6.Label = stackedLineSeriesLabel1;
            series6.Name = "Series 1";
            series6.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint13,
            seriesPoint14,
            seriesPoint15,
            seriesPoint16});
            series6.View = stackedLineSeriesView1;
            stackedLineSeriesLabel2.LineVisible = true;
            series7.Label = stackedLineSeriesLabel2;
            series7.Name = "Series 2";
            series7.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint17,
            seriesPoint18,
            seriesPoint19,
            seriesPoint20});
            series7.View = stackedLineSeriesView2;
            this.chartControl4.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series6,
        series7};
            stackedLineSeriesLabel3.LineVisible = true;
            this.chartControl4.SeriesTemplate.Label = stackedLineSeriesLabel3;
            this.chartControl4.SeriesTemplate.View = stackedLineSeriesView3;
            this.chartControl4.Size = new System.Drawing.Size(382, 200);
            this.chartControl4.TabIndex = 4;
            // 
            // StatisticMainPanel
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.chartControl4);
            this.Controls.Add(this.chartControl3);
            this.Controls.Add(this.chartControl2);
            this.Controls.Add(this.chartControl1);
            this.Name = "StatisticMainPanel";
            this.Size = new System.Drawing.Size(872, 553);
            ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedAreaSeriesView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedAreaSeriesView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedAreaSeriesView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedLineSeriesLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedLineSeriesView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedLineSeriesLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedLineSeriesView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedLineSeriesLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedLineSeriesView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl4)).EndInit();
            this.ResumeLayout(false);

        }
Example #24
0
        /// <summary> 
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            DevExpress.XtraCharts.XYDiagram3D xyDiagram3D1 = new DevExpress.XtraCharts.XYDiagram3D();
            DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.FullStackedBar3DSeriesLabel fullStackedBar3DSeriesLabel1 = new DevExpress.XtraCharts.FullStackedBar3DSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint(1D, new object[] {
            ((object)(2D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint(1D, new object[] {
            ((object)(2D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint(3D, new object[] {
            ((object)(4D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint(5D, new object[] {
            ((object)(6D))});
            DevExpress.XtraCharts.FullStackedBar3DSeriesView fullStackedBar3DSeriesView1 = new DevExpress.XtraCharts.FullStackedBar3DSeriesView();
            DevExpress.XtraCharts.Series series2 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.FullStackedBar3DSeriesLabel fullStackedBar3DSeriesLabel2 = new DevExpress.XtraCharts.FullStackedBar3DSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint(3D, new object[] {
            ((object)(4D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint(5D, new object[] {
            ((object)(7D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint(1D, new object[] {
            ((object)(2D))});
            DevExpress.XtraCharts.FullStackedBar3DSeriesView fullStackedBar3DSeriesView2 = new DevExpress.XtraCharts.FullStackedBar3DSeriesView();
            DevExpress.XtraCharts.FullStackedBar3DSeriesLabel fullStackedBar3DSeriesLabel3 = new DevExpress.XtraCharts.FullStackedBar3DSeriesLabel();
            DevExpress.XtraCharts.FullStackedBar3DSeriesView fullStackedBar3DSeriesView3 = new DevExpress.XtraCharts.FullStackedBar3DSeriesView();
            DevExpress.XtraCharts.SimpleDiagram3D simpleDiagram3D1 = new DevExpress.XtraCharts.SimpleDiagram3D();
            DevExpress.XtraCharts.Series series3 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.Pie3DSeriesLabel pie3DSeriesLabel1 = new DevExpress.XtraCharts.Pie3DSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint(1D, new object[] {
            ((object)(2D))}, 0);
            DevExpress.XtraCharts.SeriesPoint seriesPoint9 = new DevExpress.XtraCharts.SeriesPoint(3D, new object[] {
            ((object)(4D))}, 1);
            DevExpress.XtraCharts.SeriesPoint seriesPoint10 = new DevExpress.XtraCharts.SeriesPoint(4D, new object[] {
            ((object)(5D))}, 2);
            DevExpress.XtraCharts.Pie3DSeriesView pie3DSeriesView1 = new DevExpress.XtraCharts.Pie3DSeriesView();
            DevExpress.XtraCharts.Pie3DSeriesLabel pie3DSeriesLabel2 = new DevExpress.XtraCharts.Pie3DSeriesLabel();
            DevExpress.XtraCharts.Pie3DSeriesView pie3DSeriesView2 = new DevExpress.XtraCharts.Pie3DSeriesView();
            DevExpress.XtraCharts.XYDiagram3D xyDiagram3D2 = new DevExpress.XtraCharts.XYDiagram3D();
            DevExpress.XtraCharts.Series series4 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.StackedLine3DSeriesLabel stackedLine3DSeriesLabel1 = new DevExpress.XtraCharts.StackedLine3DSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint11 = new DevExpress.XtraCharts.SeriesPoint(1D, new object[] {
            ((object)(2D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint12 = new DevExpress.XtraCharts.SeriesPoint(2D, new object[] {
            ((object)(3D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint13 = new DevExpress.XtraCharts.SeriesPoint(3D, new object[] {
            ((object)(4D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint14 = new DevExpress.XtraCharts.SeriesPoint(4D, new object[] {
            ((object)(5D))});
            DevExpress.XtraCharts.StackedLine3DSeriesView stackedLine3DSeriesView1 = new DevExpress.XtraCharts.StackedLine3DSeriesView();
            DevExpress.XtraCharts.Series series5 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.StackedLine3DSeriesLabel stackedLine3DSeriesLabel2 = new DevExpress.XtraCharts.StackedLine3DSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint15 = new DevExpress.XtraCharts.SeriesPoint(1D, new object[] {
            ((object)(2D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint16 = new DevExpress.XtraCharts.SeriesPoint(2D, new object[] {
            ((object)(3D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint17 = new DevExpress.XtraCharts.SeriesPoint(3D, new object[] {
            ((object)(4D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint18 = new DevExpress.XtraCharts.SeriesPoint(4D, new object[] {
            ((object)(5D))});
            DevExpress.XtraCharts.StackedLine3DSeriesView stackedLine3DSeriesView2 = new DevExpress.XtraCharts.StackedLine3DSeriesView();
            DevExpress.XtraCharts.StackedLine3DSeriesLabel stackedLine3DSeriesLabel3 = new DevExpress.XtraCharts.StackedLine3DSeriesLabel();
            DevExpress.XtraCharts.StackedLine3DSeriesView stackedLine3DSeriesView3 = new DevExpress.XtraCharts.StackedLine3DSeriesView();
            this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
            this.chartControl2 = new DevExpress.XtraCharts.ChartControl();
            this.chartControl3 = new DevExpress.XtraCharts.ChartControl();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram3D1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBar3DSeriesLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBar3DSeriesView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBar3DSeriesLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBar3DSeriesView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBar3DSeriesLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBar3DSeriesView3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(simpleDiagram3D1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pie3DSeriesLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pie3DSeriesView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pie3DSeriesLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pie3DSeriesView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram3D2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedLine3DSeriesLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedLine3DSeriesView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedLine3DSeriesLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedLine3DSeriesView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedLine3DSeriesLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedLine3DSeriesView3)).BeginInit();
            this.SuspendLayout();
            // 
            // chartControl1
            // 
            xyDiagram3D1.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
            xyDiagram3D1.AxisX.Range.SideMarginsEnabled = true;
            xyDiagram3D1.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
            xyDiagram3D1.AxisY.Range.SideMarginsEnabled = true;
            xyDiagram3D1.RotationMatrixSerializable = "0.766044443118978;-0.219846310392954;0.604022773555054;0;0;0.939692620785908;0.34" +
    "2020143325669;0;-0.642787609686539;-0.262002630229385;0.719846310392954;0;0;0;0;" +
    "1";
            this.chartControl1.Diagram = xyDiagram3D1;
            this.chartControl1.Location = new System.Drawing.Point(20, 12);
            this.chartControl1.Name = "chartControl1";
            series1.Label = fullStackedBar3DSeriesLabel1;
            series1.Name = "Series 1";
            series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint1,
            seriesPoint2,
            seriesPoint3,
            seriesPoint4});
            series1.View = fullStackedBar3DSeriesView1;
            series2.Label = fullStackedBar3DSeriesLabel2;
            series2.Name = "Series 2";
            series2.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint5,
            seriesPoint6,
            seriesPoint7});
            series2.View = fullStackedBar3DSeriesView2;
            this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series1,
        series2};
            this.chartControl1.SeriesTemplate.Label = fullStackedBar3DSeriesLabel3;
            this.chartControl1.SeriesTemplate.View = fullStackedBar3DSeriesView3;
            this.chartControl1.Size = new System.Drawing.Size(545, 200);
            this.chartControl1.TabIndex = 0;
            // 
            // chartControl2
            // 
            simpleDiagram3D1.RotationMatrixSerializable = "1;0;0;0;0;0.5;-0.866025403784439;0;0;0.866025403784439;0.5;0;0;0;0;1";
            this.chartControl2.Diagram = simpleDiagram3D1;
            this.chartControl2.Location = new System.Drawing.Point(571, 12);
            this.chartControl2.Name = "chartControl2";
            pie3DSeriesLabel1.LineVisible = true;
            series3.Label = pie3DSeriesLabel1;
            series3.Name = "Series 1";
            series3.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint8,
            seriesPoint9,
            seriesPoint10});
            series3.View = pie3DSeriesView1;
            this.chartControl2.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series3};
            pie3DSeriesLabel2.LineVisible = true;
            this.chartControl2.SeriesTemplate.Label = pie3DSeriesLabel2;
            this.chartControl2.SeriesTemplate.View = pie3DSeriesView2;
            this.chartControl2.Size = new System.Drawing.Size(566, 200);
            this.chartControl2.TabIndex = 1;
            // 
            // chartControl3
            // 
            xyDiagram3D2.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
            xyDiagram3D2.AxisX.Range.SideMarginsEnabled = true;
            xyDiagram3D2.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
            xyDiagram3D2.AxisY.Range.SideMarginsEnabled = true;
            xyDiagram3D2.RotationMatrixSerializable = "0.766044443118978;-0.219846310392954;0.604022773555054;0;0;0.939692620785908;0.34" +
    "2020143325669;0;-0.642787609686539;-0.262002630229385;0.719846310392954;0;0;0;0;" +
    "1";
            this.chartControl3.Diagram = xyDiagram3D2;
            this.chartControl3.Location = new System.Drawing.Point(20, 216);
            this.chartControl3.Name = "chartControl3";
            stackedLine3DSeriesLabel1.LineVisible = true;
            series4.Label = stackedLine3DSeriesLabel1;
            series4.Name = "Series 1";
            series4.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint11,
            seriesPoint12,
            seriesPoint13,
            seriesPoint14});
            series4.View = stackedLine3DSeriesView1;
            stackedLine3DSeriesLabel2.LineVisible = true;
            series5.Label = stackedLine3DSeriesLabel2;
            series5.Name = "Series 2";
            series5.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint15,
            seriesPoint16,
            seriesPoint17,
            seriesPoint18});
            series5.View = stackedLine3DSeriesView2;
            this.chartControl3.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series4,
        series5};
            stackedLine3DSeriesLabel3.LineVisible = true;
            this.chartControl3.SeriesTemplate.Label = stackedLine3DSeriesLabel3;
            this.chartControl3.SeriesTemplate.View = stackedLine3DSeriesView3;
            this.chartControl3.Size = new System.Drawing.Size(1117, 394);
            this.chartControl3.TabIndex = 2;
            // 
            // Report
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.chartControl3);
            this.Controls.Add(this.chartControl2);
            this.Controls.Add(this.chartControl1);
            this.Name = "Report";
            this.Size = new System.Drawing.Size(1159, 613);
            ((System.ComponentModel.ISupportInitialize)(xyDiagram3D1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBar3DSeriesLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBar3DSeriesView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBar3DSeriesLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBar3DSeriesView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBar3DSeriesLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBar3DSeriesView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(simpleDiagram3D1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pie3DSeriesLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pie3DSeriesView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pie3DSeriesLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pie3DSeriesView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram3D2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedLine3DSeriesLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedLine3DSeriesView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedLine3DSeriesLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedLine3DSeriesView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedLine3DSeriesLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedLine3DSeriesView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl3)).EndInit();
            this.ResumeLayout(false);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel1 = new DevExpress.XtraCharts.PointSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("1", new object[] {
            ((object)(0D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("2", new object[] {
            ((object)(0D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("3", new object[] {
            ((object)(0D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("4", new object[] {
            ((object)(0D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint("5", new object[] {
            ((object)(0D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint("6", new object[] {
            ((object)(0D))});
            DevExpress.XtraCharts.LineSeriesView lineSeriesView1 = new DevExpress.XtraCharts.LineSeriesView();
            DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel2 = new DevExpress.XtraCharts.PointSeriesLabel();
            DevExpress.XtraCharts.LineSeriesView lineSeriesView2 = new DevExpress.XtraCharts.LineSeriesView();
            DevExpress.XtraCharts.ChartTitle chartTitle1 = new DevExpress.XtraCharts.ChartTitle();
            this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
            this.bt_SaveToImage = new DevExpress.XtraEditors.SimpleButton();
            this.lb_Year = new DevExpress.XtraEditors.LabelControl();
            this.cb_Year = new DevExpress.XtraEditors.ComboBoxEdit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cb_Year.Properties)).BeginInit();
            this.SuspendLayout();
            // 
            // chartControl1
            // 
            xyDiagram1.AxisX.GridSpacingAuto = false;
            xyDiagram1.AxisX.Range.AlwaysShowZeroLevel = true;
            xyDiagram1.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
            xyDiagram1.AxisX.Range.SideMarginsEnabled = true;
            xyDiagram1.AxisX.Tickmarks.MinorVisible = false;
            xyDiagram1.AxisX.Title.Text = "Term";
            xyDiagram1.AxisX.Title.Visible = true;
            xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
            xyDiagram1.AxisY.GridSpacing = 20D;
            xyDiagram1.AxisY.GridSpacingAuto = false;
            xyDiagram1.AxisY.Range.AlwaysShowZeroLevel = true;
            xyDiagram1.AxisY.Range.Auto = false;
            xyDiagram1.AxisY.Range.MaxValueSerializable = "120";
            xyDiagram1.AxisY.Range.MinValueSerializable = "0";
            xyDiagram1.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
            xyDiagram1.AxisY.Range.SideMarginsEnabled = true;
            xyDiagram1.AxisY.Tickmarks.MinorVisible = false;
            xyDiagram1.AxisY.Title.Text = "Score";
            xyDiagram1.AxisY.Title.Visible = true;
            xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
            this.chartControl1.Diagram = xyDiagram1;
            this.chartControl1.Legend.Visible = false;
            this.chartControl1.Location = new System.Drawing.Point(0, 0);
            this.chartControl1.Name = "chartControl1";
            pointSeriesLabel1.LineVisible = true;
            series1.Label = pointSeriesLabel1;
            series1.Name = "Score";
            series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint1,
            seriesPoint2,
            seriesPoint3,
            seriesPoint4,
            seriesPoint5,
            seriesPoint6});
            lineSeriesView1.MarkerVisibility = DevExpress.Utils.DefaultBoolean.True;
            series1.View = lineSeriesView1;
            this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series1};
            pointSeriesLabel2.LineVisible = true;
            this.chartControl1.SeriesTemplate.Label = pointSeriesLabel2;
            this.chartControl1.SeriesTemplate.View = lineSeriesView2;
            this.chartControl1.Size = new System.Drawing.Size(530, 327);
            this.chartControl1.TabIndex = 0;
            chartTitle1.Text = "Score Progress";
            this.chartControl1.Titles.AddRange(new DevExpress.XtraCharts.ChartTitle[] {
            chartTitle1});
            // 
            // bt_SaveToImage
            // 
            this.bt_SaveToImage.Location = new System.Drawing.Point(416, 347);
            this.bt_SaveToImage.Name = "bt_SaveToImage";
            this.bt_SaveToImage.Size = new System.Drawing.Size(75, 23);
            this.bt_SaveToImage.TabIndex = 2;
            this.bt_SaveToImage.Text = "SaveToImage";
            this.bt_SaveToImage.Click += new System.EventHandler(this.bt_SaveToImage_Click);
            // 
            // lb_Year
            // 
            this.lb_Year.Location = new System.Drawing.Point(12, 352);
            this.lb_Year.Name = "lb_Year";
            this.lb_Year.Size = new System.Drawing.Size(22, 13);
            this.lb_Year.TabIndex = 3;
            this.lb_Year.Text = "Year";
            // 
            // cb_Year
            // 
            this.cb_Year.EditValue = "Year";
            this.cb_Year.Location = new System.Drawing.Point(55, 347);
            this.cb_Year.Name = "cb_Year";
            this.cb_Year.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cb_Year.Size = new System.Drawing.Size(86, 20);
            this.cb_Year.TabIndex = 4;
            this.cb_Year.SelectedIndexChanged += new System.EventHandler(this.cb_Year_SelectedIndexChanged);
            // 
            // ChartView
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(533, 400);
            this.Controls.Add(this.cb_Year);
            this.Controls.Add(this.lb_Year);
            this.Controls.Add(this.bt_SaveToImage);
            this.Controls.Add(this.chartControl1);
            this.MaximizeBox = false;
            this.Name = "ChartView";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "ChartView";
            this.Load += new System.EventHandler(this.ChartView_Load);
            ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cb_Year.Properties)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Example #26
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            DevExpress.XtraCharts.XYDiagram        xyDiagram1        = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.SecondaryAxisX   secondaryAxisX1   = new DevExpress.XtraCharts.SecondaryAxisX();
            DevExpress.XtraCharts.SecondaryAxisY   secondaryAxisY1   = new DevExpress.XtraCharts.SecondaryAxisY();
            DevExpress.XtraCharts.Series           series1           = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel1 = new DevExpress.XtraCharts.PointSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint      seriesPoint1      = new DevExpress.XtraCharts.SeriesPoint(1, new object[] {
                ((object)(7))
            });
            DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint(2, new object[] {
                ((object)(8))
            });
            DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint(3, new object[] {
                ((object)(6))
            });
            DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint(4, new object[] {
                ((object)(7))
            });
            DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint(5, new object[] {
                ((object)(5))
            });
            DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint(6, new object[] {
                ((object)(6))
            });
            DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint(7, new object[] {
                ((object)(4))
            });
            DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint(8, new object[] {
                ((object)(7))
            });
            DevExpress.XtraCharts.SeriesPoint seriesPoint9 = new DevExpress.XtraCharts.SeriesPoint(9, new object[] {
                ((object)(5))
            });
            DevExpress.XtraCharts.SeriesPoint seriesPoint10 = new DevExpress.XtraCharts.SeriesPoint(10, new object[] {
                ((object)(6))
            });
            DevExpress.XtraCharts.SeriesPoint seriesPoint11 = new DevExpress.XtraCharts.SeriesPoint(100, new object[] {
                ((object)(54))
            });
            DevExpress.XtraCharts.LineSeriesView   lineSeriesView1   = new DevExpress.XtraCharts.LineSeriesView();
            DevExpress.XtraCharts.Series           series2           = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel2 = new DevExpress.XtraCharts.PointSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint      seriesPoint12     = new DevExpress.XtraCharts.SeriesPoint(21, new object[] {
                ((object)(5))
            });
            DevExpress.XtraCharts.SeriesPoint seriesPoint13 = new DevExpress.XtraCharts.SeriesPoint(22, new object[] {
                ((object)(6))
            });
            DevExpress.XtraCharts.SeriesPoint seriesPoint14 = new DevExpress.XtraCharts.SeriesPoint(23, new object[] {
                ((object)(4))
            });
            DevExpress.XtraCharts.SeriesPoint seriesPoint15 = new DevExpress.XtraCharts.SeriesPoint(24, new object[] {
                ((object)(8))
            });
            DevExpress.XtraCharts.SeriesPoint seriesPoint16 = new DevExpress.XtraCharts.SeriesPoint(25, new object[] {
                ((object)(7))
            });
            DevExpress.XtraCharts.LineSeriesView           lineSeriesView2           = new DevExpress.XtraCharts.LineSeriesView();
            DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel1 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
            this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(secondaryAxisX1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(secondaryAxisY1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel1)).BeginInit();
            this.SuspendLayout();
            //
            // chartControl1
            //

            xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
            xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
            xyDiagram1.EnableAxisXScrolling             = true;
            xyDiagram1.EnableAxisYScrolling             = true;
            secondaryAxisX1.AxisID = 0;
            secondaryAxisX1.Name   = "secondaryAxisX1";
            secondaryAxisX1.VisibleInPanesSerializable = "-1";
            xyDiagram1.SecondaryAxesX.AddRange(new DevExpress.XtraCharts.SecondaryAxisX[] {
                secondaryAxisX1
            });
            secondaryAxisY1.AxisID = 0;
            secondaryAxisY1.Name   = "secondaryAxisY1";
            secondaryAxisY1.VisibleInPanesSerializable = "-1";
            xyDiagram1.SecondaryAxesY.AddRange(new DevExpress.XtraCharts.SecondaryAxisY[] {
                secondaryAxisY1
            });
            this.chartControl1.Diagram    = xyDiagram1;
            this.chartControl1.Dock       = System.Windows.Forms.DockStyle.Fill;
            this.chartControl1.Location   = new System.Drawing.Point(0, 0);
            this.chartControl1.Name       = "chartControl1";
            series1.ArgumentScaleType     = DevExpress.XtraCharts.ScaleType.Numerical;
            pointSeriesLabel1.LineVisible = true;
            series1.Label = pointSeriesLabel1;
            series1.Name  = "Series 1";
            series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
                seriesPoint1,
                seriesPoint2,
                seriesPoint3,
                seriesPoint4,
                seriesPoint5,
                seriesPoint6,
                seriesPoint7,
                seriesPoint8,
                seriesPoint9,
                seriesPoint10,
                seriesPoint11
            });
            series1.View = lineSeriesView1;
            series2.ArgumentScaleType     = DevExpress.XtraCharts.ScaleType.Numerical;
            pointSeriesLabel2.LineVisible = true;
            series2.Label = pointSeriesLabel2;
            series2.Name  = "Series 2";
            series2.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
                seriesPoint12,
                seriesPoint13,
                seriesPoint14,
                seriesPoint15,
                seriesPoint16
            });
            lineSeriesView2.AxisXName = "secondaryAxisX1";
            lineSeriesView2.AxisYName = "secondaryAxisY1";
            series2.View = lineSeriesView2;
            this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
                series1,
                series2
            };
            sideBySideBarSeriesLabel1.LineVisible   = true;
            this.chartControl1.SeriesTemplate.Label = sideBySideBarSeriesLabel1;
            this.chartControl1.Size     = new System.Drawing.Size(945, 386);
            this.chartControl1.TabIndex = 0;
            //
            // Form1
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize          = new System.Drawing.Size(945, 386);
            this.Controls.Add(this.chartControl1);
            this.Name = "Form1";
            this.Text = "Form1";
            ((System.ComponentModel.ISupportInitialize)(secondaryAxisX1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(secondaryAxisY1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
            this.ResumeLayout(false);
        }
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            DevExpress.XtraCharts.SimpleDiagram simpleDiagram3 = new DevExpress.XtraCharts.SimpleDiagram();
            DevExpress.XtraCharts.Series series3 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.PieSeriesLabel pieSeriesLabel5 = new DevExpress.XtraCharts.PieSeriesLabel();
            DevExpress.XtraCharts.PiePointOptions piePointOptions3 = new DevExpress.XtraCharts.PiePointOptions();
            DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint("Akurat", new object[] {
            ((object)(30D))}, 0);
            DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint("Tidak Akurat", new object[] {
            ((object)(30D))}, 1);
            DevExpress.XtraCharts.PieSeriesView pieSeriesView5 = new DevExpress.XtraCharts.PieSeriesView();
            DevExpress.XtraCharts.PieSeriesLabel pieSeriesLabel6 = new DevExpress.XtraCharts.PieSeriesLabel();
            DevExpress.XtraCharts.PieSeriesView pieSeriesView6 = new DevExpress.XtraCharts.PieSeriesView();
            DevExpress.XtraCharts.ChartTitle chartTitle3 = new DevExpress.XtraCharts.ChartTitle();
            DevExpress.XtraCharts.SimpleDiagram simpleDiagram4 = new DevExpress.XtraCharts.SimpleDiagram();
            DevExpress.XtraCharts.Series series4 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.PieSeriesLabel pieSeriesLabel7 = new DevExpress.XtraCharts.PieSeriesLabel();
            DevExpress.XtraCharts.PiePointOptions piePointOptions4 = new DevExpress.XtraCharts.PiePointOptions();
            DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint("Akurat", new object[] {
            ((object)(30D))}, 0);
            DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint("Tidak Akurat", new object[] {
            ((object)(30D))}, 1);
            DevExpress.XtraCharts.PieSeriesView pieSeriesView7 = new DevExpress.XtraCharts.PieSeriesView();
            DevExpress.XtraCharts.PieSeriesLabel pieSeriesLabel8 = new DevExpress.XtraCharts.PieSeriesLabel();
            DevExpress.XtraCharts.PieSeriesView pieSeriesView8 = new DevExpress.XtraCharts.PieSeriesView();
            DevExpress.XtraCharts.ChartTitle chartTitle4 = new DevExpress.XtraCharts.ChartTitle();
            this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
            this.lblAkurasiRBFNN = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.chartRBFNN = new DevExpress.XtraCharts.ChartControl();
            this.lstDataRBFNN = new System.Windows.Forms.ListView();
            this.clmNo = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.clmName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.clmPanjangSepal = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.clmLebarSepal = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.clmPanjangPetal = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.clmLebarPetal = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.clmY1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.clmY2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.clmY1out = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.clmY2out = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.clmStatus = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
            this.txtLogGA = new DevExpress.XtraEditors.MemoEdit();
            this.lblAkurasiGA = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.chartRBFNNwithGA = new DevExpress.XtraCharts.ChartControl();
            this.lstDataGA = new System.Windows.Forms.ListView();
            this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader7 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader8 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader9 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader10 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader11 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.btnBack = new DevExpress.XtraEditors.SimpleButton();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
            this.xtraTabControl1.SuspendLayout();
            this.xtraTabPage1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chartRBFNN)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(simpleDiagram3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesView5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesView6)).BeginInit();
            this.xtraTabPage2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtLogGA.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartRBFNNwithGA)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(simpleDiagram4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesView7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesView8)).BeginInit();
            this.SuspendLayout();
            // 
            // xtraTabControl1
            // 
            this.xtraTabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.xtraTabControl1.Location = new System.Drawing.Point(10, 11);
            this.xtraTabControl1.Name = "xtraTabControl1";
            this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
            this.xtraTabControl1.Size = new System.Drawing.Size(1060, 571);
            this.xtraTabControl1.TabIndex = 0;
            this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPage1,
            this.xtraTabPage2});
            // 
            // xtraTabPage1
            // 
            this.xtraTabPage1.Controls.Add(this.lblAkurasiRBFNN);
            this.xtraTabPage1.Controls.Add(this.label1);
            this.xtraTabPage1.Controls.Add(this.chartRBFNN);
            this.xtraTabPage1.Controls.Add(this.lstDataRBFNN);
            this.xtraTabPage1.Name = "xtraTabPage1";
            this.xtraTabPage1.Size = new System.Drawing.Size(1058, 546);
            this.xtraTabPage1.Text = "RBFNN";
            // 
            // lblAkurasiRBFNN
            // 
            this.lblAkurasiRBFNN.AutoSize = true;
            this.lblAkurasiRBFNN.Location = new System.Drawing.Point(920, 310);
            this.lblAkurasiRBFNN.Name = "lblAkurasiRBFNN";
            this.lblAkurasiRBFNN.Size = new System.Drawing.Size(35, 13);
            this.lblAkurasiRBFNN.TabIndex = 4;
            this.lblAkurasiRBFNN.Text = "label2";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(866, 310);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(48, 13);
            this.label1.TabIndex = 3;
            this.label1.Text = "Akurasi :";
            // 
            // chartRBFNN
            // 
            this.chartRBFNN.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.chartRBFNN.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            simpleDiagram3.CustomPanel = null;
            simpleDiagram3.EqualPieSize = false;
            this.chartRBFNN.Diagram = simpleDiagram3;
            this.chartRBFNN.Legend.AlignmentHorizontal = DevExpress.XtraCharts.LegendAlignmentHorizontal.Left;
            this.chartRBFNN.Legend.AlignmentVertical = DevExpress.XtraCharts.LegendAlignmentVertical.Bottom;
            this.chartRBFNN.Legend.Direction = DevExpress.XtraCharts.LegendDirection.RightToLeft;
            this.chartRBFNN.Legend.EquallySpacedItems = false;
            this.chartRBFNN.Location = new System.Drawing.Point(869, 8);
            this.chartRBFNN.Name = "chartRBFNN";
            pieSeriesLabel5.LineVisible = true;
            piePointOptions3.ValueNumericOptions.Format = DevExpress.XtraCharts.NumericFormat.Percent;
            pieSeriesLabel5.PointOptions = piePointOptions3;
            series3.Label = pieSeriesLabel5;
            series3.Name = "Series";
            series3.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint5,
            seriesPoint6});
            pieSeriesView5.RuntimeExploding = false;
            series3.View = pieSeriesView5;
            this.chartRBFNN.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series3};
            pieSeriesLabel6.LineVisible = true;
            this.chartRBFNN.SeriesTemplate.Label = pieSeriesLabel6;
            pieSeriesView6.RuntimeExploding = false;
            this.chartRBFNN.SeriesTemplate.View = pieSeriesView6;
            this.chartRBFNN.Size = new System.Drawing.Size(182, 287);
            this.chartRBFNN.TabIndex = 2;
            chartTitle3.Text = "Chart Keakuratan RBNFF";
            this.chartRBFNN.Titles.AddRange(new DevExpress.XtraCharts.ChartTitle[] {
            chartTitle3});
            // 
            // lstDataRBFNN
            // 
            this.lstDataRBFNN.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.lstDataRBFNN.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.clmNo,
            this.clmName,
            this.clmPanjangSepal,
            this.clmLebarSepal,
            this.clmPanjangPetal,
            this.clmLebarPetal,
            this.clmY1,
            this.clmY2,
            this.clmY1out,
            this.clmY2out,
            this.clmStatus});
            this.lstDataRBFNN.Location = new System.Drawing.Point(8, 8);
            this.lstDataRBFNN.Name = "lstDataRBFNN";
            this.lstDataRBFNN.Size = new System.Drawing.Size(846, 527);
            this.lstDataRBFNN.TabIndex = 1;
            this.lstDataRBFNN.UseCompatibleStateImageBehavior = false;
            this.lstDataRBFNN.View = System.Windows.Forms.View.Details;
            // 
            // clmNo
            // 
            this.clmNo.Text = "No";
            this.clmNo.Width = 50;
            // 
            // clmName
            // 
            this.clmName.Text = "Nama";
            this.clmName.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.clmName.Width = 100;
            // 
            // clmPanjangSepal
            // 
            this.clmPanjangSepal.Text = "Panjang Sepal";
            this.clmPanjangSepal.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.clmPanjangSepal.Width = 100;
            // 
            // clmLebarSepal
            // 
            this.clmLebarSepal.Text = "Lebar Sepal";
            this.clmLebarSepal.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.clmLebarSepal.Width = 100;
            // 
            // clmPanjangPetal
            // 
            this.clmPanjangPetal.Text = "Panjang Petal";
            this.clmPanjangPetal.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.clmPanjangPetal.Width = 100;
            // 
            // clmLebarPetal
            // 
            this.clmLebarPetal.Text = "Lebar Petal";
            this.clmLebarPetal.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.clmLebarPetal.Width = 100;
            // 
            // clmY1
            // 
            this.clmY1.Text = "y1";
            this.clmY1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.clmY1.Width = 80;
            // 
            // clmY2
            // 
            this.clmY2.Text = "y2";
            this.clmY2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.clmY2.Width = 80;
            // 
            // clmY1out
            // 
            this.clmY1out.Text = "Y1";
            // 
            // clmY2out
            // 
            this.clmY2out.Text = "Y2";
            // 
            // clmStatus
            // 
            this.clmStatus.Text = "Status";
            // 
            // xtraTabPage2
            // 
            this.xtraTabPage2.Controls.Add(this.txtLogGA);
            this.xtraTabPage2.Controls.Add(this.lblAkurasiGA);
            this.xtraTabPage2.Controls.Add(this.label3);
            this.xtraTabPage2.Controls.Add(this.chartRBFNNwithGA);
            this.xtraTabPage2.Controls.Add(this.lstDataGA);
            this.xtraTabPage2.Name = "xtraTabPage2";
            this.xtraTabPage2.Size = new System.Drawing.Size(1058, 546);
            this.xtraTabPage2.Text = "RBFNN with GA";
            // 
            // txtLogGA
            // 
            this.txtLogGA.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtLogGA.Location = new System.Drawing.Point(869, 350);
            this.txtLogGA.Name = "txtLogGA";
            this.txtLogGA.Size = new System.Drawing.Size(182, 185);
            this.txtLogGA.TabIndex = 7;
            // 
            // lblAkurasiGA
            // 
            this.lblAkurasiGA.AutoSize = true;
            this.lblAkurasiGA.Location = new System.Drawing.Point(920, 310);
            this.lblAkurasiGA.Name = "lblAkurasiGA";
            this.lblAkurasiGA.Size = new System.Drawing.Size(35, 13);
            this.lblAkurasiGA.TabIndex = 6;
            this.lblAkurasiGA.Text = "label2";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(866, 310);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(48, 13);
            this.label3.TabIndex = 5;
            this.label3.Text = "Akurasi :";
            // 
            // chartRBFNNwithGA
            // 
            this.chartRBFNNwithGA.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.chartRBFNNwithGA.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            simpleDiagram4.CustomPanel = null;
            simpleDiagram4.EqualPieSize = false;
            this.chartRBFNNwithGA.Diagram = simpleDiagram4;
            this.chartRBFNNwithGA.Legend.AlignmentHorizontal = DevExpress.XtraCharts.LegendAlignmentHorizontal.Left;
            this.chartRBFNNwithGA.Legend.AlignmentVertical = DevExpress.XtraCharts.LegendAlignmentVertical.Bottom;
            this.chartRBFNNwithGA.Legend.Direction = DevExpress.XtraCharts.LegendDirection.RightToLeft;
            this.chartRBFNNwithGA.Legend.EquallySpacedItems = false;
            this.chartRBFNNwithGA.Location = new System.Drawing.Point(869, 8);
            this.chartRBFNNwithGA.Name = "chartRBFNNwithGA";
            this.chartRBFNNwithGA.PaletteName = "Apex";
            pieSeriesLabel7.LineVisible = true;
            piePointOptions4.ValueNumericOptions.Format = DevExpress.XtraCharts.NumericFormat.Percent;
            pieSeriesLabel7.PointOptions = piePointOptions4;
            series4.Label = pieSeriesLabel7;
            series4.Name = "Series";
            series4.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint7,
            seriesPoint8});
            pieSeriesView7.RuntimeExploding = false;
            series4.View = pieSeriesView7;
            this.chartRBFNNwithGA.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series4};
            pieSeriesLabel8.LineVisible = true;
            this.chartRBFNNwithGA.SeriesTemplate.Label = pieSeriesLabel8;
            pieSeriesView8.RuntimeExploding = false;
            this.chartRBFNNwithGA.SeriesTemplate.View = pieSeriesView8;
            this.chartRBFNNwithGA.Size = new System.Drawing.Size(182, 287);
            this.chartRBFNNwithGA.TabIndex = 3;
            chartTitle4.Text = "Chart Keakuratan RBNFF with AG";
            this.chartRBFNNwithGA.Titles.AddRange(new DevExpress.XtraCharts.ChartTitle[] {
            chartTitle4});
            // 
            // lstDataGA
            // 
            this.lstDataGA.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.lstDataGA.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader1,
            this.columnHeader2,
            this.columnHeader3,
            this.columnHeader4,
            this.columnHeader5,
            this.columnHeader6,
            this.columnHeader7,
            this.columnHeader8,
            this.columnHeader9,
            this.columnHeader10,
            this.columnHeader11});
            this.lstDataGA.Location = new System.Drawing.Point(8, 8);
            this.lstDataGA.Name = "lstDataGA";
            this.lstDataGA.Size = new System.Drawing.Size(846, 527);
            this.lstDataGA.TabIndex = 2;
            this.lstDataGA.UseCompatibleStateImageBehavior = false;
            this.lstDataGA.View = System.Windows.Forms.View.Details;
            // 
            // columnHeader1
            // 
            this.columnHeader1.Text = "No";
            this.columnHeader1.Width = 50;
            // 
            // columnHeader2
            // 
            this.columnHeader2.Text = "Nama";
            this.columnHeader2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.columnHeader2.Width = 100;
            // 
            // columnHeader3
            // 
            this.columnHeader3.Text = "Panjang Sepal";
            this.columnHeader3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.columnHeader3.Width = 100;
            // 
            // columnHeader4
            // 
            this.columnHeader4.Text = "Lebar Sepal";
            this.columnHeader4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.columnHeader4.Width = 100;
            // 
            // columnHeader5
            // 
            this.columnHeader5.Text = "Panjang Petal";
            this.columnHeader5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.columnHeader5.Width = 100;
            // 
            // columnHeader6
            // 
            this.columnHeader6.Text = "Lebar Petal";
            this.columnHeader6.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.columnHeader6.Width = 100;
            // 
            // columnHeader7
            // 
            this.columnHeader7.Text = "y1";
            this.columnHeader7.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.columnHeader7.Width = 80;
            // 
            // columnHeader8
            // 
            this.columnHeader8.Text = "y2";
            this.columnHeader8.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.columnHeader8.Width = 80;
            // 
            // columnHeader9
            // 
            this.columnHeader9.Text = "Y1";
            // 
            // columnHeader10
            // 
            this.columnHeader10.Text = "Y2";
            // 
            // columnHeader11
            // 
            this.columnHeader11.Text = "Status";
            // 
            // btnBack
            // 
            this.btnBack.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnBack.Location = new System.Drawing.Point(994, 588);
            this.btnBack.Name = "btnBack";
            this.btnBack.Size = new System.Drawing.Size(75, 23);
            this.btnBack.TabIndex = 1;
            this.btnBack.Text = "<< Back";
            this.btnBack.Click += new System.EventHandler(this.btnBack_Click);
            // 
            // ucResult
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.btnBack);
            this.Controls.Add(this.xtraTabControl1);
            this.Name = "ucResult";
            this.Size = new System.Drawing.Size(1084, 619);
            this.Load += new System.EventHandler(this.ucResult_Load);
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
            this.xtraTabControl1.ResumeLayout(false);
            this.xtraTabPage1.ResumeLayout(false);
            this.xtraTabPage1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(simpleDiagram3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesView5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesView6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartRBFNN)).EndInit();
            this.xtraTabPage2.ResumeLayout(false);
            this.xtraTabPage2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtLogGA.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(simpleDiagram4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesView7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesView8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartRBFNNwithGA)).EndInit();
            this.ResumeLayout(false);

        }
Example #28
0
        private void btnPlayback_Click(object sender, EventArgs e)
        {
            btnPlayback.BackColor     = System.Drawing.Color.Red;
            btnPlayback.Enabled       = false;
            btnStopPlayback.BackColor = System.Drawing.Color.LightGreen;
            btnStopPlayback.Enabled   = true;
            SQLCode sql = new SQLCode();

            mustStop = false;
            gMapControl1.Overlays.Clear();
            if (startDateTime == Convert.ToDateTime("1/1/0001") || endDateTime == Convert.ToDateTime("1/1/0001"))
            {
                MessageBox.Show("Missing Date/Time information, preload data first");
                return;
            }

            if (string.IsNullOrEmpty(cboTrucks.Text))
            {
                MessageBox.Show("Please select a truck first");
                return;
            }
            bool check = true;

            if (cboTrucks.Text.ToUpper() != "SELECT" && check == true)
            {
                sql.loadTruckPlaybackData(cboTrucks.Text, startDateTime, endDateTime);
                check = false;
            }

            if (cboCallsigns.Text.ToUpper() != "SELECT" && check == true)
            {
                sql.loadCallSignPlayback(cboCallsigns.Text, startDateTime, endDateTime);
                check = false;
            }

            if (cboDrivers.Text.ToUpper() != "SELECT" && check == true)
            {
                sql.loadDriverPlayback(cboDrivers.Text, startDateTime, endDateTime);
                check = false;
            }

            if (cboContractors.Text.ToUpper() != "SELECT" && check == true)
            {
                sql.loadContractorPlayback(cboContractors.Text, startDateTime, endDateTime);
                check = false;
            }

            if (cboBeats.Text.ToUpper() != "SELECT" && check == true)
            {
                sql.loadBeatPlayback(cboBeats.Text, startDateTime, endDateTime);
                check = false;
            }

            //find max speed in range
            int maxSpeed = 0;

            foreach (playBackRow row in globalData.playbackData)
            {
                if (row.Speed > maxSpeed)
                {
                    maxSpeed = row.Speed;
                }
            }
            chartControl1.Series.Clear();
            DevExpress.XtraCharts.Series series    = new DevExpress.XtraCharts.Series("Speed Over Time", DevExpress.XtraCharts.ViewType.Line);
            DevExpress.XtraCharts.Series barSeries = new DevExpress.XtraCharts.Series("Max Speed", DevExpress.XtraCharts.ViewType.Bar);

            string beatNumber = "NOBEAT";

            foreach (playBackRow row in globalData.playbackData)
            {
                if (row.Beat != "NOBEAT")
                {
                    beatNumber = row.Beat;
                    break;
                }
            }
            drawBeats(beatNumber);
            drawDrops(beatNumber);
            //Add Data to the chart
            foreach (playBackRow row in globalData.playbackData)
            {
                string st     = string.Empty;
                string hour   = row.timeStamp.Hour.ToString();
                string minute = row.timeStamp.Minute.ToString();
                string second = row.timeStamp.Second.ToString();
                while (hour.Length < 2)
                {
                    hour = "0" + hour;
                }
                while (minute.Length < 2)
                {
                    minute = "0" + minute;
                }
                while (second.Length < 2)
                {
                    second = "0" + second;
                }
                st = hour + "." + minute + "." + second;
                series.Points.Add(new DevExpress.XtraCharts.SeriesPoint(st, row.Speed));
                DevExpress.XtraCharts.SeriesPoint barPoint = new DevExpress.XtraCharts.SeriesPoint(st, maxSpeed);
                barPoint.Tag = row.Status;
                barSeries.Points.Add(barPoint);
            }
            chartControl1.Series.Add(barSeries);
            chartControl1.Series.Add(series);

            gvData.DataSource = globalData.playbackData;
            gvData.RefreshDataSource();
            try
            {
                List <statusData> status = sql.getStatusData(cboTrucks.Text, startDateTime, endDateTime);
                gvStatusData.DataSource = status;
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.ToString());
            }
            int pbSpeed = 1;

            if (!string.IsNullOrEmpty(cboPlaybackSpeed.Text))
            {
                string selSpeed = cboPlaybackSpeed.Text;
                pbSpeed = Convert.ToInt32(selSpeed.Replace("x", ""));
            }

            tmrPlayback.Interval = 10000 / pbSpeed; //defaults at updating every 10 seconds
            tmrPlayback.Start();
        }
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("aaa", new object[] {
            ((object)(2D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("bbb", new object[] {
            ((object)(4.5D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("ccc", new object[] {
            ((object)(7.7D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("ddd", new object[] {
            ((object)(1.6D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint("eee", new object[] {
            ((object)(8.9D))});
            DevExpress.XtraCharts.Series series2 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint("aaa", new object[] {
            ((object)(8D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint("bbb", new object[] {
            ((object)(10D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint("ccc", new object[] {
            ((object)(7.3D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint9 = new DevExpress.XtraCharts.SeriesPoint("ddd", new object[] {
            ((object)(3.3D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint10 = new DevExpress.XtraCharts.SeriesPoint("eee", new object[] {
            ((object)(7.9D))});
            DevExpress.XtraCharts.Series series3 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SeriesPoint seriesPoint11 = new DevExpress.XtraCharts.SeriesPoint("aaa", new object[] {
            ((object)(1.2D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint12 = new DevExpress.XtraCharts.SeriesPoint("bbb", new object[] {
            ((object)(7.5D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint13 = new DevExpress.XtraCharts.SeriesPoint("ccc", new object[] {
            ((object)(2.5D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint14 = new DevExpress.XtraCharts.SeriesPoint("ddd", new object[] {
            ((object)(6.9D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint15 = new DevExpress.XtraCharts.SeriesPoint("eee", new object[] {
            ((object)(3.7D))});
            DevExpress.XtraCharts.ChartTitle chartTitle1 = new DevExpress.XtraCharts.ChartTitle();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UcReportMonthlyCategory));
            this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.btnSearch = new DevExpress.XtraEditors.SimpleButton();
            this.cbbDataType = new DevExpress.XtraEditors.ComboBoxEdit();
            this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
            this.cbbCategory = new DevExpress.XtraEditors.CheckedComboBoxEdit();
            this.chkShowCurrentMonth = new DevExpress.XtraEditors.CheckEdit();
            this.lblTime = new DevExpress.XtraEditors.LabelControl();
            this.cbbBackward = new DevExpress.XtraEditors.ComboBoxEdit();
            this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
            this.cbbTime = new DevExpress.XtraEditors.ComboBoxEdit();
            this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
            this.splashScreenManager = new DevExpress.XtraSplashScreen.SplashScreenManager(this, typeof(global::PowerBackend.FmWait), true, true, typeof(System.Windows.Forms.UserControl));
            this.cbbCustomerType = new DevExpress.XtraEditors.ComboBoxEdit();
            this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            this.panelControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cbbDataType.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbbCategory.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chkShowCurrentMonth.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbbBackward.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbbTime.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbbCustomerType.Properties)).BeginInit();
            this.SuspendLayout();
            // 
            // chartControl1
            // 
            xyDiagram1.AxisX.AutoScaleBreaks.Enabled = true;
            xyDiagram1.AxisX.CrosshairAxisLabelOptions.Visibility = DevExpress.Utils.DefaultBoolean.False;
            xyDiagram1.AxisX.Tickmarks.MinorVisible = false;
            xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
            xyDiagram1.AxisY.Label.TextPattern = "{V:#,#}";
            xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
            this.chartControl1.Diagram = xyDiagram1;
            this.chartControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.chartControl1.Location = new System.Drawing.Point(0, 30);
            this.chartControl1.Name = "chartControl1";
            series1.Name = "มกรา";
            series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint1,
            seriesPoint2,
            seriesPoint3,
            seriesPoint4,
            seriesPoint5});
            series2.Name = "กุมภา";
            series2.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint6,
            seriesPoint7,
            seriesPoint8,
            seriesPoint9,
            seriesPoint10});
            series3.Name = "มีนา";
            series3.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint11,
            seriesPoint12,
            seriesPoint13,
            seriesPoint14,
            seriesPoint15});
            this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series1,
        series2,
        series3};
            this.chartControl1.Size = new System.Drawing.Size(1069, 443);
            this.chartControl1.TabIndex = 0;
            chartTitle1.Font = new System.Drawing.Font("DilleniaUPC", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            chartTitle1.Text = "กราฟแสดง";
            this.chartControl1.Titles.AddRange(new DevExpress.XtraCharts.ChartTitle[] {
            chartTitle1});
            this.chartControl1.Visible = false;
            // 
            // panelControl1
            // 
            this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.panelControl1.Controls.Add(this.cbbCustomerType);
            this.panelControl1.Controls.Add(this.labelControl3);
            this.panelControl1.Controls.Add(this.btnSearch);
            this.panelControl1.Controls.Add(this.cbbDataType);
            this.panelControl1.Controls.Add(this.labelControl4);
            this.panelControl1.Controls.Add(this.cbbCategory);
            this.panelControl1.Controls.Add(this.chkShowCurrentMonth);
            this.panelControl1.Controls.Add(this.lblTime);
            this.panelControl1.Controls.Add(this.cbbBackward);
            this.panelControl1.Controls.Add(this.labelControl2);
            this.panelControl1.Controls.Add(this.cbbTime);
            this.panelControl1.Controls.Add(this.labelControl1);
            this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelControl1.Location = new System.Drawing.Point(0, 0);
            this.panelControl1.Name = "panelControl1";
            this.panelControl1.Size = new System.Drawing.Size(1069, 30);
            this.panelControl1.TabIndex = 1;
            // 
            // btnSearch
            // 
            this.btnSearch.Appearance.Font = new System.Drawing.Font("Tahoma", 9.5F);
            this.btnSearch.Appearance.Options.UseFont = true;
            this.btnSearch.Image = ((System.Drawing.Image)(resources.GetObject("btnSearch.Image")));
            this.btnSearch.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnSearch.Location = new System.Drawing.Point(828, 0);
            this.btnSearch.Name = "btnSearch";
            this.btnSearch.Size = new System.Drawing.Size(95, 23);
            this.btnSearch.TabIndex = 10;
            this.btnSearch.Text = "ค้นหาข้อมูล";
            this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
            // 
            // cbbDataType
            // 
            this.cbbDataType.EditValue = "ยอดขาย";
            this.cbbDataType.Location = new System.Drawing.Point(692, 0);
            this.cbbDataType.Name = "cbbDataType";
            this.cbbDataType.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.5F);
            this.cbbDataType.Properties.Appearance.Options.UseFont = true;
            this.cbbDataType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cbbDataType.Properties.Items.AddRange(new object[] {
            "ยอดขาย",
            "จำนวนชิ้น",
            "กำไร",
            "ต้นทุนเฉลี่ยต่อชิ้น",
            "ราคาขายเฉลี่ยต่อชิ้น",
            "กำไรเฉลี่ยต่อชิ้น"});
            this.cbbDataType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.cbbDataType.Size = new System.Drawing.Size(130, 22);
            this.cbbDataType.TabIndex = 9;
            this.cbbDataType.SelectedIndexChanged += new System.EventHandler(this.cbbDataType_SelectedIndexChanged);
            // 
            // labelControl4
            // 
            this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 9.5F);
            this.labelControl4.Location = new System.Drawing.Point(651, 3);
            this.labelControl4.Name = "labelControl4";
            this.labelControl4.Size = new System.Drawing.Size(32, 16);
            this.labelControl4.TabIndex = 8;
            this.labelControl4.Text = "ข้อมูล";
            // 
            // cbbCategory
            // 
            this.cbbCategory.EditValue = "";
            this.cbbCategory.Location = new System.Drawing.Point(908, 0);
            this.cbbCategory.Name = "cbbCategory";
            this.cbbCategory.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.5F);
            this.cbbCategory.Properties.Appearance.Options.UseFont = true;
            this.cbbCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cbbCategory.Properties.SelectAllItemCaption = "ทุกหมวดหมู่";
            this.cbbCategory.Size = new System.Drawing.Size(260, 22);
            this.cbbCategory.TabIndex = 7;
            this.cbbCategory.Visible = false;
            this.cbbCategory.EditValueChanged += new System.EventHandler(this.cbbCategory_EditValueChanged);
            // 
            // chkShowCurrentMonth
            // 
            this.chkShowCurrentMonth.EditValue = true;
            this.chkShowCurrentMonth.Location = new System.Drawing.Point(500, 1);
            this.chkShowCurrentMonth.Name = "chkShowCurrentMonth";
            this.chkShowCurrentMonth.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.5F);
            this.chkShowCurrentMonth.Properties.Appearance.Options.UseFont = true;
            this.chkShowCurrentMonth.Properties.Caption = "แสดงเดือนปัจจุบัน";
            this.chkShowCurrentMonth.Properties.GlyphAlignment = DevExpress.Utils.HorzAlignment.Default;
            this.chkShowCurrentMonth.Size = new System.Drawing.Size(138, 20);
            this.chkShowCurrentMonth.TabIndex = 5;
            this.chkShowCurrentMonth.CheckedChanged += new System.EventHandler(this.chkShowCurrentMonth_CheckedChanged);
            // 
            // lblTime
            // 
            this.lblTime.Appearance.Font = new System.Drawing.Font("Tahoma", 9.5F);
            this.lblTime.Location = new System.Drawing.Point(431, 3);
            this.lblTime.Name = "lblTime";
            this.lblTime.Size = new System.Drawing.Size(28, 16);
            this.lblTime.TabIndex = 4;
            this.lblTime.Text = "เดือน";
            // 
            // cbbBackward
            // 
            this.cbbBackward.EditValue = "3";
            this.cbbBackward.Location = new System.Drawing.Point(381, 0);
            this.cbbBackward.Name = "cbbBackward";
            this.cbbBackward.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.5F);
            this.cbbBackward.Properties.Appearance.Options.UseFont = true;
            this.cbbBackward.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cbbBackward.Properties.Items.AddRange(new object[] {
            "0",
            "1",
            "2",
            "3",
            "4",
            "5",
            "6",
            "7",
            "8",
            "9",
            "10",
            "11",
            "12"});
            this.cbbBackward.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.cbbBackward.Size = new System.Drawing.Size(44, 22);
            this.cbbBackward.TabIndex = 3;
            this.cbbBackward.SelectedIndexChanged += new System.EventHandler(this.cbbBackward_SelectedIndexChanged);
            // 
            // labelControl2
            // 
            this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 9.5F);
            this.labelControl2.Location = new System.Drawing.Point(329, 3);
            this.labelControl2.Name = "labelControl2";
            this.labelControl2.Size = new System.Drawing.Size(46, 16);
            this.labelControl2.TabIndex = 2;
            this.labelControl2.Text = "ย้อนหลัง";
            // 
            // cbbTime
            // 
            this.cbbTime.EditValue = "รายเดือน";
            this.cbbTime.Enabled = false;
            this.cbbTime.Location = new System.Drawing.Point(223, 0);
            this.cbbTime.Name = "cbbTime";
            this.cbbTime.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.5F);
            this.cbbTime.Properties.Appearance.Options.UseFont = true;
            this.cbbTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cbbTime.Properties.Items.AddRange(new object[] {
            "รายวัน",
            "รายสัปดาห์",
            "รายเดือน"});
            this.cbbTime.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.cbbTime.Size = new System.Drawing.Size(100, 22);
            this.cbbTime.TabIndex = 1;
            this.cbbTime.SelectedIndexChanged += new System.EventHandler(this.cbbTime_SelectedIndexChanged);
            // 
            // labelControl1
            // 
            this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 9.5F);
            this.labelControl1.Location = new System.Drawing.Point(173, 3);
            this.labelControl1.Name = "labelControl1";
            this.labelControl1.Size = new System.Drawing.Size(44, 16);
            this.labelControl1.TabIndex = 0;
            this.labelControl1.Text = "ช่วงเวลา";
            // 
            // splashScreenManager
            // 
            this.splashScreenManager.ClosingDelay = 500;
            // 
            // cbbCustomerType
            // 
            this.cbbCustomerType.EditValue = "ทั้งหมด";
            this.cbbCustomerType.Location = new System.Drawing.Point(42, 0);
            this.cbbCustomerType.Name = "cbbCustomerType";
            this.cbbCustomerType.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.5F);
            this.cbbCustomerType.Properties.Appearance.Options.UseFont = true;
            this.cbbCustomerType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cbbCustomerType.Properties.Items.AddRange(new object[] {
            "ทั้งหมด",
            "องค์กร"});
            this.cbbCustomerType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.cbbCustomerType.Size = new System.Drawing.Size(100, 22);
            this.cbbCustomerType.TabIndex = 12;
            // 
            // labelControl3
            // 
            this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 9.5F);
            this.labelControl3.Location = new System.Drawing.Point(5, 3);
            this.labelControl3.Name = "labelControl3";
            this.labelControl3.Size = new System.Drawing.Size(30, 16);
            this.labelControl3.TabIndex = 11;
            this.labelControl3.Text = "ลูกค้า";
            // 
            // UcReportMonthlyCategory
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.chartControl1);
            this.Controls.Add(this.panelControl1);
            this.Name = "UcReportMonthlyCategory";
            this.Size = new System.Drawing.Size(1069, 473);
            this.Load += new System.EventHandler(this.UcReportMonthlyCategory_Load);
            ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            this.panelControl1.ResumeLayout(false);
            this.panelControl1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cbbDataType.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbbCategory.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chkShowCurrentMonth.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbbBackward.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbbTime.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbbCustomerType.Properties)).EndInit();
            this.ResumeLayout(false);

        }
Example #30
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraCharts.XYDiagram   xyDiagram1   = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series      series1      = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("Illinois", new object[] {
         ((object)(423.721D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("Indiana", new object[] {
         ((object)(178.719D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("Michigan", new object[] {
         ((object)(308.845D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("Ohio", new object[] {
         ((object)(348.555D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint("Wisconsin", new object[] {
         ((object)(160.274D))
     });
     DevExpress.XtraCharts.Series      series2      = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint("Illinois", new object[] {
         ((object)(476.851D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint("Indiana", new object[] {
         ((object)(195.769D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint("Michigan", new object[] {
         ((object)(335.793D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint9 = new DevExpress.XtraCharts.SeriesPoint("Ohio", new object[] {
         ((object)(374.771D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint10 = new DevExpress.XtraCharts.SeriesPoint("Wisconsin", new object[] {
         ((object)(182.373D))
     });
     DevExpress.XtraCharts.Series      series3       = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint11 = new DevExpress.XtraCharts.SeriesPoint("Illinois", new object[] {
         ((object)(528.904D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint12 = new DevExpress.XtraCharts.SeriesPoint("Indiana", new object[] {
         ((object)(227.271D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint13 = new DevExpress.XtraCharts.SeriesPoint("Michigan", new object[] {
         ((object)(372.576D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint14 = new DevExpress.XtraCharts.SeriesPoint("Ohio", new object[] {
         ((object)(418.258D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint15 = new DevExpress.XtraCharts.SeriesPoint("Wisconsin", new object[] {
         ((object)(211.727D))
     });
     DevExpress.XtraCharts.ChartTitle chartTitle1 = new DevExpress.XtraCharts.ChartTitle();
     this.chartControl        = new DevExpress.XtraCharts.ChartControl();
     this.defaultLookAndFeel1 = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.chartControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
     this.SuspendLayout();
     //
     // chartControl
     //
     this.chartControl.DataBindings = null;
     xyDiagram1.AxisX.VisibleInPanesSerializable     = "-1";
     xyDiagram1.AxisY.VisibleInPanesSerializable     = "-1";
     xyDiagram1.AxisY.WholeRange.AlwaysShowZeroLevel = false;
     this.chartControl.Diagram = xyDiagram1;
     this.chartControl.Dock    = System.Windows.Forms.DockStyle.Fill;
     this.chartControl.Legend.AlignmentHorizontal = DevExpress.XtraCharts.LegendAlignmentHorizontal.Right;
     this.chartControl.Legend.Direction           = DevExpress.XtraCharts.LegendDirection.LeftToRight;
     this.chartControl.Location = new System.Drawing.Point(0, 0);
     this.chartControl.Name     = "chartControl";
     series1.Name = "1998";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint1,
         seriesPoint2,
         seriesPoint3,
         seriesPoint4,
         seriesPoint5
     });
     series2.Name = "2001";
     series2.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint6,
         seriesPoint7,
         seriesPoint8,
         seriesPoint9,
         seriesPoint10
     });
     series3.Name = "2004";
     series3.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint11,
         seriesPoint12,
         seriesPoint13,
         seriesPoint14,
         seriesPoint15
     });
     this.chartControl.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
         series1,
         series2,
         series3
     };
     this.chartControl.Size     = new System.Drawing.Size(384, 216);
     this.chartControl.TabIndex = 0;
     chartTitle1.Font           = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartTitle1.Text           = "Great Lakes Gross State Product";
     this.chartControl.Titles.AddRange(new DevExpress.XtraCharts.ChartTitle[] {
         chartTitle1
     });
     //
     // defaultLookAndFeel1
     //
     this.defaultLookAndFeel1.LookAndFeel.SkinName = "Office 2013";
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(384, 216);
     this.Controls.Add(this.chartControl);
     this.Name  = "Form1";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl)).EndInit();
     this.ResumeLayout(false);
 }
Example #31
0
        void InitXYDiagram()
        {
            chartCalib.Series[0].Points.Clear();
            chartCalib.Series[1].Points.Clear();

            chartCalib.Series[0].LegendText = "---";
            chartCalib.Series[1].LegendText = "---";

            string serie = "{0}, {1}";

            RegressionLineal oRL_serie1 = new RegressionLineal();
            RegressionLineal oRL_serie2 = new RegressionLineal();

            foreach (ChartPoint item in lstChartPoint_serie1)
            {
                DevExpress.XtraCharts.SeriesPoint punto = new DevExpress.XtraCharts.SeriesPoint();
                punto.Argument = item.X.ToString();
                punto.Values = new double[] { Convert.ToDouble(item.Y) };

                oRL_serie1.AddPoint(Convert.ToDouble(item.X), Convert.ToDouble(item.Y));

                chartCalib.Series[0].Points.Add(punto);

                chartCalib.Series[0].LegendText = string.Format(serie, oRL_serie1.getEcuation(), oRL_serie1.getR());

            }

            foreach (ChartPoint item in lstChartPoint_serie2)
            {
                DevExpress.XtraCharts.SeriesPoint punto = new DevExpress.XtraCharts.SeriesPoint();
                punto.Argument = item.X.ToString();
                punto.Values = new double[] { Convert.ToDouble(item.Y) };

                oRL_serie2.AddPoint(Convert.ToDouble(item.X), Convert.ToDouble(item.Y));

                chartCalib.Series[1].Points.Add(punto);

                chartCalib.Series[1].LegendText = string.Format(serie, oRL_serie2.getEcuation(), oRL_serie2.getR());
            }

            try
            {
                if (!double.IsNaN(oRL_serie2.r()))
                    tbRexp2.BackColor = oRL_serie2.r() > Convert.ToDouble(tbRexp2.Value) ? Color.White : Color.Red;

                if (!double.IsNaN(oRL_serie1.r()))
                    tbRexp2.BackColor = oRL_serie1.r() > Convert.ToDouble(tbRexp2.Value) ? Color.White : Color.Red;
            }
            catch
            {
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraCharts.XYDiagram   xyDiagram1   = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series      series1      = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("Illinois", new object[] {
         ((object)(423.721D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("Indiana", new object[] {
         ((object)(178.719D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("Michigan", new object[] {
         ((object)(308.845D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("Ohio", new object[] {
         ((object)(348.555D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint("Wisconsin", new object[] {
         ((object)(160.274D))
     });
     DevExpress.XtraCharts.Series      series2      = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint("Illinois", new object[] {
         ((object)(476.851D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint("Indiana", new object[] {
         ((object)(195.769D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint("Michigan", new object[] {
         ((object)(335.793D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint9 = new DevExpress.XtraCharts.SeriesPoint("Ohio", new object[] {
         ((object)(374.771D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint10 = new DevExpress.XtraCharts.SeriesPoint("Wisconsin", new object[] {
         ((object)(182.373D))
     });
     DevExpress.XtraCharts.Series      series3       = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint11 = new DevExpress.XtraCharts.SeriesPoint("Illinois", new object[] {
         ((object)(528.904D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint12 = new DevExpress.XtraCharts.SeriesPoint("Indiana", new object[] {
         ((object)(227.271D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint13 = new DevExpress.XtraCharts.SeriesPoint("Michigan", new object[] {
         ((object)(372.576D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint14 = new DevExpress.XtraCharts.SeriesPoint("Ohio", new object[] {
         ((object)(418.258D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint15 = new DevExpress.XtraCharts.SeriesPoint("Wisconsin", new object[] {
         ((object)(211.727D))
     });
     DevExpress.XtraCharts.ChartTitle chartTitle1 = new DevExpress.XtraCharts.ChartTitle();
     this.chart              = new DevExpress.XtraCharts.ChartControl();
     this.tooltipController  = new DevExpress.Utils.ToolTipController(this.components);
     this.defaultLookAndFeel = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
     this.SuspendLayout();
     //
     // chart
     //
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.Title.Text                 = "Millions of USD";
     xyDiagram1.AxisY.Title.Visibility           = DevExpress.Utils.DefaultBoolean.True;
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     this.chart.Diagram = xyDiagram1;
     this.chart.Dock    = System.Windows.Forms.DockStyle.Fill;
     this.chart.Legend.AlignmentHorizontal = DevExpress.XtraCharts.LegendAlignmentHorizontal.Center;
     this.chart.Legend.AlignmentVertical   = DevExpress.XtraCharts.LegendAlignmentVertical.TopOutside;
     this.chart.Legend.Direction           = DevExpress.XtraCharts.LegendDirection.LeftToRight;
     this.chart.Legend.Visibility          = DevExpress.Utils.DefaultBoolean.True;
     this.chart.Location          = new System.Drawing.Point(0, 0);
     this.chart.Name              = "chart";
     this.chart.RuntimeHitTesting = true;
     series1.Name = "1998";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint1,
         seriesPoint2,
         seriesPoint3,
         seriesPoint4,
         seriesPoint5
     });
     series2.Name = "2001";
     series2.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint6,
         seriesPoint7,
         seriesPoint8,
         seriesPoint9,
         seriesPoint10
     });
     series3.Name = "2004";
     series3.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint11,
         seriesPoint12,
         seriesPoint13,
         seriesPoint14,
         seriesPoint15
     });
     this.chart.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
         series1,
         series2,
         series3
     };
     this.chart.Size     = new System.Drawing.Size(624, 321);
     this.chart.TabIndex = 0;
     chartTitle1.Font    = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartTitle1.Indent  = 1;
     chartTitle1.Text    = "Great lakes gross state product";
     this.chart.Titles.AddRange(new DevExpress.XtraCharts.ChartTitle[] {
         chartTitle1
     });
     this.chart.MouseMove += new System.Windows.Forms.MouseEventHandler(this.OnMouseMove);
     //
     // defaultLookAndFeel
     //
     this.defaultLookAndFeel.LookAndFeel.SkinName = "Office 2013";
     //
     // SampleForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(624, 321);
     this.Controls.Add(this.chart);
     this.Name = "SampleForm";
     this.Text = "Axis Title Hit Test Sample";
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
     this.ResumeLayout(false);
 }
Example #33
0
        /// <summary> 
        /// 디자이너 지원에 필요한 메서드입니다. 
        /// 이 메서드의 내용을 코드 편집기로 수정하지 마십시오.
        /// </summary>
        private void InitializeComponent()
        {
            DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("1", new object[] {
            ((object)(324D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("2", new object[] {
            ((object)(234D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("3", new object[] {
            ((object)(211D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("4", new object[] {
            ((object)(170D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint("5", new object[] {
            ((object)(114D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint("6", new object[] {
            ((object)(243D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint("7", new object[] {
            ((object)(150D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint("8", new object[] {
            ((object)(100D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint9 = new DevExpress.XtraCharts.SeriesPoint("9", new object[] {
            ((object)(90D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint10 = new DevExpress.XtraCharts.SeriesPoint("10", new object[] {
            ((object)(39D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint11 = new DevExpress.XtraCharts.SeriesPoint("11", new object[] {
            ((object)(100D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint12 = new DevExpress.XtraCharts.SeriesPoint("12", new object[] {
            ((object)(129D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint13 = new DevExpress.XtraCharts.SeriesPoint("13", new object[] {
            ((object)(150D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint14 = new DevExpress.XtraCharts.SeriesPoint("14", new object[] {
            ((object)(179D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint15 = new DevExpress.XtraCharts.SeriesPoint("15", new object[] {
            ((object)(199D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint16 = new DevExpress.XtraCharts.SeriesPoint("16", new object[] {
            ((object)(170D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint17 = new DevExpress.XtraCharts.SeriesPoint("17", new object[] {
            ((object)(150D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint18 = new DevExpress.XtraCharts.SeriesPoint("18", new object[] {
            ((object)(130D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint19 = new DevExpress.XtraCharts.SeriesPoint("19", new object[] {
            ((object)(120D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint20 = new DevExpress.XtraCharts.SeriesPoint("20", new object[] {
            ((object)(111D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint21 = new DevExpress.XtraCharts.SeriesPoint("20", new object[] {
            ((object)(80D))});
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DataAnalytics));
            this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
            this.radioGroup2 = new DevExpress.XtraEditors.RadioGroup();
            this.radioGroup1 = new DevExpress.XtraEditors.RadioGroup();
            this.comboBoxEdit6 = new DevExpress.XtraEditors.ComboBoxEdit();
            this.comboBoxEdit5 = new DevExpress.XtraEditors.ComboBoxEdit();
            this.comboBoxEdit4 = new DevExpress.XtraEditors.ComboBoxEdit();
            this.comboBoxEdit3 = new DevExpress.XtraEditors.ComboBoxEdit();
            this.comboBoxEdit2 = new DevExpress.XtraEditors.ComboBoxEdit();
            this.comboBoxEdit1 = new DevExpress.XtraEditors.ComboBoxEdit();
            this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
            this.sbDataAnalyticsPrint = new DevExpress.XtraEditors.SimpleButton();
            this.sbDataAnalyticsPdf = new DevExpress.XtraEditors.SimpleButton();
            this.sbDataAnalyticsSearch = new DevExpress.XtraEditors.SimpleButton();
            this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
            this.cbeDataAnalyticsHourTo = new DevExpress.XtraEditors.ComboBoxEdit();
            this.deDataAnalyticsDateTo = new DevExpress.XtraEditors.DateEdit();
            this.cbeDataAnalyticsHourFrom = new DevExpress.XtraEditors.ComboBoxEdit();
            this.deDataAnalyticsDateFrom = new DevExpress.XtraEditors.DateEdit();
            this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.tabbedControlGroup1 = new DevExpress.XtraLayout.TabbedControlGroup();
            this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.lcgDataAnalytics = new DevExpress.XtraLayout.LayoutControlGroup();
            this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
            this.emptySpaceItem4 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.emptySpaceItem6 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.emptySpaceItem7 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
            this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
            this.emptySpaceItem5 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.emptySpaceItem8 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
            this.emptySpaceItem9 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
            this.emptySpaceItem10 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.emptySpaceItem11 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem14 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem15 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem17 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem16 = new DevExpress.XtraLayout.LayoutControlItem();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
            this.layoutControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radioGroup2.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit6.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit5.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit4.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit3.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit2.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbeDataAnalyticsHourTo.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.deDataAnalyticsDateTo.Properties.CalendarTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.deDataAnalyticsDateTo.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbeDataAnalyticsHourFrom.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.deDataAnalyticsDateFrom.Properties.CalendarTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.deDataAnalyticsDateFrom.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tabbedControlGroup1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lcgDataAnalytics)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem11)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).BeginInit();
            this.SuspendLayout();
            // 
            // layoutControl1
            // 
            this.layoutControl1.Controls.Add(this.radioGroup2);
            this.layoutControl1.Controls.Add(this.radioGroup1);
            this.layoutControl1.Controls.Add(this.comboBoxEdit6);
            this.layoutControl1.Controls.Add(this.comboBoxEdit5);
            this.layoutControl1.Controls.Add(this.comboBoxEdit4);
            this.layoutControl1.Controls.Add(this.comboBoxEdit3);
            this.layoutControl1.Controls.Add(this.comboBoxEdit2);
            this.layoutControl1.Controls.Add(this.comboBoxEdit1);
            this.layoutControl1.Controls.Add(this.chartControl1);
            this.layoutControl1.Controls.Add(this.sbDataAnalyticsPrint);
            this.layoutControl1.Controls.Add(this.sbDataAnalyticsPdf);
            this.layoutControl1.Controls.Add(this.sbDataAnalyticsSearch);
            this.layoutControl1.Controls.Add(this.labelControl1);
            this.layoutControl1.Controls.Add(this.cbeDataAnalyticsHourTo);
            this.layoutControl1.Controls.Add(this.deDataAnalyticsDateTo);
            this.layoutControl1.Controls.Add(this.cbeDataAnalyticsHourFrom);
            this.layoutControl1.Controls.Add(this.deDataAnalyticsDateFrom);
            this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.layoutControl1.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.layoutControlGroup2,
            this.tabbedControlGroup1});
            this.layoutControl1.Location = new System.Drawing.Point(0, 0);
            this.layoutControl1.Name = "layoutControl1";
            this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(1062, 177, 809, 736);
            this.layoutControl1.Root = this.layoutControlGroup1;
            this.layoutControl1.Size = new System.Drawing.Size(986, 721);
            this.layoutControl1.TabIndex = 2;
            this.layoutControl1.Text = "layoutControl1";
            // 
            // radioGroup2
            // 
            this.radioGroup2.Location = new System.Drawing.Point(147, 152);
            this.radioGroup2.Name = "radioGroup2";
            this.radioGroup2.Properties.GlyphAlignment = DevExpress.Utils.HorzAlignment.Default;
            this.radioGroup2.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
            new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Bar Graph"),
            new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Line Graph")});
            this.radioGroup2.Size = new System.Drawing.Size(344, 32);
            this.radioGroup2.StyleController = this.layoutControl1;
            this.radioGroup2.TabIndex = 23;
            // 
            // radioGroup1
            // 
            this.radioGroup1.Location = new System.Drawing.Point(147, 116);
            this.radioGroup1.Name = "radioGroup1";
            this.radioGroup1.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
            new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "센서1"),
            new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "센서2"),
            new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "센서3"),
            new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "센서4"),
            new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "센서5"),
            new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "센서6")});
            this.radioGroup1.Size = new System.Drawing.Size(622, 32);
            this.radioGroup1.StyleController = this.layoutControl1;
            this.radioGroup1.TabIndex = 22;
            // 
            // comboBoxEdit6
            // 
            this.comboBoxEdit6.Location = new System.Drawing.Point(684, 84);
            this.comboBoxEdit6.Name = "comboBoxEdit6";
            this.comboBoxEdit6.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit6.Size = new System.Drawing.Size(79, 28);
            this.comboBoxEdit6.StyleController = this.layoutControl1;
            this.comboBoxEdit6.TabIndex = 20;
            // 
            // comboBoxEdit5
            // 
            this.comboBoxEdit5.Location = new System.Drawing.Point(575, 84);
            this.comboBoxEdit5.Name = "comboBoxEdit5";
            this.comboBoxEdit5.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit5.Size = new System.Drawing.Size(87, 28);
            this.comboBoxEdit5.StyleController = this.layoutControl1;
            this.comboBoxEdit5.TabIndex = 19;
            // 
            // comboBoxEdit4
            // 
            this.comboBoxEdit4.Location = new System.Drawing.Point(459, 84);
            this.comboBoxEdit4.Name = "comboBoxEdit4";
            this.comboBoxEdit4.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit4.Size = new System.Drawing.Size(89, 28);
            this.comboBoxEdit4.StyleController = this.layoutControl1;
            this.comboBoxEdit4.TabIndex = 18;
            // 
            // comboBoxEdit3
            // 
            this.comboBoxEdit3.Location = new System.Drawing.Point(351, 84);
            this.comboBoxEdit3.Name = "comboBoxEdit3";
            this.comboBoxEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit3.Size = new System.Drawing.Size(86, 28);
            this.comboBoxEdit3.StyleController = this.layoutControl1;
            this.comboBoxEdit3.TabIndex = 17;
            // 
            // comboBoxEdit2
            // 
            this.comboBoxEdit2.Location = new System.Drawing.Point(147, 84);
            this.comboBoxEdit2.Name = "comboBoxEdit2";
            this.comboBoxEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit2.Size = new System.Drawing.Size(152, 28);
            this.comboBoxEdit2.StyleController = this.layoutControl1;
            this.comboBoxEdit2.TabIndex = 16;
            // 
            // comboBoxEdit1
            // 
            this.comboBoxEdit1.Location = new System.Drawing.Point(147, 52);
            this.comboBoxEdit1.Name = "comboBoxEdit1";
            this.comboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit1.Size = new System.Drawing.Size(152, 28);
            this.comboBoxEdit1.StyleController = this.layoutControl1;
            this.comboBoxEdit1.TabIndex = 15;
            // 
            // chartControl1
            // 
            this.chartControl1.AppearanceNameSerializable = "Northern Lights";
            xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
            xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
            this.chartControl1.Diagram = xyDiagram1;
            this.chartControl1.Location = new System.Drawing.Point(24, 231);
            this.chartControl1.Name = "chartControl1";
            series1.Name = "Series 1";
            series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint1,
            seriesPoint2,
            seriesPoint3,
            seriesPoint4,
            seriesPoint5,
            seriesPoint6,
            seriesPoint7,
            seriesPoint8,
            seriesPoint9,
            seriesPoint10,
            seriesPoint11,
            seriesPoint12,
            seriesPoint13,
            seriesPoint14,
            seriesPoint15,
            seriesPoint16,
            seriesPoint17,
            seriesPoint18,
            seriesPoint19,
            seriesPoint20,
            seriesPoint21});
            this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series1};
            this.chartControl1.Size = new System.Drawing.Size(938, 466);
            this.chartControl1.TabIndex = 14;
            // 
            // sbDataAnalyticsPrint
            // 
            this.sbDataAnalyticsPrint.Image = ((System.Drawing.Image)(resources.GetObject("sbDataAnalyticsPrint.Image")));
            this.sbDataAnalyticsPrint.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.sbDataAnalyticsPrint.Location = new System.Drawing.Point(736, 188);
            this.sbDataAnalyticsPrint.Name = "sbDataAnalyticsPrint";
            this.sbDataAnalyticsPrint.Size = new System.Drawing.Size(118, 29);
            this.sbDataAnalyticsPrint.StyleController = this.layoutControl1;
            this.sbDataAnalyticsPrint.TabIndex = 13;
            this.sbDataAnalyticsPrint.Text = "인쇄";
            // 
            // sbDataAnalyticsPdf
            // 
            this.sbDataAnalyticsPdf.Image = ((System.Drawing.Image)(resources.GetObject("sbDataAnalyticsPdf.Image")));
            this.sbDataAnalyticsPdf.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.sbDataAnalyticsPdf.Location = new System.Drawing.Point(620, 188);
            this.sbDataAnalyticsPdf.Name = "sbDataAnalyticsPdf";
            this.sbDataAnalyticsPdf.Size = new System.Drawing.Size(112, 29);
            this.sbDataAnalyticsPdf.StyleController = this.layoutControl1;
            this.sbDataAnalyticsPdf.TabIndex = 12;
            this.sbDataAnalyticsPdf.Text = "변환";
            // 
            // sbDataAnalyticsSearch
            // 
            this.sbDataAnalyticsSearch.Image = ((System.Drawing.Image)(resources.GetObject("sbDataAnalyticsSearch.Image")));
            this.sbDataAnalyticsSearch.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.sbDataAnalyticsSearch.Location = new System.Drawing.Point(499, 188);
            this.sbDataAnalyticsSearch.Name = "sbDataAnalyticsSearch";
            this.sbDataAnalyticsSearch.Size = new System.Drawing.Size(117, 29);
            this.sbDataAnalyticsSearch.StyleController = this.layoutControl1;
            this.sbDataAnalyticsSearch.TabIndex = 11;
            this.sbDataAnalyticsSearch.Text = "조회";
            this.sbDataAnalyticsSearch.Click += new System.EventHandler(this.sbDataAnalyticsSearch_Click);
            // 
            // labelControl1
            // 
            this.labelControl1.Location = new System.Drawing.Point(567, 52);
            this.labelControl1.Name = "labelControl1";
            this.labelControl1.Size = new System.Drawing.Size(13, 22);
            this.labelControl1.StyleController = this.layoutControl1;
            this.labelControl1.TabIndex = 8;
            this.labelControl1.Text = "~";
            // 
            // cbeDataAnalyticsHourTo
            // 
            this.cbeDataAnalyticsHourTo.Location = new System.Drawing.Point(741, 52);
            this.cbeDataAnalyticsHourTo.Name = "cbeDataAnalyticsHourTo";
            this.cbeDataAnalyticsHourTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cbeDataAnalyticsHourTo.Size = new System.Drawing.Size(64, 28);
            this.cbeDataAnalyticsHourTo.StyleController = this.layoutControl1;
            this.cbeDataAnalyticsHourTo.TabIndex = 7;
            // 
            // deDataAnalyticsDateTo
            // 
            this.deDataAnalyticsDateTo.EditValue = null;
            this.deDataAnalyticsDateTo.Location = new System.Drawing.Point(584, 52);
            this.deDataAnalyticsDateTo.Name = "deDataAnalyticsDateTo";
            this.deDataAnalyticsDateTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.deDataAnalyticsDateTo.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.deDataAnalyticsDateTo.Size = new System.Drawing.Size(153, 28);
            this.deDataAnalyticsDateTo.StyleController = this.layoutControl1;
            this.deDataAnalyticsDateTo.TabIndex = 6;
            // 
            // cbeDataAnalyticsHourFrom
            // 
            this.cbeDataAnalyticsHourFrom.Location = new System.Drawing.Point(508, 52);
            this.cbeDataAnalyticsHourFrom.Name = "cbeDataAnalyticsHourFrom";
            this.cbeDataAnalyticsHourFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cbeDataAnalyticsHourFrom.Size = new System.Drawing.Size(55, 28);
            this.cbeDataAnalyticsHourFrom.StyleController = this.layoutControl1;
            this.cbeDataAnalyticsHourFrom.TabIndex = 5;
            // 
            // deDataAnalyticsDateFrom
            // 
            this.deDataAnalyticsDateFrom.EditValue = null;
            this.deDataAnalyticsDateFrom.Location = new System.Drawing.Point(351, 52);
            this.deDataAnalyticsDateFrom.Name = "deDataAnalyticsDateFrom";
            this.deDataAnalyticsDateFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.deDataAnalyticsDateFrom.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.deDataAnalyticsDateFrom.Size = new System.Drawing.Size(153, 28);
            this.deDataAnalyticsDateFrom.StyleController = this.layoutControl1;
            this.deDataAnalyticsDateFrom.TabIndex = 4;
            // 
            // layoutControlGroup2
            // 
            this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.emptySpaceItem1});
            this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
            this.layoutControlGroup2.Name = "layoutControlGroup2";
            this.layoutControlGroup2.Size = new System.Drawing.Size(768, 232);
            // 
            // emptySpaceItem1
            // 
            this.emptySpaceItem1.AllowHotTrack = false;
            this.emptySpaceItem1.Location = new System.Drawing.Point(0, 0);
            this.emptySpaceItem1.Name = "emptySpaceItem1";
            this.emptySpaceItem1.Size = new System.Drawing.Size(768, 232);
            this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
            // 
            // tabbedControlGroup1
            // 
            this.tabbedControlGroup1.Location = new System.Drawing.Point(0, 0);
            this.tabbedControlGroup1.Name = "tabbedControlGroup1";
            this.tabbedControlGroup1.SelectedTabPage = null;
            this.tabbedControlGroup1.SelectedTabPageIndex = -1;
            this.tabbedControlGroup1.Size = new System.Drawing.Size(792, 287);
            // 
            // layoutControlGroup1
            // 
            this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
            this.layoutControlGroup1.GroupBordersVisible = false;
            this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.lcgDataAnalytics});
            this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
            this.layoutControlGroup1.Name = "Root";
            this.layoutControlGroup1.Size = new System.Drawing.Size(986, 721);
            // 
            // lcgDataAnalytics
            // 
            this.lcgDataAnalytics.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.emptySpaceItem2,
            this.layoutControlItem2,
            this.emptySpaceItem4,
            this.emptySpaceItem6,
            this.emptySpaceItem7,
            this.layoutControlItem3,
            this.layoutControlItem4,
            this.layoutControlItem5,
            this.layoutControlItem6,
            this.emptySpaceItem3,
            this.layoutControlItem9,
            this.layoutControlItem10,
            this.layoutControlItem11,
            this.emptySpaceItem5,
            this.emptySpaceItem8,
            this.layoutControlItem1,
            this.layoutControlItem12,
            this.emptySpaceItem9,
            this.layoutControlItem13,
            this.emptySpaceItem10,
            this.emptySpaceItem11,
            this.layoutControlItem8,
            this.layoutControlItem7,
            this.layoutControlItem14,
            this.layoutControlItem15,
            this.layoutControlItem17,
            this.layoutControlItem16});
            this.lcgDataAnalytics.Location = new System.Drawing.Point(0, 0);
            this.lcgDataAnalytics.Name = "lcgDataAnalytics";
            this.lcgDataAnalytics.Size = new System.Drawing.Size(966, 701);
            this.lcgDataAnalytics.Text = "검침 데이터 분석";
            // 
            // emptySpaceItem2
            // 
            this.emptySpaceItem2.AllowHotTrack = false;
            this.emptySpaceItem2.Location = new System.Drawing.Point(785, 0);
            this.emptySpaceItem2.Name = "emptySpaceItem2";
            this.emptySpaceItem2.Size = new System.Drawing.Size(157, 32);
            this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
            // 
            // layoutControlItem2
            // 
            this.layoutControlItem2.Control = this.deDataAnalyticsDateFrom;
            this.layoutControlItem2.CustomizationFormText = "조회 기간";
            this.layoutControlItem2.Location = new System.Drawing.Point(327, 0);
            this.layoutControlItem2.Name = "layoutControlItem2";
            this.layoutControlItem2.Size = new System.Drawing.Size(157, 32);
            this.layoutControlItem2.Text = "조회 기간";
            this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem2.TextVisible = false;
            // 
            // emptySpaceItem4
            // 
            this.emptySpaceItem4.AllowHotTrack = false;
            this.emptySpaceItem4.Location = new System.Drawing.Point(766, 32);
            this.emptySpaceItem4.Name = "emptySpaceItem4";
            this.emptySpaceItem4.Size = new System.Drawing.Size(176, 32);
            this.emptySpaceItem4.TextSize = new System.Drawing.Size(0, 0);
            // 
            // emptySpaceItem6
            // 
            this.emptySpaceItem6.AllowHotTrack = false;
            this.emptySpaceItem6.Location = new System.Drawing.Point(471, 100);
            this.emptySpaceItem6.Name = "emptySpaceItem6";
            this.emptySpaceItem6.Size = new System.Drawing.Size(471, 36);
            this.emptySpaceItem6.TextSize = new System.Drawing.Size(0, 0);
            // 
            // emptySpaceItem7
            // 
            this.emptySpaceItem7.AllowHotTrack = false;
            this.emptySpaceItem7.Location = new System.Drawing.Point(0, 169);
            this.emptySpaceItem7.Name = "emptySpaceItem7";
            this.emptySpaceItem7.Size = new System.Drawing.Size(942, 10);
            this.emptySpaceItem7.TextSize = new System.Drawing.Size(0, 0);
            // 
            // layoutControlItem3
            // 
            this.layoutControlItem3.Control = this.cbeDataAnalyticsHourFrom;
            this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
            this.layoutControlItem3.Location = new System.Drawing.Point(484, 0);
            this.layoutControlItem3.Name = "layoutControlItem3";
            this.layoutControlItem3.Size = new System.Drawing.Size(59, 32);
            this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem3.TextVisible = false;
            // 
            // layoutControlItem4
            // 
            this.layoutControlItem4.Control = this.deDataAnalyticsDateTo;
            this.layoutControlItem4.Location = new System.Drawing.Point(560, 0);
            this.layoutControlItem4.Name = "layoutControlItem4";
            this.layoutControlItem4.Size = new System.Drawing.Size(157, 32);
            this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem4.TextVisible = false;
            // 
            // layoutControlItem5
            // 
            this.layoutControlItem5.Control = this.cbeDataAnalyticsHourTo;
            this.layoutControlItem5.Location = new System.Drawing.Point(717, 0);
            this.layoutControlItem5.Name = "layoutControlItem5";
            this.layoutControlItem5.Size = new System.Drawing.Size(68, 32);
            this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem5.TextVisible = false;
            // 
            // layoutControlItem6
            // 
            this.layoutControlItem6.Control = this.labelControl1;
            this.layoutControlItem6.Location = new System.Drawing.Point(543, 0);
            this.layoutControlItem6.Name = "layoutControlItem6";
            this.layoutControlItem6.Size = new System.Drawing.Size(17, 32);
            this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem6.TextVisible = false;
            // 
            // emptySpaceItem3
            // 
            this.emptySpaceItem3.AllowHotTrack = false;
            this.emptySpaceItem3.Location = new System.Drawing.Point(0, 136);
            this.emptySpaceItem3.Name = "emptySpaceItem3";
            this.emptySpaceItem3.Size = new System.Drawing.Size(405, 33);
            this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
            // 
            // layoutControlItem9
            // 
            this.layoutControlItem9.Control = this.sbDataAnalyticsSearch;
            this.layoutControlItem9.Location = new System.Drawing.Point(475, 136);
            this.layoutControlItem9.Name = "layoutControlItem9";
            this.layoutControlItem9.Size = new System.Drawing.Size(121, 33);
            this.layoutControlItem9.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem9.TextVisible = false;
            // 
            // layoutControlItem10
            // 
            this.layoutControlItem10.Control = this.sbDataAnalyticsPdf;
            this.layoutControlItem10.Location = new System.Drawing.Point(596, 136);
            this.layoutControlItem10.Name = "layoutControlItem10";
            this.layoutControlItem10.Size = new System.Drawing.Size(116, 33);
            this.layoutControlItem10.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem10.TextVisible = false;
            // 
            // layoutControlItem11
            // 
            this.layoutControlItem11.Control = this.sbDataAnalyticsPrint;
            this.layoutControlItem11.Location = new System.Drawing.Point(712, 136);
            this.layoutControlItem11.Name = "layoutControlItem11";
            this.layoutControlItem11.Size = new System.Drawing.Size(122, 33);
            this.layoutControlItem11.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem11.TextVisible = false;
            // 
            // emptySpaceItem5
            // 
            this.emptySpaceItem5.AllowHotTrack = false;
            this.emptySpaceItem5.Location = new System.Drawing.Point(834, 136);
            this.emptySpaceItem5.Name = "emptySpaceItem5";
            this.emptySpaceItem5.Size = new System.Drawing.Size(108, 33);
            this.emptySpaceItem5.TextSize = new System.Drawing.Size(0, 0);
            // 
            // emptySpaceItem8
            // 
            this.emptySpaceItem8.AllowHotTrack = false;
            this.emptySpaceItem8.Location = new System.Drawing.Point(405, 136);
            this.emptySpaceItem8.Name = "emptySpaceItem8";
            this.emptySpaceItem8.Size = new System.Drawing.Size(70, 33);
            this.emptySpaceItem8.TextSize = new System.Drawing.Size(0, 0);
            // 
            // layoutControlItem1
            // 
            this.layoutControlItem1.Control = this.chartControl1;
            this.layoutControlItem1.Location = new System.Drawing.Point(0, 179);
            this.layoutControlItem1.Name = "layoutControlItem1";
            this.layoutControlItem1.Size = new System.Drawing.Size(942, 470);
            this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem1.TextVisible = false;
            // 
            // layoutControlItem12
            // 
            this.layoutControlItem12.Control = this.comboBoxEdit1;
            this.layoutControlItem12.Location = new System.Drawing.Point(0, 0);
            this.layoutControlItem12.Name = "layoutControlItem12";
            this.layoutControlItem12.Size = new System.Drawing.Size(279, 32);
            this.layoutControlItem12.Text = "분석 기간 지정";
            this.layoutControlItem12.TextSize = new System.Drawing.Size(120, 22);
            // 
            // emptySpaceItem9
            // 
            this.emptySpaceItem9.AllowHotTrack = false;
            this.emptySpaceItem9.Location = new System.Drawing.Point(279, 0);
            this.emptySpaceItem9.Name = "emptySpaceItem9";
            this.emptySpaceItem9.Size = new System.Drawing.Size(48, 32);
            this.emptySpaceItem9.TextSize = new System.Drawing.Size(0, 0);
            // 
            // layoutControlItem13
            // 
            this.layoutControlItem13.Control = this.comboBoxEdit2;
            this.layoutControlItem13.Location = new System.Drawing.Point(0, 32);
            this.layoutControlItem13.Name = "layoutControlItem13";
            this.layoutControlItem13.Size = new System.Drawing.Size(279, 32);
            this.layoutControlItem13.Text = "분석 세대 지정";
            this.layoutControlItem13.TextSize = new System.Drawing.Size(120, 22);
            // 
            // emptySpaceItem10
            // 
            this.emptySpaceItem10.AllowHotTrack = false;
            this.emptySpaceItem10.Location = new System.Drawing.Point(279, 32);
            this.emptySpaceItem10.Name = "emptySpaceItem10";
            this.emptySpaceItem10.Size = new System.Drawing.Size(48, 32);
            this.emptySpaceItem10.TextSize = new System.Drawing.Size(0, 0);
            // 
            // emptySpaceItem11
            // 
            this.emptySpaceItem11.AllowHotTrack = false;
            this.emptySpaceItem11.Location = new System.Drawing.Point(749, 64);
            this.emptySpaceItem11.Name = "emptySpaceItem11";
            this.emptySpaceItem11.Size = new System.Drawing.Size(193, 36);
            this.emptySpaceItem11.TextSize = new System.Drawing.Size(0, 0);
            // 
            // layoutControlItem8
            // 
            this.layoutControlItem8.Control = this.comboBoxEdit3;
            this.layoutControlItem8.Location = new System.Drawing.Point(327, 32);
            this.layoutControlItem8.Name = "layoutControlItem8";
            this.layoutControlItem8.Size = new System.Drawing.Size(108, 32);
            this.layoutControlItem8.Text = "~";
            this.layoutControlItem8.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
            this.layoutControlItem8.TextLocation = DevExpress.Utils.Locations.Right;
            this.layoutControlItem8.TextSize = new System.Drawing.Size(13, 22);
            this.layoutControlItem8.TextToControlDistance = 5;
            // 
            // layoutControlItem7
            // 
            this.layoutControlItem7.Control = this.comboBoxEdit4;
            this.layoutControlItem7.Location = new System.Drawing.Point(435, 32);
            this.layoutControlItem7.Name = "layoutControlItem7";
            this.layoutControlItem7.Size = new System.Drawing.Size(116, 32);
            this.layoutControlItem7.Text = "동";
            this.layoutControlItem7.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
            this.layoutControlItem7.TextLocation = DevExpress.Utils.Locations.Right;
            this.layoutControlItem7.TextSize = new System.Drawing.Size(18, 22);
            this.layoutControlItem7.TextToControlDistance = 5;
            // 
            // layoutControlItem14
            // 
            this.layoutControlItem14.Control = this.comboBoxEdit5;
            this.layoutControlItem14.Location = new System.Drawing.Point(551, 32);
            this.layoutControlItem14.Name = "layoutControlItem14";
            this.layoutControlItem14.Size = new System.Drawing.Size(109, 32);
            this.layoutControlItem14.Text = "~";
            this.layoutControlItem14.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
            this.layoutControlItem14.TextLocation = DevExpress.Utils.Locations.Right;
            this.layoutControlItem14.TextSize = new System.Drawing.Size(13, 22);
            this.layoutControlItem14.TextToControlDistance = 5;
            // 
            // layoutControlItem15
            // 
            this.layoutControlItem15.Control = this.comboBoxEdit6;
            this.layoutControlItem15.Location = new System.Drawing.Point(660, 32);
            this.layoutControlItem15.Name = "layoutControlItem15";
            this.layoutControlItem15.Size = new System.Drawing.Size(106, 32);
            this.layoutControlItem15.Text = "호";
            this.layoutControlItem15.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
            this.layoutControlItem15.TextLocation = DevExpress.Utils.Locations.Right;
            this.layoutControlItem15.TextSize = new System.Drawing.Size(18, 22);
            this.layoutControlItem15.TextToControlDistance = 5;
            // 
            // layoutControlItem17
            // 
            this.layoutControlItem17.Control = this.radioGroup1;
            this.layoutControlItem17.Location = new System.Drawing.Point(0, 64);
            this.layoutControlItem17.MaxSize = new System.Drawing.Size(749, 36);
            this.layoutControlItem17.MinSize = new System.Drawing.Size(749, 36);
            this.layoutControlItem17.Name = "layoutControlItem17";
            this.layoutControlItem17.Size = new System.Drawing.Size(749, 36);
            this.layoutControlItem17.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
            this.layoutControlItem17.Text = "분석 항목";
            this.layoutControlItem17.TextSize = new System.Drawing.Size(120, 22);
            // 
            // layoutControlItem16
            // 
            this.layoutControlItem16.Control = this.radioGroup2;
            this.layoutControlItem16.Location = new System.Drawing.Point(0, 100);
            this.layoutControlItem16.MaxSize = new System.Drawing.Size(471, 36);
            this.layoutControlItem16.MinSize = new System.Drawing.Size(471, 36);
            this.layoutControlItem16.Name = "layoutControlItem16";
            this.layoutControlItem16.Size = new System.Drawing.Size(471, 36);
            this.layoutControlItem16.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
            this.layoutControlItem16.Text = "그래프 타입";
            this.layoutControlItem16.TextSize = new System.Drawing.Size(120, 22);
            // 
            // DataAnalytics
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 22F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.layoutControl1);
            this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.Name = "DataAnalytics";
            this.Size = new System.Drawing.Size(986, 721);
            ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
            this.layoutControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radioGroup2.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit6.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit5.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit4.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit3.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit2.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbeDataAnalyticsHourTo.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.deDataAnalyticsDateTo.Properties.CalendarTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.deDataAnalyticsDateTo.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbeDataAnalyticsHourFrom.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.deDataAnalyticsDateFrom.Properties.CalendarTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.deDataAnalyticsDateFrom.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tabbedControlGroup1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lcgDataAnalytics)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem11)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).EndInit();
            this.ResumeLayout(false);

        }
Example #34
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.PieSeriesLabel pieSeriesLabel1 = new DevExpress.XtraCharts.PieSeriesLabel();
            DevExpress.XtraCharts.PiePointOptions piePointOptions1 = new DevExpress.XtraCharts.PiePointOptions();
            DevExpress.XtraCharts.PiePointOptions piePointOptions2 = new DevExpress.XtraCharts.PiePointOptions();
            DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("Hello", new object[] {
            ((object)(10D))}, 0);
            DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("Clap", new object[] {
            ((object)(20D))}, 1);
            DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("Sample", new object[] {
            ((object)(40D))}, 2);
            DevExpress.XtraCharts.PieSeriesView pieSeriesView1 = new DevExpress.XtraCharts.PieSeriesView();
            DevExpress.XtraCharts.PieSeriesLabel pieSeriesLabel2 = new DevExpress.XtraCharts.PieSeriesLabel();
            DevExpress.XtraCharts.PieSeriesView pieSeriesView2 = new DevExpress.XtraCharts.PieSeriesView();
            this.Detail = new DevExpress.XtraReports.UI.DetailBand();
            this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrPageBreak1 = new DevExpress.XtraReports.UI.XRPageBreak();
            this.xrChart1 = new DevExpress.XtraReports.UI.XRChart();
            this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
            this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
            ((System.ComponentModel.ISupportInitialize)(this.xrChart1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            // 
            // Detail
            // 
            this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel1,
            this.xrPageBreak1,
            this.xrChart1});
            this.Detail.HeightF = 487.5F;
            this.Detail.Name = "Detail";
            this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrLabel1
            // 
            this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(67.70834F, 411.4166F);
            this.xrLabel1.Name = "xrLabel1";
            this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel1.SizeF = new System.Drawing.SizeF(100F, 23F);
            this.xrLabel1.Text = "xrLabel1";
            // 
            // xrPageBreak1
            // 
            this.xrPageBreak1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 376.0833F);
            this.xrPageBreak1.Name = "xrPageBreak1";
            // 
            // xrChart1
            // 
            this.xrChart1.BorderColor = System.Drawing.Color.Black;
            this.xrChart1.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrChart1.Legend.AlignmentHorizontal = DevExpress.XtraCharts.LegendAlignmentHorizontal.Right;
            this.xrChart1.LocationFloat = new DevExpress.Utils.PointFloat(67.70834F, 0F);
            this.xrChart1.Name = "xrChart1";
            pieSeriesLabel1.LineVisible = true;
            piePointOptions1.PointView = DevExpress.XtraCharts.PointView.ArgumentAndValues;
            piePointOptions1.ValueNumericOptions.Format = DevExpress.XtraCharts.NumericFormat.Percent;
            piePointOptions1.ValueNumericOptions.Precision = 0;
            pieSeriesLabel1.PointOptions = piePointOptions1;
            pieSeriesLabel1.Position = DevExpress.XtraCharts.PieSeriesLabelPosition.TwoColumns;
            series1.Label = pieSeriesLabel1;
            piePointOptions2.PointView = DevExpress.XtraCharts.PointView.ArgumentAndValues;
            piePointOptions2.ValueNumericOptions.Format = DevExpress.XtraCharts.NumericFormat.Percent;
            piePointOptions2.ValueNumericOptions.Precision = 0;
            series1.LegendPointOptions = piePointOptions2;
            series1.Name = "Series 1";
            series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint1,
            seriesPoint2,
            seriesPoint3});
            series1.SynchronizePointOptions = false;
            pieSeriesView1.RuntimeExploding = false;
            series1.View = pieSeriesView1;
            this.xrChart1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series1};
            pieSeriesLabel2.LineVisible = true;
            this.xrChart1.SeriesTemplate.Label = pieSeriesLabel2;
            pieSeriesView2.RuntimeExploding = false;
            this.xrChart1.SeriesTemplate.View = pieSeriesView2;
            this.xrChart1.SizeF = new System.Drawing.SizeF(505.2083F, 321.875F);
            // 
            // TopMargin
            // 
            this.TopMargin.Name = "TopMargin";
            this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // BottomMargin
            // 
            this.BottomMargin.Name = "BottomMargin";
            this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // ConfigurationTemplate
            // 
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin});
            this.Version = "12.1";
            ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrChart1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();

        }
Example #35
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraCharts.XYDiagram   xyDiagram1   = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series      series1      = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint(1D, new object[] {
         ((object)(1D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint(2D, new object[] {
         ((object)(2D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint(3D, new object[] {
         ((object)(3D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint(4D, new object[] {
         ((object)(4D))
     });
     DevExpress.XtraCharts.LineSeriesView lineSeriesView1 = new DevExpress.XtraCharts.LineSeriesView();
     DevExpress.XtraCharts.Series         series2         = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint    seriesPoint5    = new DevExpress.XtraCharts.SeriesPoint(1D, new object[] {
         ((object)(3D)),
         ((object)(2D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint(2D, new object[] {
         ((object)(2.5D)),
         ((object)(3D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint(3D, new object[] {
         ((object)(1.5D)),
         ((object)(4D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint(4D, new object[] {
         ((object)(5D)),
         ((object)(1D))
     });
     DevExpress.XtraCharts.BubbleSeriesView bubbleSeriesView1 = new DevExpress.XtraCharts.BubbleSeriesView();
     this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(bubbleSeriesView1)).BeginInit();
     this.SuspendLayout();
     //
     // chartControl1
     //
     this.chartControl1.DataBindings             = null;
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     this.chartControl1.Diagram  = xyDiagram1;
     this.chartControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.chartControl1.Location = new System.Drawing.Point(0, 0);
     this.chartControl1.Name     = "chartControl1";
     series1.Name = "Series 1";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint1,
         seriesPoint2,
         seriesPoint3,
         seriesPoint4
     });
     lineSeriesView1.MarkerVisibility = DevExpress.Utils.DefaultBoolean.True;
     series1.View = lineSeriesView1;
     series2.Name = "Series 2";
     series2.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint5,
         seriesPoint6,
         seriesPoint7,
         seriesPoint8
     });
     series2.View = bubbleSeriesView1;
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
         series1,
         series2
     };
     this.chartControl1.Size            = new System.Drawing.Size(624, 321);
     this.chartControl1.TabIndex        = 0;
     this.chartControl1.ObjectSelected += new DevExpress.XtraCharts.HotTrackEventHandler(this.chartControl1_ObjectSelected);
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(624, 321);
     this.Controls.Add(this.chartControl1);
     this.Name = "Form1";
     this.Text = "Form1";
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(bubbleSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraCharts.XYDiagram   xyDiagram1   = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series      series1      = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("A", new object[] {
         ((object)(10))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("B", new object[] {
         ((object)(20))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("C", new object[] {
         ((object)(30))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("D", new object[] {
         ((object)(40))
     });
     DevExpress.XtraCharts.StackedSplineAreaSeriesView stackedSplineAreaSeriesView1 = new DevExpress.XtraCharts.StackedSplineAreaSeriesView();
     DevExpress.XtraCharts.Series      series2      = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint("A", new object[] {
         ((object)(10))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint("B", new object[] {
         ((object)(20))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint("C", new object[] {
         ((object)(30))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint("D", new object[] {
         ((object)(40))
     });
     DevExpress.XtraCharts.StackedSplineAreaSeriesView stackedSplineAreaSeriesView2 = new DevExpress.XtraCharts.StackedSplineAreaSeriesView();
     DevExpress.XtraCharts.StackedSplineAreaSeriesView stackedSplineAreaSeriesView3 = new DevExpress.XtraCharts.StackedSplineAreaSeriesView();
     this.button2       = new System.Windows.Forms.Button();
     this.button1       = new System.Windows.Forms.Button();
     this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedSplineAreaSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedSplineAreaSeriesView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedSplineAreaSeriesView3)).BeginInit();
     this.SuspendLayout();
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(192, 8);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(168, 32);
     this.button2.TabIndex = 4;
     this.button2.Text     = "Copy to Clipboard as EMF";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(8, 8);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(168, 32);
     this.button1.TabIndex = 3;
     this.button1.Text     = "Copy to Clipboard as PNG";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // chartControl1
     //
     this.chartControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                        | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisX.WholeRange.AutoSideMargins = false;
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.WholeRange.AutoSideMargins = true;
     this.chartControl1.Diagram  = xyDiagram1;
     this.chartControl1.Location = new System.Drawing.Point(8, 48);
     this.chartControl1.Name     = "chartControl1";
     series1.Name = "Series 1";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint1,
         seriesPoint2,
         seriesPoint3,
         seriesPoint4
     });
     series1.View = stackedSplineAreaSeriesView1;
     series2.Name = "Series 2";
     series2.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint5,
         seriesPoint6,
         seriesPoint7,
         seriesPoint8
     });
     series2.View = stackedSplineAreaSeriesView2;
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
         series1,
         series2
     };
     this.chartControl1.SeriesTemplate.View = stackedSplineAreaSeriesView3;
     this.chartControl1.Size     = new System.Drawing.Size(456, 319);
     this.chartControl1.TabIndex = 5;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(470, 373);
     this.Controls.Add(this.chartControl1);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.button1);
     this.Name = "Form1";
     this.Text = "Form1";
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedSplineAreaSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedSplineAreaSeriesView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedSplineAreaSeriesView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     this.ResumeLayout(false);
 }
Example #37
0
        private void cb_Year_SelectedIndexChanged(object sender, EventArgs e)
        {
            //Reset the value before add new chart
            int[] summaryGrade = { 0, 0, 0, 0, 0, 0 };
            this.chartControl1.Titles.RemoveAt(0);

            // Put the summaryGrade to summaryGrade array
            try
            {
                int floorYear = Convert.ToInt32(this.cb_Year.SelectedItem) * 10;
                int cellYear = (Convert.ToInt32(this.cb_Year.SelectedItem) + 1) * 10;
                cmd.CommandText = string.Format(@"select Term, SummaryGrade from DatabaseTable where StudentID = {0} and Term < {1} and Term > {2}", m_studentInfo.m_studentID, cellYear, floorYear);
                connection.Open();
                reader = cmd.ExecuteReader();
                if (reader.HasRows)
                {
                    int term = 0;
                    while (reader.Read())
                    {
                        term = Convert.ToInt32(reader[0]) % 10;
                        switch (term)
                        {
                            case 1:
                                summaryGrade[0] = Convert.ToInt32(reader[1]);
                                break;
                            case 2:
                                summaryGrade[1] = Convert.ToInt32(reader[1]);
                                break;
                            case 3:
                                summaryGrade[2] = Convert.ToInt32(reader[1]);
                                break;
                            case 4:
                                summaryGrade[3] = Convert.ToInt32(reader[1]);
                                break;
                            case 5:
                                summaryGrade[4] = Convert.ToInt32(reader[1]);
                                break;
                            case 6:
                                summaryGrade[5] = Convert.ToInt32(reader[1]);
                                break;

                        }

                    }
                }
                connection.Close();
            }
            catch (Exception ex)
            {
                MessageBox.Show(@"Message3: " + ex.Message.ToString(), @"Error");
                connection.Close();
            }

            //Init the chart element
            DevExpress.XtraCharts.ChartTitle chartTitle1 = new DevExpress.XtraCharts.ChartTitle();
            DevExpress.XtraCharts.Series series2 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.LineSeriesView lineSeriesView3 = new DevExpress.XtraCharts.LineSeriesView();
            DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel3 = new DevExpress.XtraCharts.PointSeriesLabel();
            ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView3)).BeginInit();
            //Init the value add to chart
            DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("1", new object[] {
            ((object)(summaryGrade[0]))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("2", new object[] {
            ((object)(summaryGrade[1]))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("3", new object[] {
            ((object)(summaryGrade[2]))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("4", new object[] {
            ((object)(summaryGrade[3]))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint("5", new object[] {
            ((object)(summaryGrade[4]))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint("6", new object[] {
            ((object)(summaryGrade[5]))});
            pointSeriesLabel3.LineVisible = true;
            series2.Label = pointSeriesLabel3;
            series2.Name = "Score";
            lineSeriesView3.MarkerVisibility = DevExpress.Utils.DefaultBoolean.True;
            series2.View = lineSeriesView3;
            chartTitle1.Text = m_studentInfo.m_studentName.Replace(" ", "") + " Score Progress " + this.cb_Year.SelectedItem.ToString();
            this.chartControl1.Titles.AddRange(new DevExpress.XtraCharts.ChartTitle[] { chartTitle1 });
            series2.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint1,
            seriesPoint2,
            seriesPoint3,
            seriesPoint4,
            seriesPoint5,
            seriesPoint6});
            this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] { series2 };
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraCharts.XYDiagram      xyDiagram1      = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.XYDiagramPane  xyDiagramPane1  = new DevExpress.XtraCharts.XYDiagramPane();
     DevExpress.XtraCharts.XYDiagramPane  xyDiagramPane2  = new DevExpress.XtraCharts.XYDiagramPane();
     DevExpress.XtraCharts.SecondaryAxisY secondaryAxisY1 = new DevExpress.XtraCharts.SecondaryAxisY();
     DevExpress.XtraCharts.SecondaryAxisY secondaryAxisY2 = new DevExpress.XtraCharts.SecondaryAxisY();
     DevExpress.XtraCharts.Legend         legend1         = new DevExpress.XtraCharts.Legend();
     DevExpress.XtraCharts.Legend         legend2         = new DevExpress.XtraCharts.Legend();
     DevExpress.XtraCharts.Series         series1         = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint    seriesPoint1    = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 11, 6, 0, 0, 0), new object[] {
         ((object)(56.48D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 11, 3, 0, 0, 0), new object[] {
         ((object)(53.78D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 11, 0, 0, 0, 0), new object[] {
         ((object)(57.74D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 10, 21, 0, 0, 0), new object[] {
         ((object)(64.4D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 10, 18, 0, 0, 0), new object[] {
         ((object)(72.5D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 10, 15, 0, 0, 0), new object[] {
         ((object)(72.68D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 10, 12, 0, 0, 0), new object[] {
         ((object)(69.62D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 10, 9, 0, 0, 0), new object[] {
         ((object)(67.28D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint9 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 10, 6, 0, 0, 0), new object[] {
         ((object)(62.42D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint10 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 10, 3, 0, 0, 0), new object[] {
         ((object)(60.62D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint11 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 10, 0, 0, 0, 0), new object[] {
         ((object)(62.6D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint12 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 9, 21, 0, 0, 0), new object[] {
         ((object)(71.96D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint13 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 9, 18, 0, 0, 0), new object[] {
         ((object)(77.9D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint14 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 9, 15, 0, 0, 0), new object[] {
         ((object)(78.98D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint15 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 9, 12, 0, 0, 0), new object[] {
         ((object)(76.28D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint16 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 9, 9, 0, 0, 0), new object[] {
         ((object)(71.06D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint17 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 9, 6, 0, 0, 0), new object[] {
         ((object)(60.8D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint18 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 9, 3, 0, 0, 0), new object[] {
         ((object)(58.64D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint19 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 9, 0, 0, 0, 0), new object[] {
         ((object)(63.14D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint20 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 8, 21, 0, 0, 0), new object[] {
         ((object)(68.54D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint21 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 8, 18, 0, 0, 0), new object[] {
         ((object)(75.2D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint22 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 8, 15, 0, 0, 0), new object[] {
         ((object)(77.18D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint23 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 8, 12, 0, 0, 0), new object[] {
         ((object)(74.48D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint24 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 8, 9, 0, 0, 0), new object[] {
         ((object)(64.58D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint25 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 8, 6, 0, 0, 0), new object[] {
         ((object)(59.36D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint26 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 8, 3, 0, 0, 0), new object[] {
         ((object)(60.08D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint27 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 8, 0, 0, 0, 0), new object[] {
         ((object)(61.16D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint28 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 7, 21, 0, 0, 0), new object[] {
         ((object)(63.86D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint29 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 7, 18, 0, 0, 0), new object[] {
         ((object)(65.66D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint30 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 7, 15, 0, 0, 0), new object[] {
         ((object)(65.12D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint31 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 7, 12, 0, 0, 0), new object[] {
         ((object)(63.86D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint32 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 7, 9, 0, 0, 0), new object[] {
         ((object)(61.52D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint33 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 7, 6, 0, 0, 0), new object[] {
         ((object)(51.8D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint34 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 7, 3, 0, 0, 0), new object[] {
         ((object)(52.34D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint35 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 7, 0, 0, 0, 0), new object[] {
         ((object)(57.2D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint36 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 6, 21, 0, 0, 0), new object[] {
         ((object)(60.44D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint37 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 6, 18, 0, 0, 0), new object[] {
         ((object)(65.48D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint38 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 6, 15, 0, 0, 0), new object[] {
         ((object)(66.56D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint39 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 6, 12, 0, 0, 0), new object[] {
         ((object)(64.04D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint40 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 6, 9, 0, 0, 0), new object[] {
         ((object)(60.26D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint41 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 6, 6, 0, 0, 0), new object[] {
         ((object)(51.44D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint42 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 6, 3, 0, 0, 0), new object[] {
         ((object)(50.18D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint43 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 6, 0, 0, 0, 0), new object[] {
         ((object)(56.12D))
     });
     DevExpress.XtraCharts.LineSeriesView lineSeriesView1 = new DevExpress.XtraCharts.LineSeriesView();
     DevExpress.XtraCharts.Series         series2         = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint    seriesPoint44   = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 11, 6, 0, 0, 0), new object[] {
         ((object)(1023D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint45 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 11, 3, 0, 0, 0), new object[] {
         ((object)(1021D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint46 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 11, 0, 0, 0, 0), new object[] {
         ((object)(1023D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint47 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 10, 21, 0, 0, 0), new object[] {
         ((object)(1021D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint48 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 10, 18, 0, 0, 0), new object[] {
         ((object)(1020D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint49 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 10, 15, 0, 0, 0), new object[] {
         ((object)(1021D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint50 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 10, 12, 0, 0, 0), new object[] {
         ((object)(1023D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint51 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 10, 9, 0, 0, 0), new object[] {
         ((object)(1023D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint52 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 10, 6, 0, 0, 0), new object[] {
         ((object)(1023D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint53 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 10, 3, 0, 0, 0), new object[] {
         ((object)(1021D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint54 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 10, 0, 0, 0, 0), new object[] {
         ((object)(1023D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint55 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 9, 21, 0, 0, 0), new object[] {
         ((object)(1023D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint56 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 9, 18, 0, 0, 0), new object[] {
         ((object)(1021D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint57 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 9, 15, 0, 0, 0), new object[] {
         ((object)(1023D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint58 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 9, 12, 0, 0, 0), new object[] {
         ((object)(1024D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint59 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 9, 9, 0, 0, 0), new object[] {
         ((object)(1024D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint60 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 9, 6, 0, 0, 0), new object[] {
         ((object)(1024D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint61 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 9, 3, 0, 0, 0), new object[] {
         ((object)(1023D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint62 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 9, 0, 0, 0, 0), new object[] {
         ((object)(1024D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint63 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 8, 21, 0, 0, 0), new object[] {
         ((object)(1023D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint64 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 8, 18, 0, 0, 0), new object[] {
         ((object)(1021D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint65 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 8, 15, 0, 0, 0), new object[] {
         ((object)(1021D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint66 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 8, 12, 0, 0, 0), new object[] {
         ((object)(1021D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint67 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 8, 9, 0, 0, 0), new object[] {
         ((object)(1021D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint68 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 8, 6, 0, 0, 0), new object[] {
         ((object)(1020D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint69 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 8, 3, 0, 0, 0), new object[] {
         ((object)(1019D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint70 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 8, 0, 0, 0, 0), new object[] {
         ((object)(1019D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint71 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 7, 21, 0, 0, 0), new object[] {
         ((object)(1019D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint72 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 7, 18, 0, 0, 0), new object[] {
         ((object)(1017D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint73 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 7, 15, 0, 0, 0), new object[] {
         ((object)(1017D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint74 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 7, 12, 0, 0, 0), new object[] {
         ((object)(1017D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint75 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 7, 9, 0, 0, 0), new object[] {
         ((object)(1017D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint76 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 7, 6, 0, 0, 0), new object[] {
         ((object)(1017D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint77 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 7, 3, 0, 0, 0), new object[] {
         ((object)(1016D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint78 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 7, 0, 0, 0, 0), new object[] {
         ((object)(1016D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint79 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 6, 21, 0, 0, 0), new object[] {
         ((object)(1016D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint80 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 6, 18, 0, 0, 0), new object[] {
         ((object)(1015D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint81 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 6, 15, 0, 0, 0), new object[] {
         ((object)(1015D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint82 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 6, 12, 0, 0, 0), new object[] {
         ((object)(1015D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint83 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 6, 9, 0, 0, 0), new object[] {
         ((object)(1015D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint84 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 6, 6, 0, 0, 0), new object[] {
         ((object)(1015D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint85 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 6, 3, 0, 0, 0), new object[] {
         ((object)(1015D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint86 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 6, 0, 0, 0, 0), new object[] {
         ((object)(1015D))
     });
     DevExpress.XtraCharts.AreaSeriesView areaSeriesView1 = new DevExpress.XtraCharts.AreaSeriesView();
     DevExpress.XtraCharts.Series         series3         = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint    seriesPoint87   = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 11, 6, 0, 0, 0), new object[] {
         ((object)(69D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint88 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 11, 3, 0, 0, 0), new object[] {
         ((object)(76D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint89 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 11, 0, 0, 0, 0), new object[] {
         ((object)(66D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint90 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 10, 21, 0, 0, 0), new object[] {
         ((object)(49D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint91 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 10, 18, 0, 0, 0), new object[] {
         ((object)(45D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint92 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 10, 15, 0, 0, 0), new object[] {
         ((object)(48D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint93 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 10, 12, 0, 0, 0), new object[] {
         ((object)(57D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint94 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 10, 9, 0, 0, 0), new object[] {
         ((object)(66D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint95 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 10, 6, 0, 0, 0), new object[] {
         ((object)(78D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint96 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 10, 3, 0, 0, 0), new object[] {
         ((object)(83D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint97 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 10, 0, 0, 0, 0), new object[] {
         ((object)(72D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint98 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 9, 21, 0, 0, 0), new object[] {
         ((object)(52D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint99 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 9, 18, 0, 0, 0), new object[] {
         ((object)(40D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint100 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 9, 15, 0, 0, 0), new object[] {
         ((object)(41D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint101 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 9, 12, 0, 0, 0), new object[] {
         ((object)(37D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint102 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 9, 9, 0, 0, 0), new object[] {
         ((object)(41D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint103 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 9, 6, 0, 0, 0), new object[] {
         ((object)(68D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint104 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 9, 3, 0, 0, 0), new object[] {
         ((object)(78D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint105 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 9, 0, 0, 0, 0), new object[] {
         ((object)(71D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint106 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 8, 21, 0, 0, 0), new object[] {
         ((object)(63D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint107 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 8, 18, 0, 0, 0), new object[] {
         ((object)(47D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint108 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 8, 15, 0, 0, 0), new object[] {
         ((object)(44D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint109 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 8, 12, 0, 0, 0), new object[] {
         ((object)(48D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint110 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 8, 9, 0, 0, 0), new object[] {
         ((object)(68D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint111 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 8, 6, 0, 0, 0), new object[] {
         ((object)(81D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint112 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 8, 3, 0, 0, 0), new object[] {
         ((object)(85D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint113 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 8, 0, 0, 0, 0), new object[] {
         ((object)(76D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint114 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 7, 21, 0, 0, 0), new object[] {
         ((object)(65D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint115 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 7, 18, 0, 0, 0), new object[] {
         ((object)(57D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint116 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 7, 15, 0, 0, 0), new object[] {
         ((object)(62D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint117 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 7, 12, 0, 0, 0), new object[] {
         ((object)(53D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint118 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 7, 9, 0, 0, 0), new object[] {
         ((object)(62D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint119 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 7, 6, 0, 0, 0), new object[] {
         ((object)(76D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint120 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 7, 3, 0, 0, 0), new object[] {
         ((object)(80D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint121 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 7, 0, 0, 0, 0), new object[] {
         ((object)(82D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint122 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 6, 21, 0, 0, 0), new object[] {
         ((object)(73D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint123 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 6, 18, 0, 0, 0), new object[] {
         ((object)(57D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint124 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 6, 15, 0, 0, 0), new object[] {
         ((object)(55D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint125 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 6, 12, 0, 0, 0), new object[] {
         ((object)(64D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint126 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 6, 9, 0, 0, 0), new object[] {
         ((object)(74D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint127 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 6, 6, 0, 0, 0), new object[] {
         ((object)(89D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint128 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 6, 3, 0, 0, 0), new object[] {
         ((object)(87D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint129 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2008, 6, 6, 0, 0, 0, 0), new object[] {
         ((object)(80D))
     });
     DevExpress.XtraCharts.SideBySideBarSeriesView sideBySideBarSeriesView1 = new DevExpress.XtraCharts.SideBySideBarSeriesView();
     DevExpress.XtraCharts.ChartTitle chartTitle1 = new DevExpress.XtraCharts.ChartTitle();
     this.chartControl = new DevExpress.XtraCharts.ChartControl();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagramPane1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagramPane2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(secondaryAxisY1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(secondaryAxisY2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(areaSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesView1)).BeginInit();
     this.SuspendLayout();
     //
     // chartControl
     //
     this.chartControl.CrosshairEnabled = DevExpress.Utils.DefaultBoolean.False;
     this.chartControl.CrosshairOptions.ShowOnlyInFocusedPane = false;
     this.chartControl.DataBindings = null;
     xyDiagram1.AxisX.DateTimeScaleOptions.AggregateFunction = DevExpress.XtraCharts.AggregateFunction.None;
     xyDiagram1.AxisX.DateTimeScaleOptions.AutoGrid          = false;
     xyDiagram1.AxisX.DateTimeScaleOptions.GridAlignment     = DevExpress.XtraCharts.DateTimeGridAlignment.Hour;
     xyDiagram1.AxisX.DateTimeScaleOptions.GridSpacing       = 5D;
     xyDiagram1.AxisX.DateTimeScaleOptions.MeasureUnit       = DevExpress.XtraCharts.DateTimeMeasureUnit.Hour;
     xyDiagram1.AxisX.Label.TextPattern                = "{A:MMMM d, H:mm tt}";
     xyDiagram1.AxisX.VisibleInPanesSerializable       = "-1;1;0";
     xyDiagram1.AxisX.VisualRange.Auto                 = false;
     xyDiagram1.AxisX.VisualRange.MaxValueSerializable = "06/08/2008 06:00:00.000";
     xyDiagram1.AxisX.VisualRange.MinValueSerializable = "06/06/2008 00:00:00.000";
     xyDiagram1.AxisY.Title.Text                     = "Temperature, F";
     xyDiagram1.AxisY.Title.Visibility               = DevExpress.Utils.DefaultBoolean.True;
     xyDiagram1.AxisY.VisibleInPanesSerializable     = "-1";
     xyDiagram1.AxisY.WholeRange.AlwaysShowZeroLevel = false;
     xyDiagram1.EnableAxisXScrolling                 = true;
     xyDiagramPane1.Name   = "Pane 1";
     xyDiagramPane1.PaneID = 0;
     xyDiagramPane2.Name   = "Pane 2";
     xyDiagramPane2.PaneID = 1;
     xyDiagram1.Panes.AddRange(new DevExpress.XtraCharts.XYDiagramPane[] {
         xyDiagramPane1,
         xyDiagramPane2
     });
     secondaryAxisY1.Alignment         = DevExpress.XtraCharts.AxisAlignment.Near;
     secondaryAxisY1.AxisID            = 0;
     secondaryAxisY1.GridLines.Visible = true;
     secondaryAxisY1.Name                           = "Secondary AxisY 1";
     secondaryAxisY1.Title.Text                     = "Pressure, mbar";
     secondaryAxisY1.Title.Visibility               = DevExpress.Utils.DefaultBoolean.True;
     secondaryAxisY1.VisibleInPanesSerializable     = "0";
     secondaryAxisY1.WholeRange.AlwaysShowZeroLevel = false;
     secondaryAxisY2.Alignment                      = DevExpress.XtraCharts.AxisAlignment.Near;
     secondaryAxisY2.AxisID                         = 1;
     secondaryAxisY2.GridLines.Visible              = true;
     secondaryAxisY2.Name                           = "Secondary AxisY 2";
     secondaryAxisY2.Title.Text                     = "Humidity, %";
     secondaryAxisY2.Title.Visibility               = DevExpress.Utils.DefaultBoolean.True;
     secondaryAxisY2.VisibleInPanesSerializable     = "1";
     secondaryAxisY2.WholeRange.AlwaysShowZeroLevel = false;
     xyDiagram1.SecondaryAxesY.AddRange(new DevExpress.XtraCharts.SecondaryAxisY[] {
         secondaryAxisY1,
         secondaryAxisY2
     });
     this.chartControl.Diagram = xyDiagram1;
     this.chartControl.Dock    = System.Windows.Forms.DockStyle.Fill;
     this.chartControl.Legend.AlignmentHorizontal = DevExpress.XtraCharts.LegendAlignmentHorizontal.Right;
     this.chartControl.Legend.Direction           = DevExpress.XtraCharts.LegendDirection.LeftToRight;
     this.chartControl.Legend.DockTargetName      = "Default Pane";
     this.chartControl.Legend.Name = "Default Legend";
     legend1.AlignmentHorizontal   = DevExpress.XtraCharts.LegendAlignmentHorizontal.Right;
     legend1.DockTargetName        = "Pane 1";
     legend1.Name = "Legend1";
     legend2.AlignmentHorizontal = DevExpress.XtraCharts.LegendAlignmentHorizontal.Right;
     legend2.DockTargetName      = "Pane 2";
     legend2.Name = "Legend2";
     this.chartControl.Legends.AddRange(new DevExpress.XtraCharts.Legend[] {
         legend1,
         legend2
     });
     this.chartControl.Location    = new System.Drawing.Point(0, 0);
     this.chartControl.Name        = "chartControl";
     series1.CrosshairLabelPattern = "{S} : {V}F";
     series1.LegendName            = "Default Legend";
     series1.Name = "Temperature";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint1,
         seriesPoint2,
         seriesPoint3,
         seriesPoint4,
         seriesPoint5,
         seriesPoint6,
         seriesPoint7,
         seriesPoint8,
         seriesPoint9,
         seriesPoint10,
         seriesPoint11,
         seriesPoint12,
         seriesPoint13,
         seriesPoint14,
         seriesPoint15,
         seriesPoint16,
         seriesPoint17,
         seriesPoint18,
         seriesPoint19,
         seriesPoint20,
         seriesPoint21,
         seriesPoint22,
         seriesPoint23,
         seriesPoint24,
         seriesPoint25,
         seriesPoint26,
         seriesPoint27,
         seriesPoint28,
         seriesPoint29,
         seriesPoint30,
         seriesPoint31,
         seriesPoint32,
         seriesPoint33,
         seriesPoint34,
         seriesPoint35,
         seriesPoint36,
         seriesPoint37,
         seriesPoint38,
         seriesPoint39,
         seriesPoint40,
         seriesPoint41,
         seriesPoint42,
         seriesPoint43
     });
     series1.View = lineSeriesView1;
     series2.CrosshairLabelPattern = "{S} :  {V} mbars";
     series2.LegendName            = "Legend1";
     series2.Name = "Pressure";
     series2.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint44,
         seriesPoint45,
         seriesPoint46,
         seriesPoint47,
         seriesPoint48,
         seriesPoint49,
         seriesPoint50,
         seriesPoint51,
         seriesPoint52,
         seriesPoint53,
         seriesPoint54,
         seriesPoint55,
         seriesPoint56,
         seriesPoint57,
         seriesPoint58,
         seriesPoint59,
         seriesPoint60,
         seriesPoint61,
         seriesPoint62,
         seriesPoint63,
         seriesPoint64,
         seriesPoint65,
         seriesPoint66,
         seriesPoint67,
         seriesPoint68,
         seriesPoint69,
         seriesPoint70,
         seriesPoint71,
         seriesPoint72,
         seriesPoint73,
         seriesPoint74,
         seriesPoint75,
         seriesPoint76,
         seriesPoint77,
         seriesPoint78,
         seriesPoint79,
         seriesPoint80,
         seriesPoint81,
         seriesPoint82,
         seriesPoint83,
         seriesPoint84,
         seriesPoint85,
         seriesPoint86
     });
     areaSeriesView1.AxisYName    = "Secondary AxisY 1";
     areaSeriesView1.PaneName     = "Pane 1";
     areaSeriesView1.Transparency = ((byte)(0));
     series2.View = areaSeriesView1;
     series3.CrosshairLabelPattern = "{S} : {V}%";
     series3.LegendName            = "Legend2";
     series3.Name = "Humidity";
     series3.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint87,
         seriesPoint88,
         seriesPoint89,
         seriesPoint90,
         seriesPoint91,
         seriesPoint92,
         seriesPoint93,
         seriesPoint94,
         seriesPoint95,
         seriesPoint96,
         seriesPoint97,
         seriesPoint98,
         seriesPoint99,
         seriesPoint100,
         seriesPoint101,
         seriesPoint102,
         seriesPoint103,
         seriesPoint104,
         seriesPoint105,
         seriesPoint106,
         seriesPoint107,
         seriesPoint108,
         seriesPoint109,
         seriesPoint110,
         seriesPoint111,
         seriesPoint112,
         seriesPoint113,
         seriesPoint114,
         seriesPoint115,
         seriesPoint116,
         seriesPoint117,
         seriesPoint118,
         seriesPoint119,
         seriesPoint120,
         seriesPoint121,
         seriesPoint122,
         seriesPoint123,
         seriesPoint124,
         seriesPoint125,
         seriesPoint126,
         seriesPoint127,
         seriesPoint128,
         seriesPoint129
     });
     sideBySideBarSeriesView1.AxisYName = "Secondary AxisY 2";
     sideBySideBarSeriesView1.PaneName  = "Pane 2";
     series3.View = sideBySideBarSeriesView1;
     this.chartControl.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
         series1,
         series2,
         series3
     };
     this.chartControl.Size     = new System.Drawing.Size(1264, 681);
     this.chartControl.TabIndex = 0;
     chartTitle1.Text           = "Weather in London";
     this.chartControl.Titles.AddRange(new DevExpress.XtraCharts.ChartTitle[] {
         chartTitle1
     });
     this.chartControl.MouseUp += new System.Windows.Forms.MouseEventHandler(this.OnChartMouseUp);
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1264, 681);
     this.Controls.Add(this.chartControl);
     this.Name = "Form1";
     this.Text = "Form1";
     ((System.ComponentModel.ISupportInitialize)(xyDiagramPane1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagramPane2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(secondaryAxisY1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(secondaryAxisY2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(areaSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl)).EndInit();
     this.ResumeLayout(false);
 }
Example #39
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MapViewer));
     DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint(0);
     DevExpress.XtraCharts.LineSeriesView lineSeriesView1 = new DevExpress.XtraCharts.LineSeriesView();
     DevExpress.XtraCharts.PolygonGradientFillOptions polygonGradientFillOptions1 = new DevExpress.XtraCharts.PolygonGradientFillOptions();
     DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel1 = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.XtraCharts.PointOptions pointOptions1 = new DevExpress.XtraCharts.PointOptions();
     DevExpress.XtraCharts.LineSeriesView lineSeriesView2 = new DevExpress.XtraCharts.LineSeriesView();
     DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel2 = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.lblZaxis = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.lblYaxis = new DevExpress.XtraEditors.LabelControl();
     this.lblXaxis = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.lblCategory = new DevExpress.XtraEditors.LabelControl();
     this.lblDescription = new DevExpress.XtraEditors.LabelControl();
     this.lblName = new DevExpress.XtraEditors.LabelControl();
     this.lblLengthValues = new DevExpress.XtraEditors.LabelControl();
     this.lblLengthBytes = new DevExpress.XtraEditors.LabelControl();
     this.lblSRAMAddress = new DevExpress.XtraEditors.LabelControl();
     this.lblFlashAddress = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.panel1 = new System.Windows.Forms.Panel();
     this.popupContainerControl1 = new DevExpress.XtraEditors.PopupContainerControl();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.copySelectedCellsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.pasteSelectedCellsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.inOrgininalPositionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.atCurrentlySelectedLocationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editXaxisSymbolToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editYaxisSymbolToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.smoothSelectionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton6 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton7 = new DevExpress.XtraEditors.SimpleButton();
     this.surfaceGraphViewer1 = new SurfaceGraphViewer();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.trackBarControl1 = new DevExpress.XtraEditors.TrackBarControl();
     this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.timer2 = new System.Windows.Forms.Timer(this.components);
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton5 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton6 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton7 = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox3 = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox2 = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
     this.timer3 = new System.Windows.Forms.Timer(this.components);
     this.timer4 = new System.Windows.Forms.Timer(this.components);
     this.popupContainerEdit1 = new DevExpress.XtraEditors.PopupContainerEdit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerControl1)).BeginInit();
     this.popupContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).BeginInit();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // simpleButton3
     //
     this.simpleButton3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.simpleButton3.Enabled = false;
     this.simpleButton3.Location = new System.Drawing.Point(14, 628);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.Size = new System.Drawing.Size(92, 23);
     this.simpleButton3.TabIndex = 9;
     this.simpleButton3.Text = "Undo changes";
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton2.Enabled = false;
     this.simpleButton2.Location = new System.Drawing.Point(715, 628);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(75, 23);
     this.simpleButton2.TabIndex = 8;
     this.simpleButton2.Text = "Save";
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // simpleButton1
     //
     this.simpleButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton1.Location = new System.Drawing.Point(796, 628);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(75, 23);
     this.simpleButton1.TabIndex = 7;
     this.simpleButton1.Text = "Close";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // groupControl2
     //
     this.toolTipController1.SetAllowHtmlText(this.groupControl2, DevExpress.Utils.DefaultBoolean.False);
     this.groupControl2.Controls.Add(this.lblZaxis);
     this.groupControl2.Controls.Add(this.labelControl13);
     this.groupControl2.Controls.Add(this.lblYaxis);
     this.groupControl2.Controls.Add(this.lblXaxis);
     this.groupControl2.Controls.Add(this.labelControl10);
     this.groupControl2.Controls.Add(this.labelControl11);
     this.groupControl2.Controls.Add(this.lblCategory);
     this.groupControl2.Controls.Add(this.lblDescription);
     this.groupControl2.Controls.Add(this.lblName);
     this.groupControl2.Controls.Add(this.lblLengthValues);
     this.groupControl2.Controls.Add(this.lblLengthBytes);
     this.groupControl2.Controls.Add(this.lblSRAMAddress);
     this.groupControl2.Controls.Add(this.lblFlashAddress);
     this.groupControl2.Controls.Add(this.labelControl7);
     this.groupControl2.Controls.Add(this.labelControl6);
     this.groupControl2.Controls.Add(this.labelControl5);
     this.groupControl2.Controls.Add(this.labelControl4);
     this.groupControl2.Controls.Add(this.labelControl3);
     this.groupControl2.Controls.Add(this.labelControl2);
     this.groupControl2.Controls.Add(this.labelControl1);
     this.groupControl2.Location = new System.Drawing.Point(3, 3);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(870, 90);
     this.toolTipController1.SetSuperTip(this.groupControl2, null);
     this.groupControl2.TabIndex = 6;
     this.groupControl2.Text = "Symbol details";
     this.groupControl2.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl2_Paint);
     //
     // lblZaxis
     //
     this.lblZaxis.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblZaxis.Appearance.Options.UseForeColor = true;
     this.lblZaxis.Location = new System.Drawing.Point(488, 30);
     this.lblZaxis.Name = "lblZaxis";
     this.lblZaxis.Size = new System.Drawing.Size(12, 13);
     this.lblZaxis.TabIndex = 19;
     this.lblZaxis.Text = "...";
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(430, 30);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(29, 13);
     this.labelControl13.TabIndex = 18;
     this.labelControl13.Text = "Z-axis";
     //
     // lblYaxis
     //
     this.lblYaxis.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblYaxis.Appearance.Options.UseForeColor = true;
     this.lblYaxis.Location = new System.Drawing.Point(350, 62);
     this.lblYaxis.Name = "lblYaxis";
     this.lblYaxis.Size = new System.Drawing.Size(12, 13);
     this.lblYaxis.TabIndex = 17;
     this.lblYaxis.Text = "...";
     //
     // lblXaxis
     //
     this.lblXaxis.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblXaxis.Appearance.Options.UseForeColor = true;
     this.lblXaxis.Location = new System.Drawing.Point(350, 30);
     this.lblXaxis.Name = "lblXaxis";
     this.lblXaxis.Size = new System.Drawing.Size(12, 13);
     this.lblXaxis.TabIndex = 16;
     this.lblXaxis.Text = "...";
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(305, 62);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(29, 13);
     this.labelControl10.TabIndex = 15;
     this.labelControl10.Text = "Y-axis";
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(305, 30);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(29, 13);
     this.labelControl11.TabIndex = 14;
     this.labelControl11.Text = "X-axis";
     //
     // lblCategory
     //
     this.lblCategory.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblCategory.Appearance.Options.UseForeColor = true;
     this.lblCategory.Location = new System.Drawing.Point(488, 62);
     this.lblCategory.Name = "lblCategory";
     this.lblCategory.Size = new System.Drawing.Size(12, 13);
     this.lblCategory.TabIndex = 13;
     this.lblCategory.Text = "...";
     //
     // lblDescription
     //
     this.lblDescription.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblDescription.Appearance.Options.UseForeColor = true;
     this.lblDescription.Location = new System.Drawing.Point(671, 62);
     this.lblDescription.Name = "lblDescription";
     this.lblDescription.Size = new System.Drawing.Size(12, 13);
     this.lblDescription.TabIndex = 12;
     this.lblDescription.Text = "...";
     //
     // lblName
     //
     this.lblName.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblName.Appearance.Options.UseForeColor = true;
     this.lblName.Location = new System.Drawing.Point(671, 30);
     this.lblName.Name = "lblName";
     this.lblName.Size = new System.Drawing.Size(12, 13);
     this.lblName.TabIndex = 11;
     this.lblName.Text = "...";
     //
     // lblLengthValues
     //
     this.lblLengthValues.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblLengthValues.Appearance.Options.UseForeColor = true;
     this.lblLengthValues.Location = new System.Drawing.Point(251, 62);
     this.lblLengthValues.Name = "lblLengthValues";
     this.lblLengthValues.Size = new System.Drawing.Size(36, 13);
     this.lblLengthValues.TabIndex = 10;
     this.lblLengthValues.Text = "0x0000";
     //
     // lblLengthBytes
     //
     this.lblLengthBytes.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblLengthBytes.Appearance.Options.UseForeColor = true;
     this.lblLengthBytes.Location = new System.Drawing.Point(251, 30);
     this.lblLengthBytes.Name = "lblLengthBytes";
     this.lblLengthBytes.Size = new System.Drawing.Size(36, 13);
     this.lblLengthBytes.TabIndex = 9;
     this.lblLengthBytes.Text = "0x0000";
     //
     // lblSRAMAddress
     //
     this.lblSRAMAddress.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblSRAMAddress.Appearance.Options.UseForeColor = true;
     this.lblSRAMAddress.Location = new System.Drawing.Point(100, 62);
     this.lblSRAMAddress.Name = "lblSRAMAddress";
     this.lblSRAMAddress.Size = new System.Drawing.Size(36, 13);
     this.lblSRAMAddress.TabIndex = 8;
     this.lblSRAMAddress.Text = "0x0000";
     //
     // lblFlashAddress
     //
     this.lblFlashAddress.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblFlashAddress.Appearance.Options.UseForeColor = true;
     this.lblFlashAddress.Location = new System.Drawing.Point(100, 30);
     this.lblFlashAddress.Name = "lblFlashAddress";
     this.lblFlashAddress.Size = new System.Drawing.Size(48, 13);
     this.lblFlashAddress.TabIndex = 7;
     this.lblFlashAddress.Text = "0x000000";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(430, 62);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(45, 13);
     this.labelControl7.TabIndex = 6;
     this.labelControl7.Text = "Category";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(598, 62);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(53, 13);
     this.labelControl6.TabIndex = 5;
     this.labelControl6.Text = "Description";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(598, 30);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(27, 13);
     this.labelControl5.TabIndex = 4;
     this.labelControl5.Text = "Name";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(164, 62);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(75, 13);
     this.labelControl4.TabIndex = 3;
     this.labelControl4.Text = "Length (values)";
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(164, 30);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(71, 13);
     this.labelControl3.TabIndex = 2;
     this.labelControl3.Text = "Length (bytes)";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(18, 62);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(69, 13);
     this.labelControl2.TabIndex = 1;
     this.labelControl2.Text = "SRAM address";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(18, 30);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(66, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "Flash address";
     //
     // groupControl1
     //
     this.toolTipController1.SetAllowHtmlText(this.groupControl1, DevExpress.Utils.DefaultBoolean.False);
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.Controls.Add(this.splitContainer1);
     this.groupControl1.Location = new System.Drawing.Point(3, 28);
     this.groupControl1.LookAndFeel.SkinName = "Black";
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(870, 594);
     this.toolTipController1.SetSuperTip(this.groupControl1, null);
     this.groupControl1.TabIndex = 5;
     this.groupControl1.Text = "Symbol data";
     this.groupControl1.DoubleClick += new System.EventHandler(this.groupControl1_DoubleClick);
     this.groupControl1.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl1_Paint);
     //
     // splitContainer1
     //
     this.toolTipController1.SetAllowHtmlText(this.splitContainer1, DevExpress.Utils.DefaultBoolean.False);
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(2, 20);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.toolTipController1.SetAllowHtmlText(this.splitContainer1.Panel1, DevExpress.Utils.DefaultBoolean.False);
     this.splitContainer1.Panel1.Controls.Add(this.panel1);
     this.toolTipController1.SetSuperTip(this.splitContainer1.Panel1, null);
     //
     // splitContainer1.Panel2
     //
     this.toolTipController1.SetAllowHtmlText(this.splitContainer1.Panel2, DevExpress.Utils.DefaultBoolean.False);
     this.splitContainer1.Panel2.Controls.Add(this.xtraTabControl1);
     this.toolTipController1.SetSuperTip(this.splitContainer1.Panel2, null);
     this.splitContainer1.Size = new System.Drawing.Size(866, 572);
     this.splitContainer1.SplitterDistance = 284;
     this.toolTipController1.SetSuperTip(this.splitContainer1, null);
     this.splitContainer1.TabIndex = 1;
     this.splitContainer1.MouseLeave += new System.EventHandler(this.splitContainer1_MouseLeave);
     this.splitContainer1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainer1_SplitterMoved);
     this.splitContainer1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.splitContainer1_MouseDown);
     this.splitContainer1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.splitContainer1_MouseUp);
     //
     // panel1
     //
     this.toolTipController1.SetAllowHtmlText(this.panel1, DevExpress.Utils.DefaultBoolean.False);
     this.panel1.Controls.Add(this.popupContainerControl1);
     this.panel1.Controls.Add(this.gridControl1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(866, 284);
     this.toolTipController1.SetSuperTip(this.panel1, null);
     this.panel1.TabIndex = 2;
     //
     // popupContainerControl1
     //
     this.toolTipController1.SetAllowHtmlText(this.popupContainerControl1, DevExpress.Utils.DefaultBoolean.False);
     this.popupContainerControl1.Controls.Add(this.groupControl2);
     this.popupContainerControl1.Location = new System.Drawing.Point(3, 72);
     this.popupContainerControl1.Name = "popupContainerControl1";
     this.popupContainerControl1.Size = new System.Drawing.Size(878, 97);
     this.toolTipController1.SetSuperTip(this.popupContainerControl1, null);
     this.popupContainerControl1.TabIndex = 1;
     //
     // gridControl1
     //
     this.gridControl1.ContextMenuStrip = this.contextMenuStrip1;
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridControl1.Location = new System.Drawing.Point(0, 0);
     this.gridControl1.LookAndFeel.SkinName = "Black";
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Size = new System.Drawing.Size(866, 284);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // contextMenuStrip1
     //
     this.toolTipController1.SetAllowHtmlText(this.contextMenuStrip1, DevExpress.Utils.DefaultBoolean.False);
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.copySelectedCellsToolStripMenuItem,
     this.pasteSelectedCellsToolStripMenuItem,
     this.editXaxisSymbolToolStripMenuItem,
     this.editYaxisSymbolToolStripMenuItem,
     this.smoothSelectionToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(179, 114);
     this.toolTipController1.SetSuperTip(this.contextMenuStrip1, null);
     this.contextMenuStrip1.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip1_Opening);
     //
     // copySelectedCellsToolStripMenuItem
     //
     this.copySelectedCellsToolStripMenuItem.Name = "copySelectedCellsToolStripMenuItem";
     this.copySelectedCellsToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.copySelectedCellsToolStripMenuItem.Text = "Copy selected cells";
     this.copySelectedCellsToolStripMenuItem.Click += new System.EventHandler(this.copySelectedCellsToolStripMenuItem_Click);
     //
     // pasteSelectedCellsToolStripMenuItem
     //
     this.pasteSelectedCellsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.inOrgininalPositionToolStripMenuItem,
     this.atCurrentlySelectedLocationToolStripMenuItem});
     this.pasteSelectedCellsToolStripMenuItem.Name = "pasteSelectedCellsToolStripMenuItem";
     this.pasteSelectedCellsToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.pasteSelectedCellsToolStripMenuItem.Text = "Paste selected cells";
     //
     // inOrgininalPositionToolStripMenuItem
     //
     this.inOrgininalPositionToolStripMenuItem.Name = "inOrgininalPositionToolStripMenuItem";
     this.inOrgininalPositionToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
     this.inOrgininalPositionToolStripMenuItem.Text = "At original position";
     this.inOrgininalPositionToolStripMenuItem.Click += new System.EventHandler(this.inOrgininalPositionToolStripMenuItem_Click);
     //
     // atCurrentlySelectedLocationToolStripMenuItem
     //
     this.atCurrentlySelectedLocationToolStripMenuItem.Name = "atCurrentlySelectedLocationToolStripMenuItem";
     this.atCurrentlySelectedLocationToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
     this.atCurrentlySelectedLocationToolStripMenuItem.Text = "At currently selected location";
     this.atCurrentlySelectedLocationToolStripMenuItem.Click += new System.EventHandler(this.atCurrentlySelectedLocationToolStripMenuItem_Click);
     //
     // editXaxisSymbolToolStripMenuItem
     //
     this.editXaxisSymbolToolStripMenuItem.Name = "editXaxisSymbolToolStripMenuItem";
     this.editXaxisSymbolToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.editXaxisSymbolToolStripMenuItem.Text = "Edit x-axis";
     this.editXaxisSymbolToolStripMenuItem.Click += new System.EventHandler(this.editXaxisSymbolToolStripMenuItem_Click);
     //
     // editYaxisSymbolToolStripMenuItem
     //
     this.editYaxisSymbolToolStripMenuItem.Name = "editYaxisSymbolToolStripMenuItem";
     this.editYaxisSymbolToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.editYaxisSymbolToolStripMenuItem.Text = "Edit y-axis";
     this.editYaxisSymbolToolStripMenuItem.Click += new System.EventHandler(this.editYaxisSymbolToolStripMenuItem_Click);
     //
     // smoothSelectionToolStripMenuItem
     //
     this.smoothSelectionToolStripMenuItem.Name = "smoothSelectionToolStripMenuItem";
     this.smoothSelectionToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.smoothSelectionToolStripMenuItem.Text = "Smooth selection";
     this.smoothSelectionToolStripMenuItem.Click += new System.EventHandler(this.smoothSelectionToolStripMenuItem_Click);
     //
     // gridView1
     //
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsCustomization.AllowColumnMoving = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowGroup = false;
     this.gridView1.OptionsCustomization.AllowSort = false;
     this.gridView1.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gridView1.OptionsSelection.MultiSelect = true;
     this.gridView1.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.SelectionChanged += new DevExpress.Data.SelectionChangedEventHandler(this.gridView1_SelectionChanged_1);
     this.gridView1.ValidatingEditor += new DevExpress.XtraEditors.Controls.BaseContainerValidateEditorEventHandler(this.gridView1_ValidatingEditor);
     this.gridView1.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridView1_CustomDrawRowIndicator);
     this.gridView1.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
     this.gridView1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gridView1_KeyDown);
     this.gridView1.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanging);
     this.gridView1.CustomDrawCell += new DevExpress.XtraGrid.Views.Base.RowCellCustomDrawEventHandler(this.gridView1_CustomDrawCell);
     this.gridView1.ShownEditor += new System.EventHandler(this.gridView1_ShownEditor);
     this.gridView1.RowUpdated += new DevExpress.XtraGrid.Views.Base.RowObjectEventHandler(this.gridView1_RowUpdated);
     this.gridView1.ShowingEditor += new System.ComponentModel.CancelEventHandler(this.gridView1_ShowingEditor);
     this.gridView1.HiddenEditor += new System.EventHandler(this.gridView1_HiddenEditor);
     this.gridView1.CustomDrawColumnHeader += new DevExpress.XtraGrid.Views.Grid.ColumnHeaderCustomDrawEventHandler(this.gridView1_CustomDrawColumnHeader);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl1.HeaderLocation = DevExpress.XtraTab.TabHeaderLocation.Left;
     this.xtraTabControl1.HeaderOrientation = DevExpress.XtraTab.TabOrientation.Vertical;
     this.xtraTabControl1.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
     this.xtraTabControl1.Size = new System.Drawing.Size(866, 284);
     this.xtraTabControl1.TabIndex = 2;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2});
     this.xtraTabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.simpleButton4);
     this.xtraTabPage1.Controls.Add(this.simpleButton5);
     this.xtraTabPage1.Controls.Add(this.simpleButton6);
     this.xtraTabPage1.Controls.Add(this.simpleButton7);
     this.xtraTabPage1.Controls.Add(this.surfaceGraphViewer1);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(836, 275);
     this.xtraTabPage1.Text = "3D Graph";
     //
     // simpleButton4
     //
     this.simpleButton4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton4.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton4.Image")));
     this.simpleButton4.Location = new System.Drawing.Point(814, 60);
     this.simpleButton4.Name = "simpleButton4";
     this.simpleButton4.Size = new System.Drawing.Size(23, 23);
     this.simpleButton4.TabIndex = 12;
     this.simpleButton4.ToolTip = "Turn graph counter clockwise";
     this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
     //
     // simpleButton5
     //
     this.simpleButton5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton5.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton5.Image")));
     this.simpleButton5.Location = new System.Drawing.Point(814, 89);
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(23, 23);
     this.simpleButton5.TabIndex = 11;
     this.simpleButton5.ToolTip = "Turn graph clockwise";
     this.simpleButton5.Click += new System.EventHandler(this.simpleButton5_Click);
     //
     // simpleButton6
     //
     this.simpleButton6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton6.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton6.Image")));
     this.simpleButton6.Location = new System.Drawing.Point(814, 32);
     this.simpleButton6.Name = "simpleButton6";
     this.simpleButton6.Size = new System.Drawing.Size(23, 23);
     this.simpleButton6.TabIndex = 10;
     this.simpleButton6.ToolTip = "Zoom out";
     this.simpleButton6.Click += new System.EventHandler(this.simpleButton6_Click);
     //
     // simpleButton7
     //
     this.simpleButton7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton7.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton7.Image")));
     this.simpleButton7.Location = new System.Drawing.Point(814, 3);
     this.simpleButton7.Name = "simpleButton7";
     this.simpleButton7.Size = new System.Drawing.Size(23, 23);
     this.simpleButton7.TabIndex = 9;
     this.simpleButton7.ToolTip = "Zoom in";
     this.simpleButton7.Click += new System.EventHandler(this.simpleButton7_Click);
     //
     // surfaceGraphViewer1
     //
     this.toolTipController1.SetAllowHtmlText(this.surfaceGraphViewer1, DevExpress.Utils.DefaultBoolean.False);
     this.surfaceGraphViewer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.surfaceGraphViewer1.IsRedWhite = false;
     this.surfaceGraphViewer1.IsSixteenbit = false;
     this.surfaceGraphViewer1.IsUpsideDown = false;
     this.surfaceGraphViewer1.Location = new System.Drawing.Point(0, 0);
     this.surfaceGraphViewer1.Map_compare_content = null;
     this.surfaceGraphViewer1.Map_content = null;
     this.surfaceGraphViewer1.Map_length = 0;
     this.surfaceGraphViewer1.Map_name = "";
     this.surfaceGraphViewer1.Map_original_content = null;
     this.surfaceGraphViewer1.Name = "surfaceGraphViewer1";
     this.surfaceGraphViewer1.NumberOfColumns = 8;
     this.surfaceGraphViewer1.Pan_x = 45;
     this.surfaceGraphViewer1.Pan_y = 77;
     this.surfaceGraphViewer1.Pov_d = 0.6;
     this.surfaceGraphViewer1.Pov_x = 30;
     this.surfaceGraphViewer1.Pov_y = 56;
     this.surfaceGraphViewer1.Pov_z = 21;
     this.surfaceGraphViewer1.Size = new System.Drawing.Size(808, 275);
     this.toolTipController1.SetSuperTip(this.surfaceGraphViewer1, null);
     this.surfaceGraphViewer1.TabIndex = 0;
     this.surfaceGraphViewer1.X_axis = null;
     this.surfaceGraphViewer1.X_axis_descr = "";
     this.surfaceGraphViewer1.Y_axis = null;
     this.surfaceGraphViewer1.Y_axis_descr = "";
     this.surfaceGraphViewer1.Z_axis = null;
     this.surfaceGraphViewer1.Z_axis_descr = "";
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.labelControl9);
     this.xtraTabPage2.Controls.Add(this.labelControl8);
     this.xtraTabPage2.Controls.Add(this.trackBarControl1);
     this.xtraTabPage2.Controls.Add(this.chartControl1);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(836, 275);
     this.xtraTabPage2.Text = "2D Graph";
     //
     // labelControl9
     //
     this.labelControl9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl9.AutoEllipsis = true;
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl9.Location = new System.Drawing.Point(645, 201);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(188, 34);
     this.labelControl9.TabIndex = 4;
     this.labelControl9.Text = "MAP";
     //
     // labelControl8
     //
     this.labelControl8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.labelControl8.AutoEllipsis = true;
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl8.Location = new System.Drawing.Point(6, 201);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(104, 34);
     this.labelControl8.TabIndex = 3;
     this.labelControl8.Text = "MAP values";
     //
     // trackBarControl1
     //
     this.trackBarControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.trackBarControl1.EditValue = null;
     this.trackBarControl1.Location = new System.Drawing.Point(125, 201);
     this.trackBarControl1.Name = "trackBarControl1";
     this.trackBarControl1.Size = new System.Drawing.Size(500, 45);
     this.trackBarControl1.TabIndex = 2;
     this.trackBarControl1.ValueChanged += new System.EventHandler(this.trackBarControl1_ValueChanged);
     //
     // chartControl1
     //
     this.toolTipController1.SetAllowHtmlText(this.chartControl1, DevExpress.Utils.DefaultBoolean.False);
     this.chartControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.chartControl1.CacheToMemory = true;
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisX.Range.SideMarginsEnabled = false;
     xyDiagram1.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.Range.SideMarginsEnabled = false;
     xyDiagram1.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     this.chartControl1.Diagram = xyDiagram1;
     this.chartControl1.Legend.Border.Visible = false;
     this.chartControl1.Location = new System.Drawing.Point(3, 3);
     this.chartControl1.Name = "chartControl1";
     this.chartControl1.RefreshDataOnRepaint = false;
     this.chartControl1.RuntimeHitTesting = false;
     this.chartControl1.RuntimeSeriesSelectionMode = DevExpress.XtraCharts.SeriesSelectionMode.Point;
     series1.Name = "Values";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
     seriesPoint1});
     lineSeriesView1.LineMarkerOptions.Size = 8;
     lineSeriesView1.LineMarkerOptions.FillStyle.FillMode = DevExpress.XtraCharts.FillMode.Gradient;
     polygonGradientFillOptions1.Color2 = System.Drawing.Color.Gold;
     lineSeriesView1.LineMarkerOptions.FillStyle.Options = polygonGradientFillOptions1;
     lineSeriesView1.Color = System.Drawing.Color.DarkGoldenrod;
     series1.View = lineSeriesView1;
     series1.ArgumentDataMember = "X";
     series1.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.Numerical;
     pointSeriesLabel1.Angle = 90;
     pointSeriesLabel1.TextColor = System.Drawing.Color.MidnightBlue;
     pointSeriesLabel1.Font = new System.Drawing.Font("Tahoma", 6F, System.Drawing.FontStyle.Bold);
     pointSeriesLabel1.Border.Visible = false;
     pointSeriesLabel1.Antialiasing = true;
     pointSeriesLabel1.LineVisible = true;
     series1.Label = pointSeriesLabel1;
     pointOptions1.PointView = DevExpress.XtraCharts.PointView.ArgumentAndValues;
     series1.PointOptions = pointOptions1;
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series1};
     this.chartControl1.SeriesTemplate.View = lineSeriesView2;
     pointSeriesLabel2.LineVisible = true;
     this.chartControl1.SeriesTemplate.Label = pointSeriesLabel2;
     this.chartControl1.Size = new System.Drawing.Size(830, 185);
     this.toolTipController1.SetSuperTip(this.chartControl1, null);
     this.chartControl1.TabIndex = 1;
     this.chartControl1.Visible = false;
     this.chartControl1.CustomDrawSeriesPoint += new DevExpress.XtraCharts.CustomDrawSeriesPointEventHandler(this.chartControl1_CustomDrawSeriesPoint);
     this.chartControl1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.chartControl1_MouseUp);
     this.chartControl1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.chartControl1_MouseDoubleClick);
     this.chartControl1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chartControl1_MouseMove);
     this.chartControl1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.chartControl1_MouseDown);
     this.chartControl1.ObjectHotTracked += new DevExpress.XtraCharts.HotTrackEventHandler(this.chartControl1_ObjectHotTracked);
     this.chartControl1.CustomDrawSeries += new DevExpress.XtraCharts.CustomDrawSeriesEventHandler(this.chartControl1_CustomDrawSeries);
     this.chartControl1.Click += new System.EventHandler(this.chartControl1_Click);
     //
     // timer1
     //
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // timer2
     //
     this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
     //
     // toolTipController1
     //
     this.toolTipController1.Rounded = true;
     //
     // toolStrip1
     //
     this.toolTipController1.SetAllowHtmlText(this.toolStrip1, DevExpress.Utils.DefaultBoolean.False);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton1,
     this.toolStripButton2,
     this.toolStripSeparator3,
     this.toolStripButton4,
     this.toolStripButton5,
     this.toolStripButton6,
     this.toolStripButton7,
     this.toolStripSeparator1,
     this.toolStripLabel3,
     this.toolStripComboBox3,
     this.toolStripSeparator2,
     this.toolStripLabel1,
     this.toolStripComboBox2,
     this.toolStripLabel2,
     this.toolStripComboBox1,
     this.toolStripTextBox1,
     this.toolStripButton3});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(876, 25);
     this.toolTipController1.SetSuperTip(this.toolStrip1, null);
     this.toolStrip1.TabIndex = 10;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text = "Toggle graph section";
     this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
     //
     // toolStripButton2
     //
     this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton2.Name = "toolStripButton2";
     this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton2.Text = "Toggle hexview";
     this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton4
     //
     this.toolStripButton4.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton4.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton4.Image")));
     this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton4.Name = "toolStripButton4";
     this.toolStripButton4.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton4.Text = "Maximize graph";
     this.toolStripButton4.Click += new System.EventHandler(this.toolStripButton4_Click);
     //
     // toolStripButton5
     //
     this.toolStripButton5.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton5.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton5.Image")));
     this.toolStripButton5.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton5.Name = "toolStripButton5";
     this.toolStripButton5.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton5.Text = "Maximize table";
     this.toolStripButton5.Click += new System.EventHandler(this.toolStripButton5_Click);
     //
     // toolStripButton6
     //
     this.toolStripButton6.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton6.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton6.Image")));
     this.toolStripButton6.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton6.Name = "toolStripButton6";
     this.toolStripButton6.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton6.Text = "Maximize window";
     this.toolStripButton6.Click += new System.EventHandler(this.toolStripButton6_Click);
     //
     // toolStripButton7
     //
     this.toolStripButton7.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton7.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton7.Image")));
     this.toolStripButton7.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton7.Name = "toolStripButton7";
     this.toolStripButton7.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton7.Text = "Toggle graph/map";
     this.toolStripButton7.Click += new System.EventHandler(this.toolStripButton7_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(51, 22);
     this.toolStripLabel3.Text = "Viewtype";
     //
     // toolStripComboBox3
     //
     this.toolStripComboBox3.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.toolStripComboBox3.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.toolStripComboBox3.Items.AddRange(new object[] {
     "Hex view ",
     "Decimal view ",
     "Easy view"});
     this.toolStripComboBox3.Name = "toolStripComboBox3";
     this.toolStripComboBox3.Size = new System.Drawing.Size(160, 25);
     this.toolStripComboBox3.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBox3_SelectedIndexChanged);
     this.toolStripComboBox3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStripComboBox3_KeyDown);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(77, 22);
     this.toolStripLabel1.Text = "Axis lock mode";
     //
     // toolStripComboBox2
     //
     this.toolStripComboBox2.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.toolStripComboBox2.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.toolStripComboBox2.Items.AddRange(new object[] {
     "Autoscale",
     "Lock to peak in maps",
     "Lock to map limit"});
     this.toolStripComboBox2.Name = "toolStripComboBox2";
     this.toolStripComboBox2.Size = new System.Drawing.Size(121, 25);
     this.toolStripComboBox2.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBox2_SelectedIndexChanged);
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new System.Drawing.Size(67, 22);
     this.toolStripLabel2.Text = "Mathematics";
     //
     // toolStripComboBox1
     //
     this.toolStripComboBox1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.toolStripComboBox1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.toolStripComboBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.toolStripComboBox1.Items.AddRange(new object[] {
     "Addition",
     "Multiply",
     "Divide",
     "Fill"});
     this.toolStripComboBox1.Name = "toolStripComboBox1";
     this.toolStripComboBox1.Size = new System.Drawing.Size(121, 25);
     //
     // toolStripTextBox1
     //
     this.toolStripTextBox1.Name = "toolStripTextBox1";
     this.toolStripTextBox1.Size = new System.Drawing.Size(60, 25);
     this.toolStripTextBox1.Text = "2";
     this.toolStripTextBox1.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // toolStripButton3
     //
     this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
     this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton3.Name = "toolStripButton3";
     this.toolStripButton3.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton3.Text = "Execute";
     this.toolStripButton3.Click += new System.EventHandler(this.toolStripButton3_Click);
     //
     // timer3
     //
     this.timer3.Tick += new System.EventHandler(this.timer3_Tick);
     //
     // timer4
     //
     this.timer4.Enabled = true;
     this.timer4.Interval = 500;
     this.timer4.Tick += new System.EventHandler(this.timer4_Tick);
     //
     // popupContainerEdit1
     //
     this.popupContainerEdit1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.popupContainerEdit1.Location = new System.Drawing.Point(125, 631);
     this.popupContainerEdit1.Name = "popupContainerEdit1";
     this.popupContainerEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.popupContainerEdit1.Properties.PopupControl = this.popupContainerControl1;
     this.popupContainerEdit1.Size = new System.Drawing.Size(161, 20);
     toolTipTitleItem1.Text = "Click here for table details";
     superToolTip1.Items.Add(toolTipTitleItem1);
     superToolTip1.AllowHtmlText = DevExpress.Utils.DefaultBoolean.False;
     this.popupContainerEdit1.SuperTip = superToolTip1;
     this.popupContainerEdit1.TabIndex = 11;
     this.popupContainerEdit1.CustomDisplayText += new DevExpress.XtraEditors.Controls.CustomDisplayTextEventHandler(this.popupContainerEdit1_CustomDisplayText);
     //
     // MapViewer
     //
     this.toolTipController1.SetAllowHtmlText(this, DevExpress.Utils.DefaultBoolean.False);
     this.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Appearance.Options.UseFont = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.simpleButton3);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.popupContainerEdit1);
     this.LookAndFeel.SkinName = "Black";
     this.Name = "MapViewer";
     this.Size = new System.Drawing.Size(876, 664);
     this.toolTipController1.SetSuperTip(this, null);
     this.VisibleChanged += new System.EventHandler(this.MapViewer_VisibleChanged);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerControl1)).EndInit();
     this.popupContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmRevisarAsigMetas));
            DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel1 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("LR", new object[] {
            ((object)(18))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("DS", new object[] {
            ((object)(12))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("DO", new object[] {
            ((object)(9))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("SMC", new object[] {
            ((object)(15))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint("CY", new object[] {
            ((object)(21))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint("SF", new object[] {
            ((object)(8))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint("JMW", new object[] {
            ((object)(13))});
            DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView1 = new DevExpress.XtraCharts.StackedBarSeriesView();
            DevExpress.XtraCharts.Series series2 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel2 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint("LR", new object[] {
            ((object)(8))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint9 = new DevExpress.XtraCharts.SeriesPoint("DS", new object[] {
            ((object)(5))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint10 = new DevExpress.XtraCharts.SeriesPoint("DO", new object[] {
            ((object)(8))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint11 = new DevExpress.XtraCharts.SeriesPoint("SMC", new object[] {
            ((object)(12))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint12 = new DevExpress.XtraCharts.SeriesPoint("CY", new object[] {
            ((object)(23))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint13 = new DevExpress.XtraCharts.SeriesPoint("SF", new object[] {
            ((object)(6))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint14 = new DevExpress.XtraCharts.SeriesPoint("JMW", new object[] {
            ((object)(9))});
            DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView2 = new DevExpress.XtraCharts.StackedBarSeriesView();
            DevExpress.XtraCharts.Series series3 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel3 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint15 = new DevExpress.XtraCharts.SeriesPoint("LR", new object[] {
            ((object)(4))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint16 = new DevExpress.XtraCharts.SeriesPoint("DS", new object[] {
            ((object)(1))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint17 = new DevExpress.XtraCharts.SeriesPoint("DO", new object[] {
            ((object)(2))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint18 = new DevExpress.XtraCharts.SeriesPoint("SMC", new object[] {
            ((object)(3))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint19 = new DevExpress.XtraCharts.SeriesPoint("CY", new object[] {
            ((object)(4))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint20 = new DevExpress.XtraCharts.SeriesPoint("SF", new object[] {
            ((object)(2))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint21 = new DevExpress.XtraCharts.SeriesPoint("JMW", new object[] {
            ((object)(3))});
            DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView3 = new DevExpress.XtraCharts.StackedBarSeriesView();
            DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel4 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
            DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView4 = new DevExpress.XtraCharts.StackedBarSeriesView();
            this.gridProspectos = new DevExpress.XtraEditors.GroupControl();
            this.gridMisProspectos = new DevExpress.XtraGrid.GridControl();
            this.gridViewProspectos = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColCuenta = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColFechaActualizacion = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColTipoActualizacion = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
            this.ImageCollection = new DevExpress.Utils.ImageCollection(this.components);
            this.gridColFechaHoy = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColPrioridad = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColImage = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
            this.toolStripBarraLlamada = new System.Windows.Forms.ToolStrip();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.MenuNuevo = new System.Windows.Forms.ToolStripButton();
            this.MenuAceptar = new System.Windows.Forms.ToolStripButton();
            this.MenuDevolver = new System.Windows.Forms.ToolStripButton();
            this.MenuCerrar = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.MenuTodasAsignaciones = new System.Windows.Forms.ToolStripButton();
            this.MenuVerVisitas = new System.Windows.Forms.ToolStripButton();
            this.MenuVerLlamadas = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.MenuFichaTarget = new System.Windows.Forms.ToolStripButton();
            this.MenuFollowUp = new System.Windows.Forms.ToolStripButton();
            this.MenuFichaCuenta = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
            this.MenuExcel = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
            this.MenuSalir = new System.Windows.Forms.ToolStripButton();
            this.ChartProspectos = new DevExpress.XtraCharts.ChartControl();
            this.gridObservaciones = new DevExpress.XtraGrid.GridControl();
            this.gridViewObs = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColCodigo = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridTema = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemMemoExEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
            this.gridColFecha = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repSel = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.sButtonAgregarObservacion = new DevExpress.XtraEditors.SimpleButton();
            this.sButtonEliminarObservacion = new DevExpress.XtraEditors.SimpleButton();
            this.sButtonGrabarObs = new DevExpress.XtraEditors.SimpleButton();
            this.ctrldxError = new DevExpress.XtraEditors.DXErrorProvider.DXErrorProvider(this.components);
            this.DateHasta = new DevExpress.XtraEditors.DateEdit();
            this.DateDesde = new DevExpress.XtraEditors.DateEdit();
            this.sBActualizar = new DevExpress.XtraEditors.SimpleButton();
            ((System.ComponentModel.ISupportInitialize)(this.gridProspectos)).BeginInit();
            this.gridProspectos.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridMisProspectos)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewProspectos)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ImageCollection)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
            this.toolStripBarraLlamada.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ChartProspectos)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridObservaciones)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewObs)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repSel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ctrldxError)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateHasta.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateHasta.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateDesde.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateDesde.Properties)).BeginInit();
            this.SuspendLayout();
            // 
            // gridProspectos
            // 
            this.gridProspectos.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.gridProspectos.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.gridProspectos.AppearanceCaption.ForeColor = System.Drawing.Color.DarkBlue;
            this.gridProspectos.AppearanceCaption.Options.UseFont = true;
            this.gridProspectos.AppearanceCaption.Options.UseForeColor = true;
            this.gridProspectos.Controls.Add(this.gridMisProspectos);
            this.gridProspectos.Location = new System.Drawing.Point(4, 39);
            this.gridProspectos.Name = "gridProspectos";
            this.gridProspectos.Size = new System.Drawing.Size(948, 333);
            this.gridProspectos.TabIndex = 3;
            this.gridProspectos.Text = "Targets Asignados";
            // 
            // gridMisProspectos
            // 
            this.gridMisProspectos.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.gridMisProspectos.Location = new System.Drawing.Point(5, 23);
            this.gridMisProspectos.MainView = this.gridViewProspectos;
            this.gridMisProspectos.Name = "gridMisProspectos";
            this.gridMisProspectos.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemImageComboBox1,
            this.repositoryItemPictureEdit1});
            this.gridMisProspectos.Size = new System.Drawing.Size(938, 306);
            this.gridMisProspectos.TabIndex = 1;
            this.gridMisProspectos.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewProspectos});
            this.gridMisProspectos.Click += new System.EventHandler(this.gridMisMetas_Click);
            // 
            // gridViewProspectos
            // 
            this.gridViewProspectos.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn3,
            this.gridColumn4,
            this.gridColumn7,
            this.gridColCuenta,
            this.gridColumn8,
            this.gridColumn9,
            this.gridColumn10,
            this.gridColumn1,
            this.gridColFechaActualizacion,
            this.gridColTipoActualizacion,
            this.gridColFechaHoy,
            this.gridColPrioridad,
            this.gridColImage});
            this.gridViewProspectos.GridControl = this.gridMisProspectos;
            this.gridViewProspectos.Name = "gridViewProspectos";
            this.gridViewProspectos.OptionsView.ShowGroupPanel = false;
            this.gridViewProspectos.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewProspectos_FocusedRowChanged);
            this.gridViewProspectos.ColumnFilterChanged += new System.EventHandler(this.gridViewProspectos_ColumnFilterChanged);
            this.gridViewProspectos.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.gridViewProspectos_RowStyle);
            // 
            // gridColumn3
            // 
            this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn3.Caption = "N# Target";
            this.gridColumn3.FieldName = "IdNumMeta";
            this.gridColumn3.Name = "gridColumn3";
            this.gridColumn3.OptionsColumn.AllowEdit = false;
            this.gridColumn3.OptionsColumn.ReadOnly = true;
            this.gridColumn3.Visible = true;
            this.gridColumn3.VisibleIndex = 0;
            this.gridColumn3.Width = 43;
            // 
            // gridColumn4
            // 
            this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn4.Caption = "Tipo Target";
            this.gridColumn4.FieldName = "TipoOportunidad";
            this.gridColumn4.Name = "gridColumn4";
            this.gridColumn4.OptionsColumn.AllowEdit = false;
            this.gridColumn4.OptionsColumn.ReadOnly = true;
            this.gridColumn4.Width = 58;
            // 
            // gridColumn7
            // 
            this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn7.Caption = "Target";
            this.gridColumn7.FieldName = "GlosaClienteTarget";
            this.gridColumn7.Name = "gridColumn7";
            this.gridColumn7.OptionsColumn.AllowEdit = false;
            this.gridColumn7.OptionsColumn.ReadOnly = true;
            this.gridColumn7.Visible = true;
            this.gridColumn7.VisibleIndex = 1;
            this.gridColumn7.Width = 149;
            // 
            // gridColCuenta
            // 
            this.gridColCuenta.Caption = "Cuenta";
            this.gridColCuenta.FieldName = "ObjClienteMaster.NombreFantasia";
            this.gridColCuenta.Name = "gridColCuenta";
            this.gridColCuenta.OptionsColumn.ReadOnly = true;
            this.gridColCuenta.Visible = true;
            this.gridColCuenta.VisibleIndex = 2;
            this.gridColCuenta.Width = 86;
            // 
            // gridColumn8
            // 
            this.gridColumn8.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.gridColumn8.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn8.Caption = "Vendedor";
            this.gridColumn8.FieldName = "ObjMetaAsignacion.ObjVendedorAsignado.NombreUsuario";
            this.gridColumn8.Name = "gridColumn8";
            this.gridColumn8.OptionsColumn.AllowEdit = false;
            this.gridColumn8.OptionsColumn.ReadOnly = true;
            this.gridColumn8.Visible = true;
            this.gridColumn8.VisibleIndex = 3;
            this.gridColumn8.Width = 76;
            // 
            // gridColumn9
            // 
            this.gridColumn9.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn9.Caption = "Estado";
            this.gridColumn9.FieldName = "EstadoMeta";
            this.gridColumn9.Name = "gridColumn9";
            this.gridColumn9.OptionsColumn.AllowEdit = false;
            this.gridColumn9.OptionsColumn.ReadOnly = true;
            this.gridColumn9.Visible = true;
            this.gridColumn9.VisibleIndex = 4;
            this.gridColumn9.Width = 62;
            // 
            // gridColumn10
            // 
            this.gridColumn10.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
            this.gridColumn10.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
            this.gridColumn10.Caption = "Asignación";
            this.gridColumn10.FieldName = "FechaApertura";
            this.gridColumn10.Name = "gridColumn10";
            this.gridColumn10.OptionsColumn.AllowEdit = false;
            this.gridColumn10.OptionsColumn.ReadOnly = true;
            this.gridColumn10.Visible = true;
            this.gridColumn10.VisibleIndex = 5;
            this.gridColumn10.Width = 91;
            // 
            // gridColumn1
            // 
            this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
            this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
            this.gridColumn1.Caption = "Follow Up";
            this.gridColumn1.FieldName = "FechaRevision";
            this.gridColumn1.Name = "gridColumn1";
            this.gridColumn1.OptionsColumn.AllowEdit = false;
            this.gridColumn1.OptionsColumn.ReadOnly = true;
            this.gridColumn1.Visible = true;
            this.gridColumn1.VisibleIndex = 6;
            this.gridColumn1.Width = 94;
            // 
            // gridColFechaActualizacion
            // 
            this.gridColFechaActualizacion.Caption = "Actualización";
            this.gridColFechaActualizacion.FieldName = "FechaUltActulizacion";
            this.gridColFechaActualizacion.Name = "gridColFechaActualizacion";
            this.gridColFechaActualizacion.OptionsColumn.ReadOnly = true;
            this.gridColFechaActualizacion.Visible = true;
            this.gridColFechaActualizacion.VisibleIndex = 7;
            this.gridColFechaActualizacion.Width = 87;
            // 
            // gridColTipoActualizacion
            // 
            this.gridColTipoActualizacion.Caption = "Tipo Actualización";
            this.gridColTipoActualizacion.ColumnEdit = this.repositoryItemImageComboBox1;
            this.gridColTipoActualizacion.FieldName = "IdTipoActualizacion";
            this.gridColTipoActualizacion.Name = "gridColTipoActualizacion";
            this.gridColTipoActualizacion.OptionsColumn.ReadOnly = true;
            this.gridColTipoActualizacion.Visible = true;
            this.gridColTipoActualizacion.VisibleIndex = 8;
            this.gridColTipoActualizacion.Width = 51;
            // 
            // repositoryItemImageComboBox1
            // 
            this.repositoryItemImageComboBox1.Appearance.Options.UseTextOptions = true;
            this.repositoryItemImageComboBox1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.repositoryItemImageComboBox1.AutoHeight = false;
            this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemImageComboBox1.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.repositoryItemImageComboBox1.HighlightedItemStyle = DevExpress.XtraEditors.HighlightStyle.Skinned;
            this.repositoryItemImageComboBox1.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Baja", "2", 0),
            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Alta", "0", 1),
            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Media", "1", 2),
            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("New", 1, 3)});
            this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
            this.repositoryItemImageComboBox1.SmallImages = this.ImageCollection;
            // 
            // ImageCollection
            // 
            this.ImageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("ImageCollection.ImageStream")));
            this.ImageCollection.Images.SetKeyName(0, "Baja Prioridad.png");
            this.ImageCollection.Images.SetKeyName(1, "Alta Prioridad.png");
            this.ImageCollection.Images.SetKeyName(2, "Media Prioridad.png");
            this.ImageCollection.Images.SetKeyName(3, "mail_get.png");
            this.ImageCollection.Images.SetKeyName(4, "mail_get.png");
            // 
            // gridColFechaHoy
            // 
            this.gridColFechaHoy.Caption = "Hoy";
            this.gridColFechaHoy.FieldName = "FechaHoy";
            this.gridColFechaHoy.Name = "gridColFechaHoy";
            this.gridColFechaHoy.OptionsColumn.ReadOnly = true;
            this.gridColFechaHoy.Visible = true;
            this.gridColFechaHoy.VisibleIndex = 9;
            this.gridColFechaHoy.Width = 51;
            // 
            // gridColPrioridad
            // 
            this.gridColPrioridad.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColPrioridad.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.gridColPrioridad.Caption = "Prioridad";
            this.gridColPrioridad.ColumnEdit = this.repositoryItemImageComboBox1;
            this.gridColPrioridad.FieldName = "Prioridad.Codigo";
            this.gridColPrioridad.Name = "gridColPrioridad";
            this.gridColPrioridad.OptionsColumn.AllowEdit = false;
            this.gridColPrioridad.OptionsColumn.ReadOnly = true;
            this.gridColPrioridad.Visible = true;
            this.gridColPrioridad.VisibleIndex = 10;
            this.gridColPrioridad.Width = 69;
            // 
            // gridColImage
            // 
            this.gridColImage.Caption = "Image";
            this.gridColImage.ColumnEdit = this.repositoryItemImageComboBox1;
            this.gridColImage.FieldName = "gridColImage";
            this.gridColImage.ImageAlignment = System.Drawing.StringAlignment.Center;
            this.gridColImage.Name = "gridColImage";
            this.gridColImage.OptionsColumn.ReadOnly = true;
            this.gridColImage.UnboundType = DevExpress.Data.UnboundColumnType.Object;
            // 
            // repositoryItemPictureEdit1
            // 
            this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
            this.repositoryItemPictureEdit1.PictureStoreMode = DevExpress.XtraEditors.Controls.PictureStoreMode.Image;
            // 
            // toolStripBarraLlamada
            // 
            this.toolStripBarraLlamada.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripSeparator2,
            this.MenuNuevo,
            this.MenuAceptar,
            this.MenuDevolver,
            this.MenuCerrar,
            this.toolStripSeparator1,
            this.MenuTodasAsignaciones,
            this.MenuVerVisitas,
            this.MenuVerLlamadas,
            this.toolStripSeparator3,
            this.MenuFichaTarget,
            this.MenuFollowUp,
            this.MenuFichaCuenta,
            this.toolStripSeparator4,
            this.MenuExcel,
            this.toolStripSeparator5,
            this.MenuSalir});
            this.toolStripBarraLlamada.Location = new System.Drawing.Point(0, 0);
            this.toolStripBarraLlamada.Name = "toolStripBarraLlamada";
            this.toolStripBarraLlamada.Size = new System.Drawing.Size(956, 38);
            this.toolStripBarraLlamada.TabIndex = 6;
            this.toolStripBarraLlamada.Text = "toolStrip1";
            this.toolStripBarraLlamada.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.toolStripBarraLlamada_ItemClicked);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(6, 38);
            // 
            // MenuNuevo
            // 
            this.MenuNuevo.Image = ((System.Drawing.Image)(resources.GetObject("MenuNuevo.Image")));
            this.MenuNuevo.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuNuevo.Name = "MenuNuevo";
            this.MenuNuevo.Size = new System.Drawing.Size(63, 35);
            this.MenuNuevo.Text = "Actualizar";
            this.MenuNuevo.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            this.MenuNuevo.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.MenuNuevo.ToolTipText = "Nueva Llamada";
            this.MenuNuevo.Click += new System.EventHandler(this.MenuNuevo_Click);
            // 
            // MenuAceptar
            // 
            this.MenuAceptar.Image = ((System.Drawing.Image)(resources.GetObject("MenuAceptar.Image")));
            this.MenuAceptar.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuAceptar.Name = "MenuAceptar";
            this.MenuAceptar.Size = new System.Drawing.Size(52, 35);
            this.MenuAceptar.Text = "Aceptar";
            this.MenuAceptar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.MenuAceptar.Click += new System.EventHandler(this.MenuAceptar_Click);
            // 
            // MenuDevolver
            // 
            this.MenuDevolver.Image = ((System.Drawing.Image)(resources.GetObject("MenuDevolver.Image")));
            this.MenuDevolver.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuDevolver.Name = "MenuDevolver";
            this.MenuDevolver.Size = new System.Drawing.Size(57, 35);
            this.MenuDevolver.Text = "Devolver";
            this.MenuDevolver.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            this.MenuDevolver.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.MenuDevolver.Click += new System.EventHandler(this.MenuDevolver_Click);
            // 
            // MenuCerrar
            // 
            this.MenuCerrar.Image = ((System.Drawing.Image)(resources.GetObject("MenuCerrar.Image")));
            this.MenuCerrar.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuCerrar.Name = "MenuCerrar";
            this.MenuCerrar.Size = new System.Drawing.Size(43, 35);
            this.MenuCerrar.Text = "Cerrar";
            this.MenuCerrar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.MenuCerrar.Click += new System.EventHandler(this.MenuGenerarOportunidad_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 38);
            // 
            // MenuTodasAsignaciones
            // 
            this.MenuTodasAsignaciones.Enabled = false;
            this.MenuTodasAsignaciones.Image = ((System.Drawing.Image)(resources.GetObject("MenuTodasAsignaciones.Image")));
            this.MenuTodasAsignaciones.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
            this.MenuTodasAsignaciones.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuTodasAsignaciones.Name = "MenuTodasAsignaciones";
            this.MenuTodasAsignaciones.Size = new System.Drawing.Size(63, 35);
            this.MenuTodasAsignaciones.Text = "Ver Todas";
            this.MenuTodasAsignaciones.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            this.MenuTodasAsignaciones.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            // 
            // MenuVerVisitas
            // 
            this.MenuVerVisitas.Enabled = false;
            this.MenuVerVisitas.Image = ((System.Drawing.Image)(resources.GetObject("MenuVerVisitas.Image")));
            this.MenuVerVisitas.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuVerVisitas.Name = "MenuVerVisitas";
            this.MenuVerVisitas.Size = new System.Drawing.Size(64, 35);
            this.MenuVerVisitas.Text = "Ver Visitas";
            this.MenuVerVisitas.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            this.MenuVerVisitas.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            // 
            // MenuVerLlamadas
            // 
            this.MenuVerLlamadas.Enabled = false;
            this.MenuVerLlamadas.Image = ((System.Drawing.Image)(resources.GetObject("MenuVerLlamadas.Image")));
            this.MenuVerLlamadas.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuVerLlamadas.Name = "MenuVerLlamadas";
            this.MenuVerLlamadas.Size = new System.Drawing.Size(81, 35);
            this.MenuVerLlamadas.Text = "Ver Llamadas";
            this.MenuVerLlamadas.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            this.MenuVerLlamadas.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new System.Drawing.Size(6, 38);
            // 
            // MenuFichaTarget
            // 
            this.MenuFichaTarget.Image = ((System.Drawing.Image)(resources.GetObject("MenuFichaTarget.Image")));
            this.MenuFichaTarget.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuFichaTarget.Name = "MenuFichaTarget";
            this.MenuFichaTarget.Size = new System.Drawing.Size(76, 35);
            this.MenuFichaTarget.Text = "Ficha Target";
            this.MenuFichaTarget.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            this.MenuFichaTarget.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.MenuFichaTarget.Click += new System.EventHandler(this.MenuFichaTarget_Click);
            // 
            // MenuFollowUp
            // 
            this.MenuFollowUp.Enabled = false;
            this.MenuFollowUp.Image = ((System.Drawing.Image)(resources.GetObject("MenuFollowUp.Image")));
            this.MenuFollowUp.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuFollowUp.Name = "MenuFollowUp";
            this.MenuFollowUp.Size = new System.Drawing.Size(61, 35);
            this.MenuFollowUp.Text = "FollowUp";
            this.MenuFollowUp.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.MenuFollowUp.Click += new System.EventHandler(this.MenuFollowUp_Click);
            // 
            // MenuFichaCuenta
            // 
            this.MenuFichaCuenta.Enabled = false;
            this.MenuFichaCuenta.Image = ((System.Drawing.Image)(resources.GetObject("MenuFichaCuenta.Image")));
            this.MenuFichaCuenta.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuFichaCuenta.Name = "MenuFichaCuenta";
            this.MenuFichaCuenta.Size = new System.Drawing.Size(80, 35);
            this.MenuFichaCuenta.Text = "Ficha Cuenta";
            this.MenuFichaCuenta.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            this.MenuFichaCuenta.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            // 
            // toolStripSeparator4
            // 
            this.toolStripSeparator4.Name = "toolStripSeparator4";
            this.toolStripSeparator4.Size = new System.Drawing.Size(6, 38);
            // 
            // MenuExcel
            // 
            this.MenuExcel.Image = ((System.Drawing.Image)(resources.GetObject("MenuExcel.Image")));
            this.MenuExcel.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuExcel.Name = "MenuExcel";
            this.MenuExcel.Size = new System.Drawing.Size(37, 35);
            this.MenuExcel.Text = "Excel";
            this.MenuExcel.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            this.MenuExcel.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.MenuExcel.Click += new System.EventHandler(this.MenuExcel_Click);
            // 
            // toolStripSeparator5
            // 
            this.toolStripSeparator5.Name = "toolStripSeparator5";
            this.toolStripSeparator5.Size = new System.Drawing.Size(6, 38);
            // 
            // MenuSalir
            // 
            this.MenuSalir.Image = ((System.Drawing.Image)(resources.GetObject("MenuSalir.Image")));
            this.MenuSalir.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuSalir.Name = "MenuSalir";
            this.MenuSalir.Size = new System.Drawing.Size(33, 35);
            this.MenuSalir.Text = "Salir";
            this.MenuSalir.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.MenuSalir.Click += new System.EventHandler(this.MenuSalir_Click);
            // 
            // ChartProspectos
            // 
            this.ChartProspectos.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)));
            xyDiagram1.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
            xyDiagram1.AxisX.Range.SideMarginsEnabled = true;
            xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
            xyDiagram1.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
            xyDiagram1.AxisY.Range.SideMarginsEnabled = true;
            xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
            this.ChartProspectos.Diagram = xyDiagram1;
            this.ChartProspectos.Location = new System.Drawing.Point(5, 401);
            this.ChartProspectos.Name = "ChartProspectos";
            stackedBarSeriesLabel1.OverlappingOptionsTypeName = "OverlappingOptions";
            series1.Label = stackedBarSeriesLabel1;
            series1.Name = "Propuesta";
            series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint1,
            seriesPoint2,
            seriesPoint3,
            seriesPoint4,
            seriesPoint5,
            seriesPoint6,
            seriesPoint7});
            series1.View = stackedBarSeriesView1;
            stackedBarSeriesLabel2.OverlappingOptionsTypeName = "OverlappingOptions";
            series2.Label = stackedBarSeriesLabel2;
            series2.Name = "Asignada";
            series2.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint8,
            seriesPoint9,
            seriesPoint10,
            seriesPoint11,
            seriesPoint12,
            seriesPoint13,
            seriesPoint14});
            series2.View = stackedBarSeriesView2;
            stackedBarSeriesLabel3.OverlappingOptionsTypeName = "OverlappingOptions";
            series3.Label = stackedBarSeriesLabel3;
            series3.Name = "Revisión";
            series3.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint15,
            seriesPoint16,
            seriesPoint17,
            seriesPoint18,
            seriesPoint19,
            seriesPoint20,
            seriesPoint21});
            series3.View = stackedBarSeriesView3;
            this.ChartProspectos.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series1,
        series2,
        series3};
            stackedBarSeriesLabel4.OverlappingOptionsTypeName = "OverlappingOptions";
            this.ChartProspectos.SeriesTemplate.Label = stackedBarSeriesLabel4;
            this.ChartProspectos.SeriesTemplate.View = stackedBarSeriesView4;
            this.ChartProspectos.Size = new System.Drawing.Size(464, 145);
            this.ChartProspectos.TabIndex = 71;
            // 
            // gridObservaciones
            // 
            this.gridObservaciones.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.gridObservaciones.Location = new System.Drawing.Point(525, 378);
            this.gridObservaciones.MainView = this.gridViewObs;
            this.gridObservaciones.Name = "gridObservaciones";
            this.gridObservaciones.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repSel,
            this.repositoryItemCheckEdit1,
            this.repositoryItemCheckEdit2,
            this.repositoryItemMemoExEdit1});
            this.gridObservaciones.Size = new System.Drawing.Size(427, 168);
            this.gridObservaciones.TabIndex = 72;
            this.gridObservaciones.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewObs,
            this.gridView3});
            // 
            // gridViewObs
            // 
            this.gridViewObs.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColCodigo,
            this.gridTema,
            this.gridColFecha});
            this.gridViewObs.CustomizationFormBounds = new System.Drawing.Rectangle(592, 334, 208, 170);
            this.gridViewObs.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.None;
            this.gridViewObs.GridControl = this.gridObservaciones;
            this.gridViewObs.Name = "gridViewObs";
            this.gridViewObs.OptionsBehavior.CacheValuesOnRowUpdating = DevExpress.Data.CacheRowValuesMode.Disabled;
            this.gridViewObs.OptionsSelection.EnableAppearanceFocusedCell = false;
            this.gridViewObs.OptionsSelection.EnableAppearanceFocusedRow = false;
            this.gridViewObs.OptionsView.ShowGroupPanel = false;
            this.gridViewObs.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.gridViewObs_RowStyle);
            // 
            // gridColCodigo
            // 
            this.gridColCodigo.Caption = "Usuario";
            this.gridColCodigo.FieldName = "ObjUsuario.NombreUsuario";
            this.gridColCodigo.Name = "gridColCodigo";
            this.gridColCodigo.OptionsColumn.AllowEdit = false;
            this.gridColCodigo.OptionsColumn.ReadOnly = true;
            this.gridColCodigo.Visible = true;
            this.gridColCodigo.VisibleIndex = 0;
            this.gridColCodigo.Width = 63;
            // 
            // gridTema
            // 
            this.gridTema.AppearanceHeader.Options.UseTextOptions = true;
            this.gridTema.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridTema.Caption = "Observacion";
            this.gridTema.ColumnEdit = this.repositoryItemMemoExEdit1;
            this.gridTema.FieldName = "Observacion";
            this.gridTema.Name = "gridTema";
            this.gridTema.Visible = true;
            this.gridTema.VisibleIndex = 1;
            this.gridTema.Width = 276;
            // 
            // repositoryItemMemoExEdit1
            // 
            this.repositoryItemMemoExEdit1.AutoHeight = false;
            this.repositoryItemMemoExEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemMemoExEdit1.Name = "repositoryItemMemoExEdit1";
            this.repositoryItemMemoExEdit1.ShowIcon = false;
            // 
            // gridColFecha
            // 
            this.gridColFecha.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColFecha.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColFecha.Caption = "Fecha";
            this.gridColFecha.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.gridColFecha.FieldName = "FechaHora";
            this.gridColFecha.Name = "gridColFecha";
            this.gridColFecha.OptionsColumn.ReadOnly = true;
            this.gridColFecha.Visible = true;
            this.gridColFecha.VisibleIndex = 2;
            this.gridColFecha.Width = 76;
            // 
            // repSel
            // 
            this.repSel.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("repSel.Appearance.Image")));
            this.repSel.Appearance.Options.UseImage = true;
            this.repSel.AutoHeight = false;
            this.repSel.Name = "repSel";
            // 
            // repositoryItemCheckEdit1
            // 
            this.repositoryItemCheckEdit1.AutoHeight = false;
            this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
            // 
            // repositoryItemCheckEdit2
            // 
            this.repositoryItemCheckEdit2.AutoHeight = false;
            this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
            // 
            // gridView3
            // 
            this.gridView3.GridControl = this.gridObservaciones;
            this.gridView3.Name = "gridView3";
            // 
            // sButtonAgregarObservacion
            // 
            this.sButtonAgregarObservacion.Image = ((System.Drawing.Image)(resources.GetObject("sButtonAgregarObservacion.Image")));
            this.sButtonAgregarObservacion.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
            this.sButtonAgregarObservacion.Location = new System.Drawing.Point(487, 522);
            this.sButtonAgregarObservacion.Name = "sButtonAgregarObservacion";
            this.sButtonAgregarObservacion.Size = new System.Drawing.Size(32, 24);
            this.sButtonAgregarObservacion.TabIndex = 77;
            this.sButtonAgregarObservacion.Click += new System.EventHandler(this.sButtonAgregarObservacion_Click);
            // 
            // sButtonEliminarObservacion
            // 
            this.sButtonEliminarObservacion.AutoSizeInLayoutControl = true;
            this.sButtonEliminarObservacion.Image = ((System.Drawing.Image)(resources.GetObject("sButtonEliminarObservacion.Image")));
            this.sButtonEliminarObservacion.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
            this.sButtonEliminarObservacion.Location = new System.Drawing.Point(487, 492);
            this.sButtonEliminarObservacion.Name = "sButtonEliminarObservacion";
            this.sButtonEliminarObservacion.Size = new System.Drawing.Size(32, 24);
            this.sButtonEliminarObservacion.TabIndex = 76;
            this.sButtonEliminarObservacion.Click += new System.EventHandler(this.sButtonEliminarObservacion_Click);
            // 
            // sButtonGrabarObs
            // 
            this.sButtonGrabarObs.Image = ((System.Drawing.Image)(resources.GetObject("sButtonGrabarObs.Image")));
            this.sButtonGrabarObs.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
            this.sButtonGrabarObs.Location = new System.Drawing.Point(487, 379);
            this.sButtonGrabarObs.Name = "sButtonGrabarObs";
            this.sButtonGrabarObs.Size = new System.Drawing.Size(32, 29);
            this.sButtonGrabarObs.TabIndex = 75;
            this.sButtonGrabarObs.Click += new System.EventHandler(this.sButtonGrabarObs_Click);
            // 
            // ctrldxError
            // 
            this.ctrldxError.ContainerControl = this;
            // 
            // DateHasta
            // 
            this.DateHasta.EditValue = null;
            this.DateHasta.Location = new System.Drawing.Point(102, 376);
            this.DateHasta.Name = "DateHasta";
            this.DateHasta.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.DateHasta.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.DateHasta.Size = new System.Drawing.Size(91, 20);
            this.DateHasta.TabIndex = 79;
            this.DateHasta.EditValueChanged += new System.EventHandler(this.DateHasta_EditValueChanged);
            this.DateHasta.Leave += new System.EventHandler(this.DateHasta_Leave);
            // 
            // DateDesde
            // 
            this.DateDesde.EditValue = null;
            this.DateDesde.Location = new System.Drawing.Point(5, 375);
            this.DateDesde.Name = "DateDesde";
            this.DateDesde.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.DateDesde.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.DateDesde.Size = new System.Drawing.Size(91, 20);
            this.DateDesde.TabIndex = 78;
            this.DateDesde.EditValueChanged += new System.EventHandler(this.DateDesde_EditValueChanged);
            this.DateDesde.Leave += new System.EventHandler(this.DateDesde_Leave);
            // 
            // sBActualizar
            // 
            this.sBActualizar.Image = ((System.Drawing.Image)(resources.GetObject("sBActualizar.Image")));
            this.sBActualizar.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
            this.sBActualizar.Location = new System.Drawing.Point(199, 376);
            this.sBActualizar.Name = "sBActualizar";
            this.sBActualizar.Size = new System.Drawing.Size(41, 20);
            this.sBActualizar.TabIndex = 80;
            this.sBActualizar.ToolTip = "Actualizar Gráfico";
            this.sBActualizar.Click += new System.EventHandler(this.sBActualizar_Click);
            // 
            // frmRevisarAsigMetas
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(956, 549);
            this.Controls.Add(this.sBActualizar);
            this.Controls.Add(this.DateHasta);
            this.Controls.Add(this.DateDesde);
            this.Controls.Add(this.sButtonAgregarObservacion);
            this.Controls.Add(this.sButtonEliminarObservacion);
            this.Controls.Add(this.sButtonGrabarObs);
            this.Controls.Add(this.gridObservaciones);
            this.Controls.Add(this.ChartProspectos);
            this.Controls.Add(this.toolStripBarraLlamada);
            this.Controls.Add(this.gridProspectos);
            this.Name = "frmRevisarAsigMetas";
            this.Text = "Mis TARGETS";
            this.Load += new System.EventHandler(this.frmRevisarAsigMetas_Load);
            ((System.ComponentModel.ISupportInitialize)(this.gridProspectos)).EndInit();
            this.gridProspectos.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridMisProspectos)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewProspectos)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ImageCollection)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
            this.toolStripBarraLlamada.ResumeLayout(false);
            this.toolStripBarraLlamada.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ChartProspectos)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridObservaciones)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewObs)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repSel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ctrldxError)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateHasta.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateHasta.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateDesde.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateDesde.Properties)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            DevExpress.XtraCharts.SimpleDiagram simpleDiagram1 = new DevExpress.XtraCharts.SimpleDiagram();
            DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.PieSeriesLabel pieSeriesLabel1 = new DevExpress.XtraCharts.PieSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("Grand Total", null, 0);
            DevExpress.XtraCharts.PieSeriesView pieSeriesView1 = new DevExpress.XtraCharts.PieSeriesView();
            DevExpress.XtraCharts.SeriesTitle seriesTitle1 = new DevExpress.XtraCharts.SeriesTitle();
            DevExpress.XtraCharts.Series series2 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.PieSeriesView pieSeriesView2 = new DevExpress.XtraCharts.PieSeriesView();
            DevExpress.XtraCharts.PieSeriesLabel pieSeriesLabel2 = new DevExpress.XtraCharts.PieSeriesLabel();
            DevExpress.XtraCharts.PieSeriesView pieSeriesView3 = new DevExpress.XtraCharts.PieSeriesView();
            DevExpress.XtraCharts.SeriesTitle seriesTitle2 = new DevExpress.XtraCharts.SeriesTitle();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(f9908_bieu_do_ty_le_qua_mon));
            this.panel1 = new System.Windows.Forms.Panel();
            this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
            this.m_pivot_ty_le_qua_mon = new DevExpress.XtraPivotGrid.PivotGridControl();
            this.m_col_so_luong = new DevExpress.XtraPivotGrid.PivotGridField();
            this.m_col_trang_thai = new DevExpress.XtraPivotGrid.PivotGridField();
            this.panel3 = new System.Windows.Forms.Panel();
            this.m_lb_ten_hoc_phan = new System.Windows.Forms.Label();
            this.m_cbo_ky_hoc = new System.Windows.Forms.ComboBox();
            this.m_cbo_hoc_phan = new System.Windows.Forms.ComboBox();
            this.m_cmd_xuat_pdf = new DevExpress.XtraEditors.SimpleButton();
            this.label2 = new System.Windows.Forms.Label();
            this.m_cmd_loc = new DevExpress.XtraEditors.SimpleButton();
            this.label1 = new System.Windows.Forms.Label();
            this.panel4 = new System.Windows.Forms.Panel();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(simpleDiagram1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesView3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.m_pivot_ty_le_qua_mon)).BeginInit();
            this.panel3.SuspendLayout();
            this.panel4.SuspendLayout();
            this.SuspendLayout();
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.chartControl1);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
            this.panel1.Location = new System.Drawing.Point(735, 0);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(390, 535);
            this.panel1.TabIndex = 3;
            // 
            // chartControl1
            // 
            this.chartControl1.AppearanceNameSerializable = "Chameleon";
            this.chartControl1.DataSource = this.m_pivot_ty_le_qua_mon;
            simpleDiagram1.Dimension = 1;
            simpleDiagram1.EqualPieSize = false;
            this.chartControl1.Diagram = simpleDiagram1;
            this.chartControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.chartControl1.Legend.MaxHorizontalPercentage = 30D;
            this.chartControl1.Location = new System.Drawing.Point(0, 0);
            this.chartControl1.Name = "chartControl1";
            this.chartControl1.SeriesDataMember = "Series";
            series1.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.Qualitative;
            pieSeriesLabel1.Position = DevExpress.XtraCharts.PieSeriesLabelPosition.TwoColumns;
            pieSeriesLabel1.ResolveOverlappingMode = DevExpress.XtraCharts.ResolveOverlappingMode.Default;
            series1.Label = pieSeriesLabel1;
            series1.LegendTextPattern = "{A}";
            series1.Name = "Tổng sinh viên Total";
            series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint1});
            series1.Tag = "Tổng sinh viên Total";
            pieSeriesView1.RuntimeExploding = false;
            pieSeriesView1.SweepDirection = DevExpress.XtraCharts.PieSweepDirection.Counterclockwise;
            seriesTitle1.Text = "Tổng sinh viên Total";
            pieSeriesView1.Titles.AddRange(new DevExpress.XtraCharts.SeriesTitle[] {
            seriesTitle1});
            series1.View = pieSeriesView1;
            series2.Name = "Series 1";
            pieSeriesView2.RuntimeExploding = false;
            pieSeriesView2.SweepDirection = DevExpress.XtraCharts.PieSweepDirection.Counterclockwise;
            series2.View = pieSeriesView2;
            series2.Visible = false;
            this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series1,
        series2};
            this.chartControl1.SeriesTemplate.ArgumentDataMember = "Arguments";
            this.chartControl1.SeriesTemplate.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.Qualitative;
            pieSeriesLabel2.Position = DevExpress.XtraCharts.PieSeriesLabelPosition.TwoColumns;
            this.chartControl1.SeriesTemplate.Label = pieSeriesLabel2;
            this.chartControl1.SeriesTemplate.LegendTextPattern = "{A}";
            this.chartControl1.SeriesTemplate.ValueDataMembersSerializable = "Values";
            pieSeriesView3.RuntimeExploding = false;
            pieSeriesView3.SweepDirection = DevExpress.XtraCharts.PieSweepDirection.Counterclockwise;
            pieSeriesView3.Titles.AddRange(new DevExpress.XtraCharts.SeriesTitle[] {
            seriesTitle2});
            this.chartControl1.SeriesTemplate.View = pieSeriesView3;
            this.chartControl1.Size = new System.Drawing.Size(390, 535);
            this.chartControl1.TabIndex = 0;
            // 
            // m_pivot_ty_le_qua_mon
            // 
            this.m_pivot_ty_le_qua_mon.Dock = System.Windows.Forms.DockStyle.Fill;
            this.m_pivot_ty_le_qua_mon.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] {
            this.m_col_so_luong,
            this.m_col_trang_thai});
            this.m_pivot_ty_le_qua_mon.Location = new System.Drawing.Point(0, 0);
            this.m_pivot_ty_le_qua_mon.Name = "m_pivot_ty_le_qua_mon";
            this.m_pivot_ty_le_qua_mon.Size = new System.Drawing.Size(735, 445);
            this.m_pivot_ty_le_qua_mon.TabIndex = 0;
            // 
            // m_col_so_luong
            // 
            this.m_col_so_luong.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
            this.m_col_so_luong.AreaIndex = 0;
            this.m_col_so_luong.Caption = "Tổng sinh viên";
            this.m_col_so_luong.FieldName = "SoLuong";
            this.m_col_so_luong.Name = "m_col_so_luong";
            this.m_col_so_luong.SummaryDisplayType = DevExpress.Data.PivotGrid.PivotSummaryDisplayType.PercentOfColumn;
            // 
            // m_col_trang_thai
            // 
            this.m_col_trang_thai.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea;
            this.m_col_trang_thai.AreaIndex = 0;
            this.m_col_trang_thai.Caption = "Trạng thaí";
            this.m_col_trang_thai.FieldName = "TrangThai";
            this.m_col_trang_thai.Name = "m_col_trang_thai";
            // 
            // panel3
            // 
            this.panel3.Controls.Add(this.m_lb_ten_hoc_phan);
            this.panel3.Controls.Add(this.m_cbo_ky_hoc);
            this.panel3.Controls.Add(this.m_cbo_hoc_phan);
            this.panel3.Controls.Add(this.m_cmd_xuat_pdf);
            this.panel3.Controls.Add(this.label2);
            this.panel3.Controls.Add(this.m_cmd_loc);
            this.panel3.Controls.Add(this.label1);
            this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel3.Location = new System.Drawing.Point(0, 0);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(735, 90);
            this.panel3.TabIndex = 3;
            // 
            // m_lb_ten_hoc_phan
            // 
            this.m_lb_ten_hoc_phan.AutoSize = true;
            this.m_lb_ten_hoc_phan.Location = new System.Drawing.Point(373, 32);
            this.m_lb_ten_hoc_phan.Name = "m_lb_ten_hoc_phan";
            this.m_lb_ten_hoc_phan.Size = new System.Drawing.Size(74, 13);
            this.m_lb_ten_hoc_phan.TabIndex = 14;
            this.m_lb_ten_hoc_phan.Text = "Tên học phần";
            // 
            // m_cbo_ky_hoc
            // 
            this.m_cbo_ky_hoc.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.m_cbo_ky_hoc.FormattingEnabled = true;
            this.m_cbo_ky_hoc.Location = new System.Drawing.Point(49, 27);
            this.m_cbo_ky_hoc.Name = "m_cbo_ky_hoc";
            this.m_cbo_ky_hoc.Size = new System.Drawing.Size(115, 21);
            this.m_cbo_ky_hoc.TabIndex = 13;
            this.m_cbo_ky_hoc.SelectedIndexChanged += new System.EventHandler(this.m_cbo_ky_hoc_SelectedIndexChanged);
            // 
            // m_cbo_hoc_phan
            // 
            this.m_cbo_hoc_phan.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.m_cbo_hoc_phan.FormattingEnabled = true;
            this.m_cbo_hoc_phan.Location = new System.Drawing.Point(246, 27);
            this.m_cbo_hoc_phan.Name = "m_cbo_hoc_phan";
            this.m_cbo_hoc_phan.Size = new System.Drawing.Size(111, 21);
            this.m_cbo_hoc_phan.TabIndex = 13;
            this.m_cbo_hoc_phan.SelectedIndexChanged += new System.EventHandler(this.m_cbo_hoc_phan_SelectedIndexChanged);
            // 
            // m_cmd_xuat_pdf
            // 
            this.m_cmd_xuat_pdf.Image = ((System.Drawing.Image)(resources.GetObject("m_cmd_xuat_pdf.Image")));
            this.m_cmd_xuat_pdf.Location = new System.Drawing.Point(640, 19);
            this.m_cmd_xuat_pdf.Name = "m_cmd_xuat_pdf";
            this.m_cmd_xuat_pdf.Size = new System.Drawing.Size(89, 37);
            this.m_cmd_xuat_pdf.TabIndex = 12;
            this.m_cmd_xuat_pdf.Text = "Xuất PDF";
            this.m_cmd_xuat_pdf.Click += new System.EventHandler(this.m_cmd_xuat_pdf_Click);
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(3, 32);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(40, 13);
            this.label2.TabIndex = 10;
            this.label2.Text = "Kỳ học";
            // 
            // m_cmd_loc
            // 
            this.m_cmd_loc.Image = ((System.Drawing.Image)(resources.GetObject("m_cmd_loc.Image")));
            this.m_cmd_loc.Location = new System.Drawing.Point(537, 19);
            this.m_cmd_loc.Name = "m_cmd_loc";
            this.m_cmd_loc.Size = new System.Drawing.Size(82, 37);
            this.m_cmd_loc.TabIndex = 11;
            this.m_cmd_loc.Text = "Lọc";
            this.m_cmd_loc.Click += new System.EventHandler(this.m_cmd_loc_Click);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(170, 31);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(70, 13);
            this.label1.TabIndex = 10;
            this.label1.Text = "Mã học phần";
            // 
            // panel4
            // 
            this.panel4.Controls.Add(this.m_pivot_ty_le_qua_mon);
            this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel4.Location = new System.Drawing.Point(0, 90);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(735, 445);
            this.panel4.TabIndex = 3;
            // 
            // f9908_bieu_do_ty_le_qua_mon
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1125, 535);
            this.Controls.Add(this.panel4);
            this.Controls.Add(this.panel3);
            this.Controls.Add(this.panel1);
            this.Name = "f9908_bieu_do_ty_le_qua_mon";
            this.Text = "Tỷ lệ kết quả theo môn học";
            this.Load += new System.EventHandler(this.f9908_bieu_do_ty_le_qua_mon_Load);
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(simpleDiagram1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pieSeriesView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.m_pivot_ty_le_qua_mon)).EndInit();
            this.panel3.ResumeLayout(false);
            this.panel3.PerformLayout();
            this.panel4.ResumeLayout(false);
            this.ResumeLayout(false);

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraCharts.Series         series1         = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.PieSeriesLabel pieSeriesLabel1 = new DevExpress.XtraCharts.PieSeriesLabel();
     DevExpress.XtraCharts.SeriesPoint    seriesPoint1    = new DevExpress.XtraCharts.SeriesPoint(1D, new object[] {
         ((object)(2D))
     }, 0);
     DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint(2D, new object[] {
         ((object)(3D))
     }, 1);
     DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint(4D, new object[] {
         ((object)(4D))
     }, 2);
     DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint(5D, new object[] {
         ((object)(3D))
     }, 3);
     DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint(6D, new object[] {
         ((object)(8D))
     }, 4);
     DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint(7D, new object[] {
         ((object)(5D))
     }, 5);
     DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint(8D, new object[] {
         ((object)(6D))
     }, 6);
     DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint(9D, new object[] {
         ((object)(4D))
     }, 7);
     DevExpress.XtraCharts.SeriesPoint seriesPoint9 = new DevExpress.XtraCharts.SeriesPoint(10D, new object[] {
         ((object)(3D))
     }, 8);
     DevExpress.XtraCharts.SeriesPoint seriesPoint10 = new DevExpress.XtraCharts.SeriesPoint(11D, new object[] {
         ((object)(2D))
     }, 9);
     DevExpress.XtraCharts.SeriesPoint seriesPoint11 = new DevExpress.XtraCharts.SeriesPoint(12D, new object[] {
         ((object)(3D))
     }, 10);
     DevExpress.XtraCharts.SeriesPoint seriesPoint12 = new DevExpress.XtraCharts.SeriesPoint(13D, new object[] {
         ((object)(2D))
     }, 11);
     DevExpress.XtraCharts.SeriesPoint seriesPoint13 = new DevExpress.XtraCharts.SeriesPoint(14D, new object[] {
         ((object)(4D))
     }, 12);
     DevExpress.XtraCharts.SeriesPoint seriesPoint14 = new DevExpress.XtraCharts.SeriesPoint(15D, new object[] {
         ((object)(5D))
     }, 13);
     DevExpress.XtraCharts.SeriesPoint seriesPoint15 = new DevExpress.XtraCharts.SeriesPoint(16D, new object[] {
         ((object)(6D))
     }, 14);
     DevExpress.XtraCharts.SeriesPoint seriesPoint16 = new DevExpress.XtraCharts.SeriesPoint(17D, new object[] {
         ((object)(3D))
     }, 15);
     DevExpress.XtraCharts.SeriesPoint seriesPoint17 = new DevExpress.XtraCharts.SeriesPoint(18D, new object[] {
         ((object)(1D))
     }, 16);
     DevExpress.XtraCharts.SeriesPoint seriesPoint18 = new DevExpress.XtraCharts.SeriesPoint(19D, new object[] {
         ((object)(3D))
     }, 17);
     DevExpress.XtraCharts.SeriesPoint seriesPoint19 = new DevExpress.XtraCharts.SeriesPoint(20D, new object[] {
         ((object)(5D))
     }, 18);
     DevExpress.XtraCharts.SeriesPoint seriesPoint20 = new DevExpress.XtraCharts.SeriesPoint(21D, new object[] {
         ((object)(1D))
     }, 19);
     DevExpress.XtraCharts.SeriesPoint seriesPoint21 = new DevExpress.XtraCharts.SeriesPoint(22D, new object[] {
         ((object)(4D))
     }, 20);
     DevExpress.XtraCharts.PieSeriesView            pieSeriesView1            = new DevExpress.XtraCharts.PieSeriesView();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel1 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pieSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel1)).BeginInit();
     this.SuspendLayout();
     //
     // chartControl1
     //
     this.chartControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.chartControl1.Legend.Visibility = DevExpress.Utils.DefaultBoolean.False;
     this.chartControl1.Location          = new System.Drawing.Point(0, 0);
     this.chartControl1.Name        = "chartControl1";
     this.chartControl1.PaletteName = "Opulent";
     pieSeriesLabel1.LineVisibility = DevExpress.Utils.DefaultBoolean.True;
     series1.Label             = pieSeriesLabel1;
     series1.LabelsVisibility  = DevExpress.Utils.DefaultBoolean.False;
     series1.LegendTextPattern = "{A}: {VP:P0}";
     series1.Name = "Series 1";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint1,
         seriesPoint2,
         seriesPoint3,
         seriesPoint4,
         seriesPoint5,
         seriesPoint6,
         seriesPoint7,
         seriesPoint8,
         seriesPoint9,
         seriesPoint10,
         seriesPoint11,
         seriesPoint12,
         seriesPoint13,
         seriesPoint14,
         seriesPoint15,
         seriesPoint16,
         seriesPoint17,
         seriesPoint18,
         seriesPoint19,
         seriesPoint20,
         seriesPoint21
     });
     series1.TopNOptions.Enabled          = true;
     series1.TopNOptions.Mode             = DevExpress.XtraCharts.TopNMode.ThresholdPercent;
     series1.TopNOptions.ShowOthers       = false;
     series1.TopNOptions.ThresholdPercent = 7D;
     series1.TopNOptions.ThresholdValue   = 5D;
     series1.View = pieSeriesView1;
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
         series1
     };
     sideBySideBarSeriesLabel1.LineVisibility = DevExpress.Utils.DefaultBoolean.True;
     this.chartControl1.SeriesTemplate.Label  = sideBySideBarSeriesLabel1;
     this.chartControl1.Size     = new System.Drawing.Size(520, 295);
     this.chartControl1.TabIndex = 0;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(520, 295);
     this.Controls.Add(this.chartControl1);
     this.Name  = "Form1";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pieSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     this.ResumeLayout(false);
 }
Example #43
0
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            DevExpress.XtraCharts.XYDiagram xyDiagram2 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.Series series4 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SeriesPoint seriesPoint16 = new DevExpress.XtraCharts.SeriesPoint("aaa", new object[] {
            ((object)(2D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint17 = new DevExpress.XtraCharts.SeriesPoint("bbb", new object[] {
            ((object)(4.5D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint18 = new DevExpress.XtraCharts.SeriesPoint("ccc", new object[] {
            ((object)(7.7D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint19 = new DevExpress.XtraCharts.SeriesPoint("ddd", new object[] {
            ((object)(1.6D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint20 = new DevExpress.XtraCharts.SeriesPoint("eee", new object[] {
            ((object)(8.9D))});
            DevExpress.XtraCharts.Series series5 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SeriesPoint seriesPoint21 = new DevExpress.XtraCharts.SeriesPoint("aaa", new object[] {
            ((object)(8D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint22 = new DevExpress.XtraCharts.SeriesPoint("bbb", new object[] {
            ((object)(10D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint23 = new DevExpress.XtraCharts.SeriesPoint("ccc", new object[] {
            ((object)(7.3D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint24 = new DevExpress.XtraCharts.SeriesPoint("ddd", new object[] {
            ((object)(3.3D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint25 = new DevExpress.XtraCharts.SeriesPoint("eee", new object[] {
            ((object)(7.9D))});
            DevExpress.XtraCharts.Series series6 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SeriesPoint seriesPoint26 = new DevExpress.XtraCharts.SeriesPoint("aaa", new object[] {
            ((object)(1.2D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint27 = new DevExpress.XtraCharts.SeriesPoint("bbb", new object[] {
            ((object)(7.5D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint28 = new DevExpress.XtraCharts.SeriesPoint("ccc", new object[] {
            ((object)(2.5D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint29 = new DevExpress.XtraCharts.SeriesPoint("ddd", new object[] {
            ((object)(6.9D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint30 = new DevExpress.XtraCharts.SeriesPoint("eee", new object[] {
            ((object)(3.7D))});
            DevExpress.XtraCharts.ChartTitle chartTitle2 = new DevExpress.XtraCharts.ChartTitle();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UcStatistic));
            this.splashScreenManager = new DevExpress.XtraSplashScreen.SplashScreenManager(this, typeof(global::PowerPOS.FmWait), true, true, typeof(System.Windows.Forms.UserControl));
            this.miPrintReceipt = new System.Windows.Forms.ToolStripMenuItem();
            this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
            this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.miDetail = new System.Windows.Forms.ToolStripMenuItem();
            this.navBarControl1 = new DevExpress.XtraNavBar.NavBarControl();
            this.navBarGroup1 = new DevExpress.XtraNavBar.NavBarGroup();
            this.navBarGroupControlContainer2 = new DevExpress.XtraNavBar.NavBarGroupControlContainer();
            this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
            this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
            this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
            this.cbbDataType = new DevExpress.XtraEditors.ComboBoxEdit();
            this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
            this.lblTime = new DevExpress.XtraEditors.LabelControl();
            this.cbbBackward = new DevExpress.XtraEditors.ComboBoxEdit();
            this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
            this.cbbTime = new DevExpress.XtraEditors.ComboBoxEdit();
            this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
            this.chkShowCurrentMonth = new DevExpress.XtraEditors.CheckEdit();
            this.btnSearch = new DevExpress.XtraEditors.SimpleButton();
            this.cbbCustomerType = new DevExpress.XtraEditors.ComboBoxEdit();
            this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.contextMenuStrip2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
            this.navBarControl1.SuspendLayout();
            this.navBarGroupControlContainer2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
            this.panelControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
            this.groupControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbbDataType.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbbBackward.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbbTime.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chkShowCurrentMonth.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbbCustomerType.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            this.panelControl1.SuspendLayout();
            this.SuspendLayout();
            // 
            // splashScreenManager
            // 
            this.splashScreenManager.ClosingDelay = 500;
            // 
            // miPrintReceipt
            // 
            this.miPrintReceipt.Image = global::PowerPOS.Properties.Resources.printer;
            this.miPrintReceipt.Name = "miPrintReceipt";
            this.miPrintReceipt.Size = new System.Drawing.Size(157, 22);
            this.miPrintReceipt.Text = "พิมพ์ใบเสร็จรับเงิน";
            // 
            // contextMenuStrip2
            // 
            this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.miPrintReceipt,
            this.miDetail});
            this.contextMenuStrip2.Name = "contextMenuStrip2";
            this.contextMenuStrip2.Size = new System.Drawing.Size(158, 48);
            // 
            // miDetail
            // 
            this.miDetail.Image = global::PowerPOS.Properties.Resources.table_money;
            this.miDetail.Name = "miDetail";
            this.miDetail.Size = new System.Drawing.Size(157, 22);
            this.miDetail.Text = "รายละเอียดการขาย";
            // 
            // navBarControl1
            // 
            this.navBarControl1.ActiveGroup = this.navBarGroup1;
            this.navBarControl1.Appearance.NavigationPaneHeader.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.navBarControl1.Appearance.NavigationPaneHeader.Options.UseFont = true;
            this.navBarControl1.Controls.Add(this.navBarGroupControlContainer2);
            this.navBarControl1.Dock = System.Windows.Forms.DockStyle.Left;
            this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
            this.navBarGroup1});
            this.navBarControl1.Location = new System.Drawing.Point(0, 0);
            this.navBarControl1.Name = "navBarControl1";
            this.navBarControl1.OptionsNavPane.ExpandedWidth = 263;
            this.navBarControl1.OptionsNavPane.ShowOverflowPanel = false;
            this.navBarControl1.PaintStyleKind = DevExpress.XtraNavBar.NavBarViewKind.NavigationPane;
            this.navBarControl1.Size = new System.Drawing.Size(263, 479);
            this.navBarControl1.TabIndex = 5;
            this.navBarControl1.Text = "navBarControl1";
            // 
            // navBarGroup1
            // 
            this.navBarGroup1.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.navBarGroup1.Appearance.Options.UseFont = true;
            this.navBarGroup1.Caption = "รายงานสถิติ";
            this.navBarGroup1.ControlContainer = this.navBarGroupControlContainer2;
            this.navBarGroup1.Expanded = true;
            this.navBarGroup1.GroupClientHeight = 80;
            this.navBarGroup1.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.ControlContainer;
            this.navBarGroup1.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.LargeImage")));
            this.navBarGroup1.Name = "navBarGroup1";
            // 
            // navBarGroupControlContainer2
            // 
            this.navBarGroupControlContainer2.Appearance.BackColor = System.Drawing.SystemColors.Control;
            this.navBarGroupControlContainer2.Appearance.Options.UseBackColor = true;
            this.navBarGroupControlContainer2.Controls.Add(this.panelControl2);
            this.navBarGroupControlContainer2.Name = "navBarGroupControlContainer2";
            this.navBarGroupControlContainer2.Size = new System.Drawing.Size(263, 393);
            this.navBarGroupControlContainer2.TabIndex = 1;
            // 
            // panelControl2
            // 
            this.panelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 9.5F);
            this.panelControl2.Appearance.Options.UseFont = true;
            this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.panelControl2.Controls.Add(this.groupControl1);
            this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelControl2.Location = new System.Drawing.Point(0, 0);
            this.panelControl2.Name = "panelControl2";
            this.panelControl2.Padding = new System.Windows.Forms.Padding(3);
            this.panelControl2.Size = new System.Drawing.Size(263, 393);
            this.panelControl2.TabIndex = 0;
            // 
            // groupControl1
            // 
            this.groupControl1.Controls.Add(this.cbbCustomerType);
            this.groupControl1.Controls.Add(this.labelControl3);
            this.groupControl1.Controls.Add(this.btnSearch);
            this.groupControl1.Controls.Add(this.chkShowCurrentMonth);
            this.groupControl1.Controls.Add(this.lblTime);
            this.groupControl1.Controls.Add(this.cbbBackward);
            this.groupControl1.Controls.Add(this.labelControl2);
            this.groupControl1.Controls.Add(this.cbbTime);
            this.groupControl1.Controls.Add(this.labelControl1);
            this.groupControl1.Controls.Add(this.cbbDataType);
            this.groupControl1.Controls.Add(this.labelControl4);
            this.groupControl1.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl1.Location = new System.Drawing.Point(3, 3);
            this.groupControl1.Name = "groupControl1";
            this.groupControl1.Size = new System.Drawing.Size(257, 161);
            this.groupControl1.TabIndex = 0;
            this.groupControl1.Text = "ค้นหาข้อมูล";
            // 
            // chartControl1
            // 
            xyDiagram2.AxisX.AutoScaleBreaks.Enabled = true;
            xyDiagram2.AxisX.CrosshairAxisLabelOptions.Visibility = DevExpress.Utils.DefaultBoolean.False;
            xyDiagram2.AxisX.Tickmarks.MinorVisible = false;
            xyDiagram2.AxisX.VisibleInPanesSerializable = "-1";
            xyDiagram2.AxisY.Label.TextPattern = "{V:#,#}";
            xyDiagram2.AxisY.VisibleInPanesSerializable = "-1";
            this.chartControl1.Diagram = xyDiagram2;
            this.chartControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.chartControl1.Location = new System.Drawing.Point(2, 2);
            this.chartControl1.Name = "chartControl1";
            series4.Name = "มกรา";
            series4.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint16,
            seriesPoint17,
            seriesPoint18,
            seriesPoint19,
            seriesPoint20});
            series5.Name = "กุมภา";
            series5.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint21,
            seriesPoint22,
            seriesPoint23,
            seriesPoint24,
            seriesPoint25});
            series6.Name = "มีนา";
            series6.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint26,
            seriesPoint27,
            seriesPoint28,
            seriesPoint29,
            seriesPoint30});
            this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series4,
        series5,
        series6};
            this.chartControl1.Size = new System.Drawing.Size(833, 475);
            this.chartControl1.TabIndex = 6;
            chartTitle2.Font = new System.Drawing.Font("DilleniaUPC", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            chartTitle2.Text = "กราฟแสดง";
            this.chartControl1.Titles.AddRange(new DevExpress.XtraCharts.ChartTitle[] {
            chartTitle2});
            this.chartControl1.Visible = false;
            // 
            // cbbDataType
            // 
            this.cbbDataType.EditValue = "ยอดขาย";
            this.cbbDataType.Location = new System.Drawing.Point(63, 50);
            this.cbbDataType.Name = "cbbDataType";
            this.cbbDataType.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.5F);
            this.cbbDataType.Properties.Appearance.Options.UseFont = true;
            this.cbbDataType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cbbDataType.Properties.Items.AddRange(new object[] {
            "ยอดขาย",
            "จำนวนชิ้น",
            "กำไร",
            "ต้นทุนเฉลี่ยต่อชิ้น",
            "ราคาขายเฉลี่ยต่อชิ้น",
            "กำไรเฉลี่ยต่อชิ้น"});
            this.cbbDataType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.cbbDataType.Size = new System.Drawing.Size(164, 22);
            this.cbbDataType.TabIndex = 14;
            // 
            // labelControl4
            // 
            this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 9.5F);
            this.labelControl4.Location = new System.Drawing.Point(27, 53);
            this.labelControl4.Name = "labelControl4";
            this.labelControl4.Size = new System.Drawing.Size(32, 16);
            this.labelControl4.TabIndex = 13;
            this.labelControl4.Text = "ข้อมูล";
            // 
            // lblTime
            // 
            this.lblTime.Appearance.Font = new System.Drawing.Font("Tahoma", 9.5F);
            this.lblTime.Location = new System.Drawing.Point(141, 107);
            this.lblTime.Name = "lblTime";
            this.lblTime.Size = new System.Drawing.Size(28, 16);
            this.lblTime.TabIndex = 19;
            this.lblTime.Text = "เดือน";
            // 
            // cbbBackward
            // 
            this.cbbBackward.EditValue = "3";
            this.cbbBackward.Location = new System.Drawing.Point(63, 104);
            this.cbbBackward.Name = "cbbBackward";
            this.cbbBackward.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.5F);
            this.cbbBackward.Properties.Appearance.Options.UseFont = true;
            this.cbbBackward.Properties.Appearance.Options.UseTextOptions = true;
            this.cbbBackward.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.cbbBackward.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cbbBackward.Properties.Items.AddRange(new object[] {
            "0",
            "1",
            "2",
            "3",
            "4",
            "5",
            "6",
            "7",
            "8",
            "9",
            "10",
            "11",
            "12"});
            this.cbbBackward.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.cbbBackward.Size = new System.Drawing.Size(72, 22);
            this.cbbBackward.TabIndex = 18;
            // 
            // labelControl2
            // 
            this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 9.5F);
            this.labelControl2.Location = new System.Drawing.Point(13, 107);
            this.labelControl2.Name = "labelControl2";
            this.labelControl2.Size = new System.Drawing.Size(46, 16);
            this.labelControl2.TabIndex = 17;
            this.labelControl2.Text = "ย้อนหลัง";
            // 
            // cbbTime
            // 
            this.cbbTime.EditValue = "รายเดือน";
            this.cbbTime.Enabled = false;
            this.cbbTime.Location = new System.Drawing.Point(63, 76);
            this.cbbTime.Name = "cbbTime";
            this.cbbTime.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.5F);
            this.cbbTime.Properties.Appearance.Options.UseFont = true;
            this.cbbTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cbbTime.Properties.Items.AddRange(new object[] {
            "รายวัน",
            "รายสัปดาห์",
            "รายเดือน"});
            this.cbbTime.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.cbbTime.Size = new System.Drawing.Size(164, 22);
            this.cbbTime.TabIndex = 16;
            // 
            // labelControl1
            // 
            this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 9.5F);
            this.labelControl1.Location = new System.Drawing.Point(15, 79);
            this.labelControl1.Name = "labelControl1";
            this.labelControl1.Size = new System.Drawing.Size(44, 16);
            this.labelControl1.TabIndex = 15;
            this.labelControl1.Text = "ช่วงเวลา";
            // 
            // chkShowCurrentMonth
            // 
            this.chkShowCurrentMonth.EditValue = true;
            this.chkShowCurrentMonth.Location = new System.Drawing.Point(63, 129);
            this.chkShowCurrentMonth.Name = "chkShowCurrentMonth";
            this.chkShowCurrentMonth.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.5F);
            this.chkShowCurrentMonth.Properties.Appearance.Options.UseFont = true;
            this.chkShowCurrentMonth.Properties.Caption = "แสดงเดือนปัจจุบัน";
            this.chkShowCurrentMonth.Properties.GlyphAlignment = DevExpress.Utils.HorzAlignment.Default;
            this.chkShowCurrentMonth.Size = new System.Drawing.Size(138, 20);
            this.chkShowCurrentMonth.TabIndex = 20;
            this.chkShowCurrentMonth.CheckedChanged += new System.EventHandler(this.chkShowCurrentMonth_CheckedChanged);
            // 
            // btnSearch
            // 
            this.btnSearch.AllowGlyphSkinning = DevExpress.Utils.DefaultBoolean.True;
            this.btnSearch.Image = ((System.Drawing.Image)(resources.GetObject("btnSearch.Image")));
            this.btnSearch.Location = new System.Drawing.Point(202, 104);
            this.btnSearch.Name = "btnSearch";
            this.btnSearch.Size = new System.Drawing.Size(25, 23);
            this.btnSearch.TabIndex = 21;
            // 
            // cbbCustomerType
            // 
            this.cbbCustomerType.EditValue = "ทั้งหมด";
            this.cbbCustomerType.Location = new System.Drawing.Point(63, 25);
            this.cbbCustomerType.Name = "cbbCustomerType";
            this.cbbCustomerType.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.5F);
            this.cbbCustomerType.Properties.Appearance.Options.UseFont = true;
            this.cbbCustomerType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cbbCustomerType.Properties.Items.AddRange(new object[] {
            "ทั้งหมด",
            "องค์กร"});
            this.cbbCustomerType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.cbbCustomerType.Size = new System.Drawing.Size(164, 22);
            this.cbbCustomerType.TabIndex = 23;
            // 
            // labelControl3
            // 
            this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 9.5F);
            this.labelControl3.Location = new System.Drawing.Point(29, 28);
            this.labelControl3.Name = "labelControl3";
            this.labelControl3.Size = new System.Drawing.Size(30, 16);
            this.labelControl3.TabIndex = 22;
            this.labelControl3.Text = "ลูกค้า";
            // 
            // panelControl1
            // 
            this.panelControl1.Controls.Add(this.chartControl1);
            this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelControl1.Location = new System.Drawing.Point(263, 0);
            this.panelControl1.Name = "panelControl1";
            this.panelControl1.Size = new System.Drawing.Size(837, 479);
            this.panelControl1.TabIndex = 7;
            // 
            // UcStatistic
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.panelControl1);
            this.Controls.Add(this.navBarControl1);
            this.Name = "UcStatistic";
            this.Size = new System.Drawing.Size(1100, 479);
            this.Load += new System.EventHandler(this.UcStatistic_Load);
            this.contextMenuStrip2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
            this.navBarControl1.ResumeLayout(false);
            this.navBarGroupControlContainer2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
            this.panelControl2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
            this.groupControl1.ResumeLayout(false);
            this.groupControl1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbbDataType.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbbBackward.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbbTime.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chkShowCurrentMonth.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbbCustomerType.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            this.panelControl1.ResumeLayout(false);
            this.ResumeLayout(false);

        }
Example #44
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraCharts.XYDiagram xyDiagram5 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series    series17   = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel21 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SeriesPoint seriesPoint65 = new DevExpress.XtraCharts.SeriesPoint("2012", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint66 = new DevExpress.XtraCharts.SeriesPoint("2013", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint67 = new DevExpress.XtraCharts.SeriesPoint("2014", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint68 = new DevExpress.XtraCharts.SeriesPoint("2015", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.Series series18 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel22 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SeriesPoint seriesPoint69 = new DevExpress.XtraCharts.SeriesPoint("2012", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint70 = new DevExpress.XtraCharts.SeriesPoint("2013", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint71 = new DevExpress.XtraCharts.SeriesPoint("2014", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint72 = new DevExpress.XtraCharts.SeriesPoint("2015", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.Series series19 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel23 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SeriesPoint seriesPoint73 = new DevExpress.XtraCharts.SeriesPoint("2012", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint74 = new DevExpress.XtraCharts.SeriesPoint("2013", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint75 = new DevExpress.XtraCharts.SeriesPoint("2014", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint76 = new DevExpress.XtraCharts.SeriesPoint("2015", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.Series series20 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel24 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SeriesPoint seriesPoint77 = new DevExpress.XtraCharts.SeriesPoint("2012", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint78 = new DevExpress.XtraCharts.SeriesPoint("2013", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint79 = new DevExpress.XtraCharts.SeriesPoint("2014", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint80 = new DevExpress.XtraCharts.SeriesPoint("2015", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel25 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.ChartTitle chartTitle5 = new DevExpress.XtraCharts.ChartTitle();
     DevExpress.XtraCharts.XYDiagram  xyDiagram6  = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series     series21    = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel26 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SeriesPoint seriesPoint81 = new DevExpress.XtraCharts.SeriesPoint("2012", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint82 = new DevExpress.XtraCharts.SeriesPoint("2013", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint83 = new DevExpress.XtraCharts.SeriesPoint("2014", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint84 = new DevExpress.XtraCharts.SeriesPoint("2015", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.Series series22 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel27 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SeriesPoint seriesPoint85 = new DevExpress.XtraCharts.SeriesPoint("2012", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint86 = new DevExpress.XtraCharts.SeriesPoint("2013", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint87 = new DevExpress.XtraCharts.SeriesPoint("2014", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint88 = new DevExpress.XtraCharts.SeriesPoint("2015", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.Series series23 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel28 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SeriesPoint seriesPoint89 = new DevExpress.XtraCharts.SeriesPoint("2012", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint90 = new DevExpress.XtraCharts.SeriesPoint("2013", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint91 = new DevExpress.XtraCharts.SeriesPoint("2014", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint92 = new DevExpress.XtraCharts.SeriesPoint("2015", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.Series series24 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel29 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SeriesPoint seriesPoint93 = new DevExpress.XtraCharts.SeriesPoint("2012", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint94 = new DevExpress.XtraCharts.SeriesPoint("2013", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint95 = new DevExpress.XtraCharts.SeriesPoint("2014", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint96 = new DevExpress.XtraCharts.SeriesPoint("2015", new object[] {
         ((object)(0D))
     });
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel30 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.ChartTitle chartTitle6 = new DevExpress.XtraCharts.ChartTitle();
     this.ribbon                 = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.barButtonItem1         = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2         = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonPage1            = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1       = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup2       = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonStatusBar        = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.gridView1              = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.splitContainer1        = new System.Windows.Forms.SplitContainer();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.chartControl2          = new DevExpress.XtraCharts.ChartControl();
     this.chartControl1          = new DevExpress.XtraCharts.ChartControl();
     this.gridControl1           = new DevExpress.XtraGrid.GridControl();
     this.advBandedGridView1     = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
     this.gridBand1              = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.saveFileDialog         = new System.Windows.Forms.SaveFileDialog();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series17)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel21)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series18)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series19)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series20)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel24)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel25)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series21)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel26)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel27)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel28)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series24)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel29)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel30)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).BeginInit();
     this.SuspendLayout();
     //
     // ribbon
     //
     this.ribbon.ExpandCollapseItem.Id   = 0;
     this.ribbon.ExpandCollapseItem.Name = "";
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.ribbon.ExpandCollapseItem,
         this.barButtonItem1,
         this.barButtonItem2
     });
     this.ribbon.Location  = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 3;
     this.ribbon.Name      = "ribbon";
     this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
         this.ribbonPage1
     });
     this.ribbon.Size      = new System.Drawing.Size(869, 147);
     this.ribbon.StatusBar = this.ribbonStatusBar;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption    = "查询历史排名";
     this.barButtonItem1.Id         = 1;
     this.barButtonItem1.LargeGlyph = global::FuelDataSysClient.Properties.Resources.barBtn_history;
     this.barButtonItem1.Name       = "barButtonItem1";
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption    = "导出Excel";
     this.barButtonItem2.Id         = 2;
     this.barButtonItem2.LargeGlyph = global::FuelDataSysClient.Properties.Resources.barBtn_ExportExcel;
     this.barButtonItem2.Name       = "barButtonItem2";
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem2_ItemClick);
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup1,
         this.ribbonPageGroup2
     });
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "操作";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem1);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "查询";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem2);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.Text = "导出";
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 519);
     this.ribbonStatusBar.Name     = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon   = this.ribbon;
     this.ribbonStatusBar.Size     = new System.Drawing.Size(869, 31);
     //
     // gridView1
     //
     this.gridView1.Name = "gridView1";
     //
     // splitContainer1
     //
     this.splitContainer1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location    = new System.Drawing.Point(0, 147);
     this.splitContainer1.Name        = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.splitContainerControl1);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.gridControl1);
     this.splitContainer1.Size             = new System.Drawing.Size(869, 372);
     this.splitContainer1.SplitterDistance = 174;
     this.splitContainer1.TabIndex         = 9;
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.FixedPanel = DevExpress.XtraEditors.SplitFixedPanel.None;
     this.splitContainerControl1.Location   = new System.Drawing.Point(0, 0);
     this.splitContainerControl1.Name       = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.chartControl2);
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Controls.Add(this.chartControl1);
     this.splitContainerControl1.Panel2.Text      = "Panel2";
     this.splitContainerControl1.Size             = new System.Drawing.Size(869, 174);
     this.splitContainerControl1.SplitterPosition = 421;
     this.splitContainerControl1.TabIndex         = 4;
     this.splitContainerControl1.Text             = "splitContainerControl1";
     //
     // chartControl2
     //
     xyDiagram5.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram5.AxisX.Range.SideMarginsEnabled   = true;
     xyDiagram5.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram5.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram5.AxisY.Range.SideMarginsEnabled   = true;
     xyDiagram5.AxisY.VisibleInPanesSerializable = "-1";
     this.chartControl2.Diagram             = xyDiagram5;
     this.chartControl2.Dock                = System.Windows.Forms.DockStyle.Fill;
     this.chartControl2.Location            = new System.Drawing.Point(0, 0);
     this.chartControl2.Name                = "chartControl2";
     sideBySideBarSeriesLabel21.LineVisible = true;
     series17.Label = sideBySideBarSeriesLabel21;
     series17.Name  = "行业平均值";
     series17.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint65,
         seriesPoint66,
         seriesPoint67,
         seriesPoint68
     });
     sideBySideBarSeriesLabel22.LineVisible = true;
     series18.Label = sideBySideBarSeriesLabel22;
     series18.Name  = "实计值";
     series18.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint69,
         seriesPoint70,
         seriesPoint71,
         seriesPoint72
     });
     sideBySideBarSeriesLabel23.LineVisible = true;
     series19.Label = sideBySideBarSeriesLabel23;
     series19.Name  = "目标值";
     series19.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint73,
         seriesPoint74,
         seriesPoint75,
         seriesPoint76
     });
     sideBySideBarSeriesLabel24.LineVisible = true;
     series20.Label = sideBySideBarSeriesLabel24;
     series20.Name  = "达标值";
     series20.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint77,
         seriesPoint78,
         seriesPoint79,
         seriesPoint80
     });
     this.chartControl2.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
         series17,
         series18,
         series19,
         series20
     };
     sideBySideBarSeriesLabel25.LineVisible  = true;
     this.chartControl2.SeriesTemplate.Label = sideBySideBarSeriesLabel25;
     this.chartControl2.Size     = new System.Drawing.Size(421, 174);
     this.chartControl2.TabIndex = 10;
     chartTitle5.Text            = "不计新能源";
     this.chartControl2.Titles.AddRange(new DevExpress.XtraCharts.ChartTitle[] {
         chartTitle5
     });
     //
     // chartControl1
     //
     xyDiagram6.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram6.AxisX.Range.SideMarginsEnabled   = true;
     xyDiagram6.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram6.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram6.AxisY.Range.SideMarginsEnabled   = true;
     xyDiagram6.AxisY.VisibleInPanesSerializable = "-1";
     this.chartControl1.Diagram             = xyDiagram6;
     this.chartControl1.Dock                = System.Windows.Forms.DockStyle.Fill;
     this.chartControl1.Location            = new System.Drawing.Point(0, 0);
     this.chartControl1.Name                = "chartControl1";
     sideBySideBarSeriesLabel26.LineVisible = true;
     series21.Label = sideBySideBarSeriesLabel26;
     series21.Name  = "行业平均值";
     series21.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint81,
         seriesPoint82,
         seriesPoint83,
         seriesPoint84
     });
     sideBySideBarSeriesLabel27.LineVisible = true;
     series22.Label = sideBySideBarSeriesLabel27;
     series22.Name  = "实计值";
     series22.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint85,
         seriesPoint86,
         seriesPoint87,
         seriesPoint88
     });
     sideBySideBarSeriesLabel28.LineVisible = true;
     series23.Label = sideBySideBarSeriesLabel28;
     series23.Name  = "目标值";
     series23.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint89,
         seriesPoint90,
         seriesPoint91,
         seriesPoint92
     });
     sideBySideBarSeriesLabel29.LineVisible = true;
     series24.Label = sideBySideBarSeriesLabel29;
     series24.Name  = "达标值";
     series24.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint93,
         seriesPoint94,
         seriesPoint95,
         seriesPoint96
     });
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
         series21,
         series22,
         series23,
         series24
     };
     sideBySideBarSeriesLabel30.LineVisible  = true;
     this.chartControl1.SeriesTemplate.Label = sideBySideBarSeriesLabel30;
     this.chartControl1.Size     = new System.Drawing.Size(443, 174);
     this.chartControl1.TabIndex = 11;
     chartTitle6.Text            = "计入新能源";
     this.chartControl1.Titles.AddRange(new DevExpress.XtraCharts.ChartTitle[] {
         chartTitle6
     });
     //
     // gridControl1
     //
     this.gridControl1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.Location    = new System.Drawing.Point(0, 0);
     this.gridControl1.MainView    = this.advBandedGridView1;
     this.gridControl1.MenuManager = this.ribbon;
     this.gridControl1.Name        = "gridControl1";
     this.gridControl1.Size        = new System.Drawing.Size(869, 194);
     this.gridControl1.TabIndex    = 4;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.advBandedGridView1
     });
     //
     // advBandedGridView1
     //
     this.advBandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
         this.gridBand1
     });
     this.advBandedGridView1.GridControl = this.gridControl1;
     this.advBandedGridView1.Name        = "advBandedGridView1";
     //
     // gridBand1
     //
     this.gridBand1.Caption = "gridBand1";
     this.gridBand1.Name    = "gridBand1";
     //
     // saveFileDialog
     //
     this.saveFileDialog.FileName = "油耗历史变化";
     this.saveFileDialog.Filter   = "Excel文件(*.xls)|*.xls";
     this.saveFileDialog.Title    = "导出Excel";
     //
     // FuelHistoryForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(869, 550);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.ribbon);
     this.Name      = "FuelHistoryForm";
     this.Ribbon    = this.ribbon;
     this.StatusBar = this.ribbonStatusBar;
     this.Text      = "油耗历史变化";
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(xyDiagram5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel21)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series17)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series18)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series19)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel24)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series20)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel25)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel26)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series21)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel27)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel28)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel29)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series24)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel30)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraCharts.XYDiagram   xyDiagram1   = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series      series1      = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("Nivel 0", new object[] {
         ((object)(10D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("Nivel 1", new object[] {
         ((object)(20D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("Nivel 2", new object[] {
         ((object)(40D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("Nivel 3", new object[] {
         ((object)(60D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint("Nivel 4", new object[] {
         ((object)(80D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint("Nivel 5", new object[] {
         ((object)(100D))
     });
     this.label1           = new System.Windows.Forms.Label();
     this.label4           = new System.Windows.Forms.Label();
     this.grdcProcesos     = new DevExpress.XtraGrid.GridControl();
     this.grdProcesos      = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colidProceso     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNombreProceso = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colN0            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colN1            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colN2            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colN3            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colN4            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colN5            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chartDatos       = new DevExpress.XtraCharts.ChartControl();
     ((System.ComponentModel.ISupportInitialize)(this.grdcProcesos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdProcesos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartDatos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font     = new System.Drawing.Font("Arial Black", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(12, 9);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(119, 30);
     this.label1.TabIndex = 6;
     this.label1.Text     = "Procesos";
     //
     // label4
     //
     this.label4.AutoSize  = true;
     this.label4.Font      = new System.Drawing.Font("Arial Black", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.Blue;
     this.label4.Location  = new System.Drawing.Point(13, 39);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(301, 23);
     this.label4.TabIndex  = 8;
     this.label4.Text      = "Construir, adquirir e implementar";
     //
     // grdcProcesos
     //
     this.grdcProcesos.Location = new System.Drawing.Point(17, 65);
     this.grdcProcesos.MainView = this.grdProcesos;
     this.grdcProcesos.Name     = "grdcProcesos";
     this.grdcProcesos.Size     = new System.Drawing.Size(793, 337);
     this.grdcProcesos.TabIndex = 9;
     this.grdcProcesos.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.grdProcesos
     });
     //
     // grdProcesos
     //
     this.grdProcesos.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.colidProceso,
         this.colNombreProceso,
         this.colN0,
         this.colN1,
         this.colN2,
         this.colN3,
         this.colN4,
         this.colN5
     });
     this.grdProcesos.GridControl = this.grdcProcesos;
     this.grdProcesos.Name        = "grdProcesos";
     this.grdProcesos.OptionsBehavior.AutoExpandAllGroups = true;
     this.grdProcesos.OptionsBehavior.Editable            = false;
     this.grdProcesos.OptionsFind.AlwaysVisible           = true;
     this.grdProcesos.Click       += new System.EventHandler(this.grdProcesos_Click);
     this.grdProcesos.DoubleClick += new System.EventHandler(this.grdProcesos_DoubleClick);
     //
     // colidProceso
     //
     this.colidProceso.Caption      = "idProceso";
     this.colidProceso.FieldName    = "idProceso";
     this.colidProceso.Name         = "colidProceso";
     this.colidProceso.Visible      = true;
     this.colidProceso.VisibleIndex = 0;
     //
     // colNombreProceso
     //
     this.colNombreProceso.Caption      = "NombreProceso";
     this.colNombreProceso.FieldName    = "NombreProceso";
     this.colNombreProceso.Name         = "colNombreProceso";
     this.colNombreProceso.Visible      = true;
     this.colNombreProceso.VisibleIndex = 1;
     //
     // colN0
     //
     this.colN0.Caption      = "N0";
     this.colN0.FieldName    = "N0";
     this.colN0.Name         = "colN0";
     this.colN0.Visible      = true;
     this.colN0.VisibleIndex = 2;
     //
     // colN1
     //
     this.colN1.Caption      = "N1";
     this.colN1.FieldName    = "N1";
     this.colN1.Name         = "colN1";
     this.colN1.Visible      = true;
     this.colN1.VisibleIndex = 3;
     //
     // colN2
     //
     this.colN2.Caption      = "N2";
     this.colN2.FieldName    = "N2";
     this.colN2.Name         = "colN2";
     this.colN2.Visible      = true;
     this.colN2.VisibleIndex = 4;
     //
     // colN3
     //
     this.colN3.Caption      = "N3";
     this.colN3.FieldName    = "N3";
     this.colN3.Name         = "colN3";
     this.colN3.Visible      = true;
     this.colN3.VisibleIndex = 5;
     //
     // colN4
     //
     this.colN4.Caption      = "N4";
     this.colN4.FieldName    = "N4";
     this.colN4.Name         = "colN4";
     this.colN4.Visible      = true;
     this.colN4.VisibleIndex = 6;
     //
     // colN5
     //
     this.colN5.Caption      = "N5";
     this.colN5.FieldName    = "N5";
     this.colN5.Name         = "colN5";
     this.colN5.Visible      = true;
     this.colN5.VisibleIndex = 7;
     //
     // chartDatos
     //
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     this.chartDatos.Diagram        = xyDiagram1;
     this.chartDatos.Location       = new System.Drawing.Point(17, 408);
     this.chartDatos.Name           = "chartDatos";
     series1.Name                   = "Serie1";
     seriesPoint1.ColorSerializable = "Red";
     seriesPoint2.ColorSerializable = "Fuchsia";
     seriesPoint3.ColorSerializable = "Blue";
     seriesPoint4.ColorSerializable = "#FF8040";
     seriesPoint5.ColorSerializable = "Green";
     seriesPoint6.ColorSerializable = "#0080FF";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint1,
         seriesPoint2,
         seriesPoint3,
         seriesPoint4,
         seriesPoint5,
         seriesPoint6
     });
     this.chartDatos.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
         series1
     };
     this.chartDatos.Size     = new System.Drawing.Size(793, 331);
     this.chartDatos.TabIndex = 10;
     //
     // frmProcesosBAI
     //
     this.Appearance.BackColor            = System.Drawing.Color.White;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize    = new System.Drawing.Size(823, 753);
     this.Controls.Add(this.chartDatos);
     this.Controls.Add(this.grdcProcesos);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "frmProcesosBAI";
     this.Text            = "frmProcesosBAI";
     this.Load           += new System.EventHandler(this.frmProcesosBAI_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grdcProcesos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdProcesos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartDatos)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel1 = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("A", new object[] {
     ((object)(0D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("B", new object[] {
     ((object)(2D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("C", new object[] {
     ((object)(4D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("D", new object[] {
     ((object)(6D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint("E", new object[] {
     ((object)(8D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint("F", new object[] {
     ((object)(10D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint("G", new object[] {
     ((object)(12D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint("H", new object[] {
     ((object)(14D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint9 = new DevExpress.XtraCharts.SeriesPoint("I", new object[] {
     ((object)(16D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint10 = new DevExpress.XtraCharts.SeriesPoint("J", new object[] {
     ((object)(18D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint11 = new DevExpress.XtraCharts.SeriesPoint("K", new object[] {
     ((object)(20D))});
     DevExpress.XtraCharts.LineSeriesView lineSeriesView1 = new DevExpress.XtraCharts.LineSeriesView();
     DevExpress.XtraCharts.Series series2 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel2 = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.XtraCharts.SeriesPoint seriesPoint12 = new DevExpress.XtraCharts.SeriesPoint("A", new object[] {
     ((object)(4D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint13 = new DevExpress.XtraCharts.SeriesPoint("B", new object[] {
     ((object)(8D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint14 = new DevExpress.XtraCharts.SeriesPoint("C", new object[] {
     ((object)(12D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint15 = new DevExpress.XtraCharts.SeriesPoint("D", new object[] {
     ((object)(16D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint16 = new DevExpress.XtraCharts.SeriesPoint("E", new object[] {
     ((object)(20D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint17 = new DevExpress.XtraCharts.SeriesPoint("F", new object[] {
     ((object)(18D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint18 = new DevExpress.XtraCharts.SeriesPoint("G", new object[] {
     ((object)(16D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint19 = new DevExpress.XtraCharts.SeriesPoint("H", new object[] {
     ((object)(14D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint20 = new DevExpress.XtraCharts.SeriesPoint("I", new object[] {
     ((object)(12D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint21 = new DevExpress.XtraCharts.SeriesPoint("J", new object[] {
     ((object)(10D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint22 = new DevExpress.XtraCharts.SeriesPoint("K", new object[] {
     ((object)(8D))});
     DevExpress.XtraCharts.LineSeriesView lineSeriesView2 = new DevExpress.XtraCharts.LineSeriesView();
     DevExpress.XtraCharts.Series series3 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel3 = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.XtraCharts.SeriesPoint seriesPoint23 = new DevExpress.XtraCharts.SeriesPoint("A", new object[] {
     ((object)(18D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint24 = new DevExpress.XtraCharts.SeriesPoint("B", new object[] {
     ((object)(14D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint25 = new DevExpress.XtraCharts.SeriesPoint("C", new object[] {
     ((object)(10D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint26 = new DevExpress.XtraCharts.SeriesPoint("D", new object[] {
     ((object)(6D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint27 = new DevExpress.XtraCharts.SeriesPoint("E", new object[] {
     ((object)(2D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint28 = new DevExpress.XtraCharts.SeriesPoint("F", new object[] {
     ((object)(15D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint29 = new DevExpress.XtraCharts.SeriesPoint("G", new object[] {
     ((object)(15D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint30 = new DevExpress.XtraCharts.SeriesPoint("H", new object[] {
     ((object)(5D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint31 = new DevExpress.XtraCharts.SeriesPoint("I", new object[] {
     ((object)(18D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint32 = new DevExpress.XtraCharts.SeriesPoint("J", new object[] {
     ((object)(13D))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint33 = new DevExpress.XtraCharts.SeriesPoint("K", new object[] {
     ((object)(0D))});
     DevExpress.XtraCharts.LineSeriesView lineSeriesView3 = new DevExpress.XtraCharts.LineSeriesView();
     DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel4 = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.XtraCharts.LineSeriesView lineSeriesView4 = new DevExpress.XtraCharts.LineSeriesView();
     this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
     this.stylesContainerControl1 = new DevExpress.XtraCharts.Design.StylesContainerControl();
     this.STR_SELECTPAL = new DevExpress.XtraEditors.LabelControl();
     this.STR_SELECTAPP = new DevExpress.XtraEditors.LabelControl();
     this.paletteEditControl1 = new ChartAppearanceSample.PaletteEditControl();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView4)).BeginInit();
     this.SuspendLayout();
     //
     // chartControl1
     //
     this.chartControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.VisualRange.AutoSideMargins = true;
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     this.chartControl1.Diagram = xyDiagram1;
     this.chartControl1.Location = new System.Drawing.Point(3, 3);
     this.chartControl1.Name = "chartControl1";
     pointSeriesLabel1.LineVisibility = DevExpress.Utils.DefaultBoolean.True;
     series1.Label = pointSeriesLabel1;
     series1.Name = "Series 1";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
     seriesPoint1,
     seriesPoint2,
     seriesPoint3,
     seriesPoint4,
     seriesPoint5,
     seriesPoint6,
     seriesPoint7,
     seriesPoint8,
     seriesPoint9,
     seriesPoint10,
     seriesPoint11});
     series1.View = lineSeriesView1;
     pointSeriesLabel2.LineVisibility = DevExpress.Utils.DefaultBoolean.True;
     series2.Label = pointSeriesLabel2;
     series2.Name = "Series 2";
     series2.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
     seriesPoint12,
     seriesPoint13,
     seriesPoint14,
     seriesPoint15,
     seriesPoint16,
     seriesPoint17,
     seriesPoint18,
     seriesPoint19,
     seriesPoint20,
     seriesPoint21,
     seriesPoint22});
     series2.View = lineSeriesView2;
     pointSeriesLabel3.LineVisibility = DevExpress.Utils.DefaultBoolean.True;
     series3.Label = pointSeriesLabel3;
     series3.Name = "Series 3";
     series3.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
     seriesPoint23,
     seriesPoint24,
     seriesPoint25,
     seriesPoint26,
     seriesPoint27,
     seriesPoint28,
     seriesPoint29,
     seriesPoint30,
     seriesPoint31,
     seriesPoint32,
     seriesPoint33});
     series3.View = lineSeriesView3;
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series1,
     series2,
     series3};
     pointSeriesLabel4.LineVisibility = DevExpress.Utils.DefaultBoolean.True;
     this.chartControl1.SeriesTemplate.Label = pointSeriesLabel4;
     this.chartControl1.SeriesTemplate.View = lineSeriesView4;
     this.chartControl1.Size = new System.Drawing.Size(522, 187);
     this.chartControl1.TabIndex = 0;
     //
     // stylesContainerControl1
     //
     this.stylesContainerControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.stylesContainerControl1.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.stylesContainerControl1.Appearance.Options.UseBackColor = true;
     this.stylesContainerControl1.Location = new System.Drawing.Point(3, 371);
     this.stylesContainerControl1.Name = "stylesContainerControl1";
     this.stylesContainerControl1.Size = new System.Drawing.Size(522, 131);
     this.stylesContainerControl1.TabIndex = 2;
     //
     // STR_SELECTPAL
     //
     this.STR_SELECTPAL.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.STR_SELECTPAL.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.STR_SELECTPAL.Location = new System.Drawing.Point(3, 197);
     this.STR_SELECTPAL.Name = "STR_SELECTPAL";
     this.STR_SELECTPAL.Size = new System.Drawing.Size(88, 15);
     this.STR_SELECTPAL.TabIndex = 6;
     this.STR_SELECTPAL.Text = "Select a Palette:";
     //
     // STR_SELECTAPP
     //
     this.STR_SELECTAPP.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.STR_SELECTAPP.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.STR_SELECTAPP.Location = new System.Drawing.Point(3, 350);
     this.STR_SELECTAPP.Name = "STR_SELECTAPP";
     this.STR_SELECTAPP.Size = new System.Drawing.Size(123, 15);
     this.STR_SELECTAPP.TabIndex = 7;
     this.STR_SELECTAPP.Text = "Select an Appearance:";
     //
     // paletteEditControl1
     //
     this.paletteEditControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.paletteEditControl1.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.paletteEditControl1.Appearance.Options.UseBackColor = true;
     this.paletteEditControl1.Location = new System.Drawing.Point(3, 218);
     this.paletteEditControl1.Name = "paletteEditControl1";
     this.paletteEditControl1.Size = new System.Drawing.Size(522, 126);
     this.paletteEditControl1.TabIndex = 1;
     this.paletteEditControl1.OnPaletteChanged += new System.EventHandler(this.paletteEditControl1_OnPaletteChanged);
     //
     // ctxChartColors
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.STR_SELECTAPP);
     this.Controls.Add(this.STR_SELECTPAL);
     this.Controls.Add(this.stylesContainerControl1);
     this.Controls.Add(this.paletteEditControl1);
     this.Controls.Add(this.chartControl1);
     this.Name = "ctxChartColors";
     this.Size = new System.Drawing.Size(532, 505);
     this.Load += new System.EventHandler(this.ctxChartColors_Load);
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #47
0
    private void InitializeComponent()
    {
        string resourceFileName = "AnalysisReport.resx";

        DevExpress.XtraCharts.XYDiagram      xyDiagram1      = new DevExpress.XtraCharts.XYDiagram();
        DevExpress.XtraCharts.SecondaryAxisY secondaryAxisY1 = new DevExpress.XtraCharts.SecondaryAxisY();
        DevExpress.XtraCharts.Series         series1         = new DevExpress.XtraCharts.Series();
        //DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("<60", new object[] {
        //((object)(0.2D))});
        //DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("60-70", new object[] {
        //((object)(0.2D))});
        //DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("70-80", new object[] {
        //((object)(0.2D))});
        //DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("80-90", new object[] {
        //((object)(0.2D))});
        //DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint("90-100", new object[] {
        //((object)(0.2D))});
        //DevExpress.XtraCharts.Series series2 = new DevExpress.XtraCharts.Series();
        //DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint("<60", new object[] {
        //((object)(0.2D))});
        //DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint("60-70", new object[] {
        //((object)(0.2D))});
        //DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint("70-80", new object[] {
        //((object)(0.2D))});
        //DevExpress.XtraCharts.SeriesPoint seriesPoint9 = new DevExpress.XtraCharts.SeriesPoint("80-90", new object[] {
        //((object)(0.2D))});
        //DevExpress.XtraCharts.SeriesPoint seriesPoint10 = new DevExpress.XtraCharts.SeriesPoint("90-100", new object[] {
        //((object)(0.2D))});
        DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("<60", new object[] {
            ((object)(less60))
        });
        DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("60-70", new object[] {
            ((object)(In60_70))
        });
        DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("70-80", new object[] {
            ((object)(In70_80))
        });
        DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("80-90", new object[] {
            ((object)(In80_90))
        });
        DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint("90-100", new object[] {
            ((object)(In90_100))
        });
        DevExpress.XtraCharts.Series      series2      = new DevExpress.XtraCharts.Series();
        DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint("<60", new object[] {
            ((object)(numless60))
        });
        DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint("60-70", new object[] {
            ((object)(numIn60_70))
        });
        DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint("70-80", new object[] {
            ((object)(numIn70_80))
        });
        DevExpress.XtraCharts.SeriesPoint seriesPoint9 = new DevExpress.XtraCharts.SeriesPoint("80-90", new object[] {
            ((object)(numIn80_90))
        });
        DevExpress.XtraCharts.SeriesPoint seriesPoint10 = new DevExpress.XtraCharts.SeriesPoint("90-100", new object[] {
            ((object)(numIn90_100))
        });
        DevExpress.XtraCharts.SideBySideBarSeriesView sideBySideBarSeriesView1 = new DevExpress.XtraCharts.SideBySideBarSeriesView();
        this.topMarginBand1    = new DevExpress.XtraReports.UI.TopMarginBand();
        this.detailBand1       = new DevExpress.XtraReports.UI.DetailBand();
        this.xrLabel30         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel29         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrPanel1          = new DevExpress.XtraReports.UI.XRPanel();
        this.xrChart1          = new DevExpress.XtraReports.UI.XRChart();
        this.xrLabel28         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel27         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel26         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel25         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel24         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel23         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel22         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel21         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel20         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel19         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel18         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel17         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel16         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel15         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel14         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel13         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel12         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel11         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel10         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel9          = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel8          = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel7          = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel5          = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel4          = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
        this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.dateTimeChartRangeControlClient1 = new DevExpress.XtraEditors.DateTimeChartRangeControlClient();
        this.analysisDS2             = new AnalysisDS();
        this.dataTable1TableAdapter1 = new AnalysisDSTableAdapters.DataTable1TableAdapter();
        ((System.ComponentModel.ISupportInitialize)(this.xrChart1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(secondaryAxisY1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesView1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.dateTimeChartRangeControlClient1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.analysisDS2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // topMarginBand1
        //
        this.topMarginBand1.HeightF = 33F;
        this.topMarginBand1.Name    = "topMarginBand1";
        //
        // detailBand1
        //
        this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel30,
            this.xrLabel29,
            this.xrPanel1,
            this.xrLabel28,
            this.xrLabel27,
            this.xrLabel26,
            this.xrLabel25,
            this.xrLabel24,
            this.xrLabel23,
            this.xrLabel22,
            this.xrLabel21,
            this.xrLabel20,
            this.xrLabel19,
            this.xrLabel18,
            this.xrLabel17,
            this.xrLabel16,
            this.xrLabel15,
            this.xrLabel14,
            this.xrLabel13,
            this.xrLabel12,
            this.xrLabel11,
            this.xrLabel10,
            this.xrLabel9,
            this.xrLabel8,
            this.xrLabel7,
            this.xrLabel6,
            this.xrLabel5,
            this.xrLabel4,
            this.xrLabel3,
            this.xrLabel2,
            this.xrLabel1
        });
        this.detailBand1.HeightF = 994.5005F;
        this.detailBand1.Name    = "detailBand1";
        //
        // xrLabel30
        //
        this.xrLabel30.Font                  = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel30.LocationFloat         = new DevExpress.Utils.PointFloat(10.00002F, 850.4169F);
        this.xrLabel30.Name                  = "xrLabel30";
        this.xrLabel30.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel30.SizeF                 = new System.Drawing.SizeF(100F, 23F);
        this.xrLabel30.StylePriority.UseFont = false;
        this.xrLabel30.Text                  = "说明:";
        //
        // xrLabel29
        //
        this.xrLabel29.Font                  = new System.Drawing.Font("宋体", 11F);
        this.xrLabel29.LocationFloat         = new DevExpress.Utils.PointFloat(10.00001F, 873.4169F);
        this.xrLabel29.Multiline             = true;
        this.xrLabel29.Name                  = "xrLabel29";
        this.xrLabel29.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel29.SizeF                 = new System.Drawing.SizeF(667.7083F, 95.91669F);
        this.xrLabel29.StylePriority.UseFont = false;
        this.xrLabel29.Text                  = "1.考核方式:开卷、闭卷、半开半闭、考试改革\r\n2.直方图数据的输入:双击表格中的直方图→出现“图区,数区”界面→点击界面中的“数区”→填入各分数段的人数→点击界" +
                                               "面中的“图区”→点击表格区域外的任意位置→直方图的数据输入完毕。\r\n";
        //
        // xrPanel1
        //
        this.xrPanel1.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrChart1
        });
        this.xrPanel1.LocationFloat            = new DevExpress.Utils.PointFloat(77.70839F, 224.0419F);
        this.xrPanel1.Name                     = "xrPanel1";
        this.xrPanel1.SizeF                    = new System.Drawing.SizeF(600F, 228.125F);
        this.xrPanel1.StylePriority.UseBorders = false;
        //
        // xrChart1
        //
        this.xrChart1.BorderColor = System.Drawing.Color.Black;
        this.xrChart1.Borders     = DevExpress.XtraPrinting.BorderSide.None;
        xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
        xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
        xyDiagram1.DefaultPane.EnableAxisXScrolling = DevExpress.Utils.DefaultBoolean.False;
        xyDiagram1.DefaultPane.EnableAxisXZooming   = DevExpress.Utils.DefaultBoolean.False;
        xyDiagram1.DefaultPane.EnableAxisYScrolling = DevExpress.Utils.DefaultBoolean.False;
        xyDiagram1.DefaultPane.EnableAxisYZooming   = DevExpress.Utils.DefaultBoolean.False;
        secondaryAxisY1.AxisID     = 0;
        secondaryAxisY1.Name       = "Secondary AxisY 1";
        secondaryAxisY1.Title.Text = "百分比";
        secondaryAxisY1.VisibleInPanesSerializable = "-1";
        xyDiagram1.SecondaryAxesY.AddRange(new DevExpress.XtraCharts.SecondaryAxisY[] {
            secondaryAxisY1
        });
        this.xrChart1.Diagram       = xyDiagram1;
        this.xrChart1.LocationFloat = new DevExpress.Utils.PointFloat(20.83333F, 9.99999F);
        this.xrChart1.Name          = "xrChart1";
        series1.Name = "百分比";
        series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint1,
            seriesPoint2,
            seriesPoint3,
            seriesPoint4,
            seriesPoint5
        });
        series1.SynchronizePointOptions = false;
        series2.Name = "人数";
        series2.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint6,
            seriesPoint7,
            seriesPoint8,
            seriesPoint9,
            seriesPoint10
        });
        series2.SynchronizePointOptions    = false;
        sideBySideBarSeriesView1.AxisYName = "Secondary AxisY 1";
        series2.View = sideBySideBarSeriesView1;
        this.xrChart1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
            series1,
            series2
        };
        this.xrChart1.SeriesTemplate.SynchronizePointOptions = false;
        this.xrChart1.SizeF = new System.Drawing.SizeF(569.1667F, 208.125F);
        //
        // xrLabel28
        //
        this.xrLabel28.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel28.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.teachAnalysis")
        });
        this.xrLabel28.Font                     = new System.Drawing.Font("宋体", 11F);
        this.xrLabel28.LocationFloat            = new DevExpress.Utils.PointFloat(37.08334F, 728.1252F);
        this.xrLabel28.Multiline                = true;
        this.xrLabel28.Name                     = "xrLabel28";
        this.xrLabel28.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel28.SizeF                    = new System.Drawing.SizeF(640.6251F, 87.91663F);
        this.xrLabel28.StylePriority.UseBorders = false;
        //
        // xrLabel27
        //
        this.xrLabel27.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel27.Font                           = new System.Drawing.Font("宋体", 11F);
        this.xrLabel27.LocationFloat                  = new DevExpress.Utils.PointFloat(10.00005F, 728.1252F);
        this.xrLabel27.Name                           = "xrLabel27";
        this.xrLabel27.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel27.SizeF                          = new System.Drawing.SizeF(27.0833F, 87.91663F);
        this.xrLabel27.StylePriority.UseBorders       = false;
        this.xrLabel27.StylePriority.UseTextAlignment = false;
        this.xrLabel27.Text                           = "教学分析";
        this.xrLabel27.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
        //
        // xrLabel26
        //
        this.xrLabel26.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.expandAnalysis")
        });
        this.xrLabel26.Font                     = new System.Drawing.Font("宋体", 11F);
        this.xrLabel26.LocationFloat            = new DevExpress.Utils.PointFloat(37.08344F, 565.6251F);
        this.xrLabel26.Multiline                = true;
        this.xrLabel26.Name                     = "xrLabel26";
        this.xrLabel26.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel26.SizeF                    = new System.Drawing.SizeF(640.625F, 162.5001F);
        this.xrLabel26.StylePriority.UseBorders = false;
        //
        // xrLabel25
        //
        this.xrLabel25.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel25.Font                           = new System.Drawing.Font("宋体", 11F);
        this.xrLabel25.LocationFloat                  = new DevExpress.Utils.PointFloat(10.00015F, 565.6251F);
        this.xrLabel25.Name                           = "xrLabel25";
        this.xrLabel25.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel25.SizeF                          = new System.Drawing.SizeF(27.08329F, 162.5001F);
        this.xrLabel25.StylePriority.UseBorders       = false;
        this.xrLabel25.StylePriority.UseTextAlignment = false;
        this.xrLabel25.Text                           = "拓展分析";
        this.xrLabel25.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
        //
        // xrLabel24
        //
        this.xrLabel24.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.basicAnalysis")
        });
        this.xrLabel24.Font                     = new System.Drawing.Font("宋体", 11F);
        this.xrLabel24.LocationFloat            = new DevExpress.Utils.PointFloat(37.08334F, 452.1669F);
        this.xrLabel24.Multiline                = true;
        this.xrLabel24.Name                     = "xrLabel24";
        this.xrLabel24.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel24.SizeF                    = new System.Drawing.SizeF(640.6251F, 113.4582F);
        this.xrLabel24.StylePriority.UseBorders = false;
        //
        // xrLabel23
        //
        this.xrLabel23.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel23.Font                           = new System.Drawing.Font("宋体", 11F);
        this.xrLabel23.LocationFloat                  = new DevExpress.Utils.PointFloat(10.00007F, 452.1668F);
        this.xrLabel23.Name                           = "xrLabel23";
        this.xrLabel23.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel23.SizeF                          = new System.Drawing.SizeF(27.08328F, 113.4583F);
        this.xrLabel23.StylePriority.UseBorders       = false;
        this.xrLabel23.StylePriority.UseTextAlignment = false;
        this.xrLabel23.Text                           = "基本分析";
        this.xrLabel23.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
        //
        // xrLabel22
        //
        this.xrLabel22.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel22.Font                           = new System.Drawing.Font("宋体", 11F);
        this.xrLabel22.LocationFloat                  = new DevExpress.Utils.PointFloat(10.00007F, 224.0419F);
        this.xrLabel22.Name                           = "xrLabel22";
        this.xrLabel22.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel22.SizeF                          = new System.Drawing.SizeF(67.70831F, 228.125F);
        this.xrLabel22.StylePriority.UseBorders       = false;
        this.xrLabel22.StylePriority.UseTextAlignment = false;
        this.xrLabel22.Text                           = "直方图";
        this.xrLabel22.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
        //
        // xrLabel21
        //
        this.xrLabel21.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel21.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.aveScore")
        });
        this.xrLabel21.Font                           = new System.Drawing.Font("宋体", 11F);
        this.xrLabel21.LocationFloat                  = new DevExpress.Utils.PointFloat(485.0002F, 195.9169F);
        this.xrLabel21.Name                           = "xrLabel21";
        this.xrLabel21.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel21.SizeF                          = new System.Drawing.SizeF(192.7083F, 28.12506F);
        this.xrLabel21.StylePriority.UseBorders       = false;
        this.xrLabel21.StylePriority.UseTextAlignment = false;
        this.xrLabel21.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel20
        //
        this.xrLabel20.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.minScore")
        });
        this.xrLabel20.Font                           = new System.Drawing.Font("宋体", 11F);
        this.xrLabel20.LocationFloat                  = new DevExpress.Utils.PointFloat(252.7084F, 195.9168F);
        this.xrLabel20.Name                           = "xrLabel20";
        this.xrLabel20.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel20.SizeF                          = new System.Drawing.SizeF(232.2917F, 28.12506F);
        this.xrLabel20.StylePriority.UseBorders       = false;
        this.xrLabel20.StylePriority.UseTextAlignment = false;
        this.xrLabel20.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel19
        //
        this.xrLabel19.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.maxScore")
        });
        this.xrLabel19.Font                           = new System.Drawing.Font("宋体", 11F);
        this.xrLabel19.LocationFloat                  = new DevExpress.Utils.PointFloat(77.70839F, 195.9169F);
        this.xrLabel19.Name                           = "xrLabel19";
        this.xrLabel19.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel19.SizeF                          = new System.Drawing.SizeF(175F, 28.12503F);
        this.xrLabel19.StylePriority.UseBorders       = false;
        this.xrLabel19.StylePriority.UseTextAlignment = false;
        this.xrLabel19.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel18
        //
        this.xrLabel18.Borders                        = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel18.Font                           = new System.Drawing.Font("宋体", 11F);
        this.xrLabel18.LocationFloat                  = new DevExpress.Utils.PointFloat(485.0002F, 169.7919F);
        this.xrLabel18.Name                           = "xrLabel18";
        this.xrLabel18.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel18.SizeF                          = new System.Drawing.SizeF(192.7083F, 26.12498F);
        this.xrLabel18.StylePriority.UseBorders       = false;
        this.xrLabel18.StylePriority.UseTextAlignment = false;
        this.xrLabel18.Text                           = "平均分";
        this.xrLabel18.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel17
        //
        this.xrLabel17.Borders                        = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel17.Font                           = new System.Drawing.Font("宋体", 11F);
        this.xrLabel17.LocationFloat                  = new DevExpress.Utils.PointFloat(252.7085F, 169.7919F);
        this.xrLabel17.Name                           = "xrLabel17";
        this.xrLabel17.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel17.SizeF                          = new System.Drawing.SizeF(232.2917F, 26.12498F);
        this.xrLabel17.StylePriority.UseBorders       = false;
        this.xrLabel17.StylePriority.UseTextAlignment = false;
        this.xrLabel17.Text                           = "最低分";
        this.xrLabel17.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel16
        //
        this.xrLabel16.Borders                        = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel16.Font                           = new System.Drawing.Font("宋体", 11F);
        this.xrLabel16.LocationFloat                  = new DevExpress.Utils.PointFloat(77.7084F, 169.7918F);
        this.xrLabel16.Name                           = "xrLabel16";
        this.xrLabel16.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel16.SizeF                          = new System.Drawing.SizeF(175.0001F, 26.125F);
        this.xrLabel16.StylePriority.UseBorders       = false;
        this.xrLabel16.StylePriority.UseTextAlignment = false;
        this.xrLabel16.Text                           = "最高分";
        this.xrLabel16.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel15
        //
        this.xrLabel15.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel15.Font                           = new System.Drawing.Font("宋体", 11F);
        this.xrLabel15.LocationFloat                  = new DevExpress.Utils.PointFloat(10.00009F, 169.7919F);
        this.xrLabel15.Name                           = "xrLabel15";
        this.xrLabel15.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel15.SizeF                          = new System.Drawing.SizeF(67.70831F, 54.24995F);
        this.xrLabel15.StylePriority.UseBorders       = false;
        this.xrLabel15.StylePriority.UseFont          = false;
        this.xrLabel15.StylePriority.UseTextAlignment = false;
        this.xrLabel15.Text                           = "成绩分布";
        this.xrLabel15.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
        //
        // xrLabel14
        //
        this.xrLabel14.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.examLength")
        });
        this.xrLabel14.Font                           = new System.Drawing.Font("宋体", 11F);
        this.xrLabel14.LocationFloat                  = new DevExpress.Utils.PointFloat(561.0416F, 118.7503F);
        this.xrLabel14.Name                           = "xrLabel14";
        this.xrLabel14.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel14.SizeF                          = new System.Drawing.SizeF(116.6667F, 51.04156F);
        this.xrLabel14.StylePriority.UseBorders       = false;
        this.xrLabel14.StylePriority.UseTextAlignment = false;
        this.xrLabel14.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel13
        //
        this.xrLabel13.Borders                        = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel13.Font                           = new System.Drawing.Font("宋体", 11F);
        this.xrLabel13.LocationFloat                  = new DevExpress.Utils.PointFloat(485.0001F, 118.7502F);
        this.xrLabel13.Name                           = "xrLabel13";
        this.xrLabel13.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel13.SizeF                          = new System.Drawing.SizeF(76.04166F, 51.04156F);
        this.xrLabel13.StylePriority.UseBorders       = false;
        this.xrLabel13.StylePriority.UseTextAlignment = false;
        this.xrLabel13.Text                           = "考试时长";
        this.xrLabel13.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
        //
        // xrLabel12
        //
        this.xrLabel12.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.examMothed")
        });
        this.xrLabel12.Font                           = new System.Drawing.Font("宋体", 11F);
        this.xrLabel12.LocationFloat                  = new DevExpress.Utils.PointFloat(328.75F, 118.7503F);
        this.xrLabel12.Name                           = "xrLabel12";
        this.xrLabel12.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel12.SizeF                          = new System.Drawing.SizeF(156.2501F, 51.04156F);
        this.xrLabel12.StylePriority.UseBorders       = false;
        this.xrLabel12.StylePriority.UseTextAlignment = false;
        this.xrLabel12.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel11
        //
        this.xrLabel11.Borders                        = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel11.Font                           = new System.Drawing.Font("宋体", 11F);
        this.xrLabel11.LocationFloat                  = new DevExpress.Utils.PointFloat(252.7084F, 118.7502F);
        this.xrLabel11.Name                           = "xrLabel11";
        this.xrLabel11.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel11.SizeF                          = new System.Drawing.SizeF(76.04166F, 51.04163F);
        this.xrLabel11.StylePriority.UseBorders       = false;
        this.xrLabel11.StylePriority.UseTextAlignment = false;
        this.xrLabel11.Text                           = "考核方式";
        this.xrLabel11.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
        //
        // xrLabel10
        //
        this.xrLabel10.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.TeacherName")
        });
        this.xrLabel10.Font                           = new System.Drawing.Font("宋体", 11F);
        this.xrLabel10.LocationFloat                  = new DevExpress.Utils.PointFloat(98.5417F, 118.7502F);
        this.xrLabel10.Name                           = "xrLabel10";
        this.xrLabel10.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel10.SizeF                          = new System.Drawing.SizeF(154.1667F, 51.04163F);
        this.xrLabel10.StylePriority.UseBorders       = false;
        this.xrLabel10.StylePriority.UseTextAlignment = false;
        this.xrLabel10.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel9
        //
        this.xrLabel9.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel9.Font                           = new System.Drawing.Font("宋体", 11F);
        this.xrLabel9.LocationFloat                  = new DevExpress.Utils.PointFloat(10.00001F, 118.7502F);
        this.xrLabel9.Name                           = "xrLabel9";
        this.xrLabel9.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel9.SizeF                          = new System.Drawing.SizeF(88.54166F, 51.04163F);
        this.xrLabel9.StylePriority.UseBorders       = false;
        this.xrLabel9.StylePriority.UseTextAlignment = false;
        this.xrLabel9.Text                           = "任课教师";
        this.xrLabel9.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
        //
        // xrLabel8
        //
        this.xrLabel8.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.ana_num")
        });
        this.xrLabel8.Font                           = new System.Drawing.Font("宋体", 11F);
        this.xrLabel8.LocationFloat                  = new DevExpress.Utils.PointFloat(561.0416F, 73.95853F);
        this.xrLabel8.Name                           = "xrLabel8";
        this.xrLabel8.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel8.SizeF                          = new System.Drawing.SizeF(116.6667F, 44.79163F);
        this.xrLabel8.StylePriority.UseBorders       = false;
        this.xrLabel8.StylePriority.UseTextAlignment = false;
        this.xrLabel8.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel7
        //
        this.xrLabel7.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel7.Font                           = new System.Drawing.Font("宋体", 11F);
        this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(485.0001F, 73.95853F);
        this.xrLabel7.Name                           = "xrLabel7";
        this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel7.SizeF                          = new System.Drawing.SizeF(76.04166F, 44.79163F);
        this.xrLabel7.StylePriority.UseBorders       = false;
        this.xrLabel7.StylePriority.UseTextAlignment = false;
        this.xrLabel7.Text                           = "学生人数";
        this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
        //
        // xrLabel6
        //
        this.xrLabel6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.Class")
        });
        this.xrLabel6.Font                           = new System.Drawing.Font("宋体", 11F);
        this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(328.75F, 73.95853F);
        this.xrLabel6.Name                           = "xrLabel6";
        this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel6.SizeF                          = new System.Drawing.SizeF(156.2501F, 44.79163F);
        this.xrLabel6.StylePriority.UseBorders       = false;
        this.xrLabel6.StylePriority.UseTextAlignment = false;
        this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel5
        //
        this.xrLabel5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel5.Font                           = new System.Drawing.Font("宋体", 11F);
        this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(252.7084F, 73.95853F);
        this.xrLabel5.Name                           = "xrLabel5";
        this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel5.SizeF                          = new System.Drawing.SizeF(76.04163F, 44.79166F);
        this.xrLabel5.StylePriority.UseBorders       = false;
        this.xrLabel5.StylePriority.UseTextAlignment = false;
        this.xrLabel5.Text                           = "班级";
        this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
        //
        // xrLabel4
        //
        this.xrLabel4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.course_name")
        });
        this.xrLabel4.Font                           = new System.Drawing.Font("宋体", 11F);
        this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(98.54167F, 73.95853F);
        this.xrLabel4.Name                           = "xrLabel4";
        this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel4.SizeF                          = new System.Drawing.SizeF(154.1667F, 44.79166F);
        this.xrLabel4.StylePriority.UseBorders       = false;
        this.xrLabel4.StylePriority.UseTextAlignment = false;
        this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel3
        //
        this.xrLabel3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel3.Font                           = new System.Drawing.Font("宋体", 11F);
        this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(10.00001F, 73.95853F);
        this.xrLabel3.Name                           = "xrLabel3";
        this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel3.SizeF                          = new System.Drawing.SizeF(88.54167F, 44.79166F);
        this.xrLabel3.StylePriority.UseBorders       = false;
        this.xrLabel3.StylePriority.UseTextAlignment = false;
        this.xrLabel3.Text                           = "课程名称";
        this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
        //
        // xrLabel2
        //
        this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.teachingPlan")
        });
        this.xrLabel2.Font                  = new System.Drawing.Font("黑体", 12F);
        this.xrLabel2.LocationFloat         = new DevExpress.Utils.PointFloat(252.7083F, 39.25001F);
        this.xrLabel2.Name                  = "xrLabel2";
        this.xrLabel2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel2.SizeF                 = new System.Drawing.SizeF(269.7917F, 23F);
        this.xrLabel2.StylePriority.UseFont = false;
        //
        // xrLabel1
        //
        this.xrLabel1.Font                  = new System.Drawing.Font("华文中宋", 18F, System.Drawing.FontStyle.Bold);
        this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(234.375F, 10.00001F);
        this.xrLabel1.Name                  = "xrLabel1";
        this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel1.SizeF                 = new System.Drawing.SizeF(288.125F, 29.25F);
        this.xrLabel1.StylePriority.UseFont = false;
        this.xrLabel1.Text                  = "华北理工大学试卷分析";
        //
        // bottomMarginBand1
        //
        this.bottomMarginBand1.HeightF = 60F;
        this.bottomMarginBand1.Name    = "bottomMarginBand1";
        //
        // analysisDS2
        //
        this.analysisDS2.DataSetName             = "AnalysisDS";
        this.analysisDS2.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
        //
        // dataTable1TableAdapter1
        //
        this.dataTable1TableAdapter1.ClearBeforeFill = true;
        //
        // AnalysisReport
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.topMarginBand1,
            this.detailBand1,
            this.bottomMarginBand1
        });
        this.DataAdapter = this.dataTable1TableAdapter1;
        this.DataMember  = "DataTable1";
        this.DataSource  = this.analysisDS2;
        this.Margins     = new System.Drawing.Printing.Margins(68, 82, 33, 60);
        this.Version     = "14.1";
        ((System.ComponentModel.ISupportInitialize)(secondaryAxisY1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesView1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrChart1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.dateTimeChartRangeControlClient1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.analysisDS2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Example #48
0
                /// <summary> 
                /// Required method for Designer support - do not modify 
                /// the contents of this method with the code editor.
                /// </summary>
                private void InitializeComponent()
                {
                        DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
                        DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("a", new object[] {
            ((object)(30))}, 0);
                        DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("b", new object[] {
            ((object)(50))}, 1);
                        DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("c", new object[] {
            ((object)(66))}, 2);
                        DevExpress.XtraCharts.PieSeriesView pieSeriesView1 = new DevExpress.XtraCharts.PieSeriesView();
                        DevExpress.XtraCharts.PieSeriesLabel pieSeriesLabel1 = new DevExpress.XtraCharts.PieSeriesLabel();
                        DevExpress.XtraCharts.PiePointOptions piePointOptions1 = new DevExpress.XtraCharts.PiePointOptions();
                        DevExpress.XtraCharts.Series series2 = new DevExpress.XtraCharts.Series();
                        DevExpress.XtraCharts.PieSeriesView pieSeriesView2 = new DevExpress.XtraCharts.PieSeriesView();
                        DevExpress.XtraCharts.PiePointOptions piePointOptions2 = new DevExpress.XtraCharts.PiePointOptions();
                        DevExpress.XtraCharts.PieSeriesView pieSeriesView3 = new DevExpress.XtraCharts.PieSeriesView();
                        this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
                        ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
                        ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
                        ((System.ComponentModel.ISupportInitialize)(pieSeriesView1)).BeginInit();
                        ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel1)).BeginInit();
                        ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
                        ((System.ComponentModel.ISupportInitialize)(pieSeriesView2)).BeginInit();
                        ((System.ComponentModel.ISupportInitialize)(pieSeriesView3)).BeginInit();
                        this.SuspendLayout();
                        // 
                        // chartControl1
                        // 
                        this.chartControl1.Dock = System.Windows.Forms.DockStyle.Fill;
                        this.chartControl1.Location = new System.Drawing.Point(0, 0);
                        this.chartControl1.Name = "chartControl1";
                        series1.Name = "Series 1";
                        series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint1,
            seriesPoint2,
            seriesPoint3});
                        pieSeriesView1.Rotation = 10;
                        pieSeriesView1.RuntimeExploding = true;
                        series1.View = pieSeriesView1;
                        pieSeriesLabel1.Position = DevExpress.XtraCharts.PieSeriesLabelPosition.TwoColumns;
                        pieSeriesLabel1.ColumnIndent = 1;
                        pieSeriesLabel1.HiddenSerializableString = "to be serialized";
                        series1.Label = pieSeriesLabel1;
                        //piePointOptions1.PercentOptions.ValuePercentPrecision = 4;
                        piePointOptions1.PercentOptions.PercentageAccuracy = 4;
                        piePointOptions1.HiddenSerializableString = "to be serialized";
                        piePointOptions1.PointView = DevExpress.XtraCharts.PointView.ArgumentAndValues;
                        piePointOptions1.ValueNumericOptions.Format = DevExpress.XtraCharts.NumericFormat.Percent;
                        series1.PointOptions = piePointOptions1;
                        series1.PointOptionsTypeName = "PiePointOptions";
                        series2.Name = "Series 2";
                        series2.View = pieSeriesView2;
                        piePointOptions2.HiddenSerializableString = "to be serialized";
                        piePointOptions2.PointView = DevExpress.XtraCharts.PointView.ArgumentAndValues;
                        series2.PointOptions = piePointOptions2;
                        series2.PointOptionsTypeName = "PiePointOptions";
                        this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series1,
        series2};
                        this.chartControl1.SeriesTemplate.View = pieSeriesView3;
                        this.chartControl1.SeriesTemplate.PointOptionsTypeName = "PiePointOptions";
                        this.chartControl1.Size = new System.Drawing.Size(692, 408);
                        this.chartControl1.TabIndex = 1;
                        this.chartControl1.ObjectSelected += new DevExpress.XtraCharts.HotTrackEventHandler(this.chartControl1_ObjectSelected);
                        // 
                        // ChartUC_Pie
                        // 
                        this.Appearance.BackColor = System.Drawing.Color.Transparent;
                        this.Appearance.Options.UseBackColor = true;
                        this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
                        this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
                        this.Controls.Add(this.chartControl1);
                        this.Name = "ChartUC_Pie";
                        this.Size = new System.Drawing.Size(692, 408);
                        ((System.ComponentModel.ISupportInitialize)(pieSeriesView1)).EndInit();
                        ((System.ComponentModel.ISupportInitialize)(pieSeriesLabel1)).EndInit();
                        ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
                        ((System.ComponentModel.ISupportInitialize)(pieSeriesView2)).EndInit();
                        ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
                        ((System.ComponentModel.ISupportInitialize)(pieSeriesView3)).EndInit();
                        ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
                        this.ResumeLayout(false);

                }
Example #49
0
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.ConstantLine constantLine1 = new DevExpress.XtraCharts.ConstantLine();
            DevExpress.XtraCharts.ConstantLine constantLine2 = new DevExpress.XtraCharts.ConstantLine();
            DevExpress.XtraCharts.ConstantLine constantLine3 = new DevExpress.XtraCharts.ConstantLine();
            DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2015, 9, 5, 0, 0, 0, 0), new object[] {
            ((object)(90D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2015, 9, 6, 0, 0, 0, 0), new object[] {
            ((object)(80D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2015, 9, 8, 0, 0, 0, 0), new object[] {
            ((object)(96.46D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2015, 9, 7, 0, 0, 0, 0), new object[] {
            ((object)(90D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2015, 9, 9, 0, 0, 0, 0), new object[] {
            ((object)(94.48D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2015, 9, 10, 0, 0, 0, 0), new object[] {
            ((object)(98.78D))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint(new System.DateTime(2015, 9, 11, 0, 0, 0, 0), new object[] {
            ((object)(80D))});
            DevExpress.XtraCharts.LineSeriesView lineSeriesView1 = new DevExpress.XtraCharts.LineSeriesView();
            DevExpress.XtraCharts.LineSeriesView lineSeriesView2 = new DevExpress.XtraCharts.LineSeriesView();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Qx));
            this.circularGauge1 = new DevExpress.XtraGauges.Win.Gauges.Circular.CircularGauge();
            this.labelComponent1 = new DevExpress.XtraGauges.Win.Base.LabelComponent();
            this.arcScaleComponent1 = new DevExpress.XtraGauges.Win.Gauges.Circular.ArcScaleComponent();
            this.arcScaleRangeBarComponent1 = new DevExpress.XtraGauges.Win.Gauges.Circular.ArcScaleRangeBarComponent();
            this.panelContainer = new System.Windows.Forms.Panel();
            this.panel5 = new System.Windows.Forms.Panel();
            this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
            this.label6 = new System.Windows.Forms.Label();
            this.panel1 = new System.Windows.Forms.Panel();
            this.lblTemperature5 = new System.Windows.Forms.Label();
            this.lblTemperature4 = new System.Windows.Forms.Label();
            this.lblTemperature3 = new System.Windows.Forms.Label();
            this.lblTemperature1 = new System.Windows.Forms.Label();
            this.lblTemperature2 = new System.Windows.Forms.Label();
            this.lblDateTime1 = new System.Windows.Forms.Label();
            this.pboxFigure4 = new System.Windows.Forms.PictureBox();
            this.label1 = new System.Windows.Forms.Label();
            this.pboxFigure3 = new System.Windows.Forms.PictureBox();
            this.pboxFigure1 = new System.Windows.Forms.PictureBox();
            this.pboxFigure2 = new System.Windows.Forms.PictureBox();
            this.lblDateTime4 = new System.Windows.Forms.Label();
            this.lblDateTime2 = new System.Windows.Forms.Label();
            this.lblDateTime3 = new System.Windows.Forms.Label();
            this.panel4 = new System.Windows.Forms.Panel();
            this.lbDjsw = new System.Windows.Forms.Label();
            this.pboxSW = new com.tk.dam.Views.PictureBoxModel();
            this.pboxS = new System.Windows.Forms.PictureBox();
            this.label5 = new System.Windows.Forms.Label();
            this.panel3 = new System.Windows.Forms.Panel();
            this.gaugeControl1 = new DevExpress.XtraGauges.Win.GaugeControl();
            this.circularGauge2 = new DevExpress.XtraGauges.Win.Gauges.Circular.CircularGauge();
            this.labelComponent2 = new DevExpress.XtraGauges.Win.Base.LabelComponent();
            this.arcScaleRangeBarComponent2 = new DevExpress.XtraGauges.Win.Gauges.Circular.ArcScaleRangeBarComponent();
            this.arcScaleComponent2 = new DevExpress.XtraGauges.Win.Gauges.Circular.ArcScaleComponent();
            this.label3 = new System.Windows.Forms.Label();
            this.panel2 = new System.Windows.Forms.Panel();
            this.lblPower = new System.Windows.Forms.Label();
            this.lblDirection = new System.Windows.Forms.Label();
            this.pboxDirectionW = new System.Windows.Forms.PictureBox();
            this.pboxDirectionWN = new System.Windows.Forms.PictureBox();
            this.pboxDirectionSW = new System.Windows.Forms.PictureBox();
            this.pboxDirectionES = new System.Windows.Forms.PictureBox();
            this.pboxDirectionNE = new System.Windows.Forms.PictureBox();
            this.pboxDirectionN = new System.Windows.Forms.PictureBox();
            this.pboxDirectionE = new System.Windows.Forms.PictureBox();
            this.pboxDirectionS = new System.Windows.Forms.PictureBox();
            this.pboxDirection = new System.Windows.Forms.PictureBox();
            this.label2 = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.circularGauge1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.labelComponent1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.arcScaleComponent1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.arcScaleRangeBarComponent1)).BeginInit();
            this.panelContainer.SuspendLayout();
            this.panel5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).BeginInit();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pboxFigure4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pboxFigure3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pboxFigure1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pboxFigure2)).BeginInit();
            this.panel4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pboxS)).BeginInit();
            this.panel3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.circularGauge2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.labelComponent2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.arcScaleRangeBarComponent2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.arcScaleComponent2)).BeginInit();
            this.panel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pboxDirectionW)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pboxDirectionWN)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pboxDirectionSW)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pboxDirectionES)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pboxDirectionNE)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pboxDirectionN)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pboxDirectionE)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pboxDirectionS)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pboxDirection)).BeginInit();
            this.SuspendLayout();
            // 
            // circularGauge1
            // 
            this.circularGauge1.Bounds = new System.Drawing.Rectangle(6, 6, 248, 248);
            this.circularGauge1.Name = "circularGauge1";
            // 
            // labelComponent1
            // 
            this.labelComponent1.AppearanceText.Font = new System.Drawing.Font("Segoe UI", 27.75F);
            this.labelComponent1.Name = "circularGauge1_Label1";
            this.labelComponent1.Size = new System.Drawing.SizeF(140F, 60F);
            this.labelComponent1.Text = "910";
            this.labelComponent1.UseColorScheme = false;
            this.labelComponent1.ZOrder = -1001;
            // 
            // arcScaleComponent1
            // 
            this.arcScaleComponent1.AppearanceMajorTickmark.BorderBrush = new DevExpress.XtraGauges.Core.Drawing.SolidBrushObject("Color:White");
            this.arcScaleComponent1.AppearanceMajorTickmark.ContentBrush = new DevExpress.XtraGauges.Core.Drawing.SolidBrushObject("Color:White");
            this.arcScaleComponent1.AppearanceMinorTickmark.BorderBrush = new DevExpress.XtraGauges.Core.Drawing.SolidBrushObject("Color:White");
            this.arcScaleComponent1.AppearanceMinorTickmark.ContentBrush = new DevExpress.XtraGauges.Core.Drawing.SolidBrushObject("Color:White");
            this.arcScaleComponent1.AppearanceTickmarkText.Font = new System.Drawing.Font("Tahoma", 8.5F);
            this.arcScaleComponent1.AppearanceTickmarkText.TextBrush = new DevExpress.XtraGauges.Core.Drawing.SolidBrushObject("Color:#484E5A");
            this.arcScaleComponent1.Center = new DevExpress.XtraGauges.Core.Base.PointF2D(125F, 125F);
            this.arcScaleComponent1.EndAngle = 90F;
            this.arcScaleComponent1.MajorTickCount = 0;
            this.arcScaleComponent1.MajorTickmark.FormatString = "{0:F0}";
            this.arcScaleComponent1.MajorTickmark.ShapeOffset = -14F;
            this.arcScaleComponent1.MajorTickmark.ShapeType = DevExpress.XtraGauges.Core.Model.TickmarkShapeType.Circular_Style16_1;
            this.arcScaleComponent1.MajorTickmark.TextOrientation = DevExpress.XtraGauges.Core.Model.LabelOrientation.LeftToRight;
            this.arcScaleComponent1.MaxValue = 100F;
            this.arcScaleComponent1.MinorTickCount = 0;
            this.arcScaleComponent1.MinorTickmark.ShapeOffset = -7F;
            this.arcScaleComponent1.MinorTickmark.ShapeType = DevExpress.XtraGauges.Core.Model.TickmarkShapeType.Circular_Style16_2;
            this.arcScaleComponent1.Name = "scale1";
            this.arcScaleComponent1.StartAngle = -270F;
            this.arcScaleComponent1.Value = 20F;
            // 
            // arcScaleRangeBarComponent1
            // 
            this.arcScaleRangeBarComponent1.Name = "circularGauge1_RangeBar2";
            this.arcScaleRangeBarComponent1.RoundedCaps = true;
            this.arcScaleRangeBarComponent1.ShowBackground = true;
            this.arcScaleRangeBarComponent1.StartOffset = 80F;
            this.arcScaleRangeBarComponent1.ZOrder = -10;
            // 
            // panelContainer
            // 
            this.panelContainer.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.panelContainer.BackColor = System.Drawing.Color.Transparent;
            this.panelContainer.Controls.Add(this.panel5);
            this.panelContainer.Controls.Add(this.panel1);
            this.panelContainer.Controls.Add(this.panel4);
            this.panelContainer.Controls.Add(this.panel3);
            this.panelContainer.Controls.Add(this.panel2);
            this.panelContainer.Location = new System.Drawing.Point(70, 35);
            this.panelContainer.Name = "panelContainer";
            this.panelContainer.Size = new System.Drawing.Size(1220, 530);
            this.panelContainer.TabIndex = 24;
            // 
            // panel5
            // 
            this.panel5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.panel5.AutoSize = true;
            this.panel5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(145)))), ((int)(((byte)(250)))));
            this.panel5.Controls.Add(this.chartControl1);
            this.panel5.Controls.Add(this.label6);
            this.panel5.Location = new System.Drawing.Point(738, 17);
            this.panel5.Name = "panel5";
            this.panel5.Size = new System.Drawing.Size(486, 500);
            this.panel5.TabIndex = 23;
            // 
            // chartControl1
            // 
            this.chartControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.chartControl1.BackColor = System.Drawing.Color.Transparent;
            this.chartControl1.BorderOptions.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(145)))), ((int)(((byte)(250)))));
            xyDiagram1.AxisX.DateTimeScaleOptions.AggregateFunction = DevExpress.XtraCharts.AggregateFunction.None;
            xyDiagram1.AxisX.DateTimeScaleOptions.AutoGrid = false;
            xyDiagram1.AxisX.DateTimeScaleOptions.GridSpacing = 3D;
            xyDiagram1.AxisX.DateTimeScaleOptions.ScaleMode = DevExpress.XtraCharts.ScaleMode.Automatic;
            xyDiagram1.AxisX.GridLines.Visible = true;
            xyDiagram1.AxisX.Label.TextPattern = "{A:MMMd日}";
            xyDiagram1.AxisX.Title.Alignment = System.Drawing.StringAlignment.Far;
            xyDiagram1.AxisX.Title.Antialiasing = false;
            xyDiagram1.AxisX.Title.Text = "时间";
            xyDiagram1.AxisX.Title.TextColor = System.Drawing.Color.White;
            xyDiagram1.AxisX.Title.Visibility = DevExpress.Utils.DefaultBoolean.True;
            xyDiagram1.AxisX.Visibility = DevExpress.Utils.DefaultBoolean.True;
            xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
            constantLine1.AxisValueSerializable = "100";
            constantLine1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            constantLine1.LineStyle.Thickness = 3;
            constantLine1.Name = "设计水位";
            constantLine1.Title.Alignment = DevExpress.XtraCharts.ConstantLineTitleAlignment.Far;
            constantLine1.Title.Visible = false;
            constantLine2.AxisValueSerializable = "96.5";
            constantLine2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(228)))), ((int)(((byte)(0)))));
            constantLine2.LineStyle.Thickness = 3;
            constantLine2.Name = "正常水位";
            constantLine2.Title.Text = "正常水位";
            constantLine2.Title.Visible = false;
            constantLine3.AxisValueSerializable = "93";
            constantLine3.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(96)))), ((int)(((byte)(245)))));
            constantLine3.LineStyle.Thickness = 3;
            constantLine3.Name = "汛限水位";
            constantLine3.Title.Text = "汛限水位";
            constantLine3.Title.Visible = false;
            xyDiagram1.AxisY.ConstantLines.AddRange(new DevExpress.XtraCharts.ConstantLine[] {
            constantLine1,
            constantLine2,
            constantLine3});
            xyDiagram1.AxisY.GridLines.MinorColor = System.Drawing.Color.Transparent;
            xyDiagram1.AxisY.Label.TextPattern = "{V}m";
            xyDiagram1.AxisY.Tickmarks.Visible = false;
            xyDiagram1.AxisY.Title.Alignment = System.Drawing.StringAlignment.Far;
            xyDiagram1.AxisY.Title.Antialiasing = false;
            xyDiagram1.AxisY.Title.Text = "水位";
            xyDiagram1.AxisY.Title.TextColor = System.Drawing.Color.White;
            xyDiagram1.AxisY.Title.Visibility = DevExpress.Utils.DefaultBoolean.True;
            xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
            xyDiagram1.AxisY.VisualRange.Auto = false;
            xyDiagram1.AxisY.VisualRange.MaxValueSerializable = "100";
            xyDiagram1.AxisY.VisualRange.MinValueSerializable = "80";
            xyDiagram1.AxisY.WholeRange.AlwaysShowZeroLevel = false;
            xyDiagram1.AxisY.WholeRange.Auto = false;
            xyDiagram1.AxisY.WholeRange.MaxValueSerializable = "100";
            xyDiagram1.AxisY.WholeRange.MinValueSerializable = "70";
            xyDiagram1.DefaultPane.BackColor = System.Drawing.Color.Transparent;
            xyDiagram1.DefaultPane.BorderColor = System.Drawing.Color.Transparent;
            this.chartControl1.Diagram = xyDiagram1;
            this.chartControl1.Legend.BackColor = System.Drawing.Color.Transparent;
            this.chartControl1.Legend.Border.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(145)))), ((int)(((byte)(250)))));
            this.chartControl1.Legend.Font = new System.Drawing.Font("Tahoma", 10F);
            this.chartControl1.Legend.Visibility = DevExpress.Utils.DefaultBoolean.True;
            this.chartControl1.Location = new System.Drawing.Point(13, 95);
            this.chartControl1.Name = "chartControl1";
            this.chartControl1.PaletteName = "Yellow";
            series1.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.DateTime;
            series1.Name = "水位";
            series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint1,
            seriesPoint2,
            seriesPoint3,
            seriesPoint4,
            seriesPoint5,
            seriesPoint6,
            seriesPoint7});
            lineSeriesView1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(228)))), ((int)(((byte)(0)))));
            lineSeriesView1.LineStyle.Thickness = 1;
            lineSeriesView1.MarkerVisibility = DevExpress.Utils.DefaultBoolean.True;
            series1.View = lineSeriesView1;
            this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series1};
            this.chartControl1.SeriesTemplate.View = lineSeriesView2;
            this.chartControl1.Size = new System.Drawing.Size(468, 375);
            this.chartControl1.TabIndex = 1;
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Font = new System.Drawing.Font("Tahoma", 24F);
            this.label6.ForeColor = System.Drawing.Color.White;
            this.label6.Location = new System.Drawing.Point(3, 4);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(145, 39);
            this.label6.TabIndex = 0;
            this.label6.Text = "水位曲线";
            // 
            // panel1
            // 
            this.panel1.AutoSize = true;
            this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(5)))), ((int)(((byte)(167)))), ((int)(((byte)(108)))));
            this.panel1.Controls.Add(this.lblTemperature5);
            this.panel1.Controls.Add(this.lblTemperature4);
            this.panel1.Controls.Add(this.lblTemperature3);
            this.panel1.Controls.Add(this.lblTemperature1);
            this.panel1.Controls.Add(this.lblTemperature2);
            this.panel1.Controls.Add(this.lblDateTime1);
            this.panel1.Controls.Add(this.pboxFigure4);
            this.panel1.Controls.Add(this.label1);
            this.panel1.Controls.Add(this.pboxFigure3);
            this.panel1.Controls.Add(this.pboxFigure1);
            this.panel1.Controls.Add(this.pboxFigure2);
            this.panel1.Controls.Add(this.lblDateTime4);
            this.panel1.Controls.Add(this.lblDateTime2);
            this.panel1.Controls.Add(this.lblDateTime3);
            this.panel1.Location = new System.Drawing.Point(0, 17);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(252, 500);
            this.panel1.TabIndex = 0;
            // 
            // lblTemperature5
            // 
            this.lblTemperature5.AutoSize = true;
            this.lblTemperature5.ForeColor = System.Drawing.Color.White;
            this.lblTemperature5.Location = new System.Drawing.Point(197, 413);
            this.lblTemperature5.Name = "lblTemperature5";
            this.lblTemperature5.Size = new System.Drawing.Size(31, 14);
            this.lblTemperature5.TabIndex = 14;
            this.lblTemperature5.Text = "23℃";
            // 
            // lblTemperature4
            // 
            this.lblTemperature4.AutoSize = true;
            this.lblTemperature4.ForeColor = System.Drawing.Color.White;
            this.lblTemperature4.Location = new System.Drawing.Point(106, 413);
            this.lblTemperature4.Name = "lblTemperature4";
            this.lblTemperature4.Size = new System.Drawing.Size(31, 14);
            this.lblTemperature4.TabIndex = 13;
            this.lblTemperature4.Text = "21℃";
            // 
            // lblTemperature3
            // 
            this.lblTemperature3.AutoSize = true;
            this.lblTemperature3.ForeColor = System.Drawing.Color.White;
            this.lblTemperature3.Location = new System.Drawing.Point(23, 414);
            this.lblTemperature3.Name = "lblTemperature3";
            this.lblTemperature3.Size = new System.Drawing.Size(31, 14);
            this.lblTemperature3.TabIndex = 16;
            this.lblTemperature3.Text = "26℃";
            // 
            // lblTemperature1
            // 
            this.lblTemperature1.AutoSize = true;
            this.lblTemperature1.Font = new System.Drawing.Font("Tahoma", 24F);
            this.lblTemperature1.ForeColor = System.Drawing.Color.White;
            this.lblTemperature1.Location = new System.Drawing.Point(49, 206);
            this.lblTemperature1.Name = "lblTemperature1";
            this.lblTemperature1.Size = new System.Drawing.Size(78, 39);
            this.lblTemperature1.TabIndex = 9;
            this.lblTemperature1.Text = "28℃";
            // 
            // lblTemperature2
            // 
            this.lblTemperature2.AutoSize = true;
            this.lblTemperature2.Font = new System.Drawing.Font("Tahoma", 16F);
            this.lblTemperature2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(205)))), ((int)(((byte)(2)))));
            this.lblTemperature2.Location = new System.Drawing.Point(123, 215);
            this.lblTemperature2.Name = "lblTemperature2";
            this.lblTemperature2.Size = new System.Drawing.Size(63, 27);
            this.lblTemperature2.TabIndex = 8;
            this.lblTemperature2.Text = "/27℃";
            // 
            // lblDateTime1
            // 
            this.lblDateTime1.AutoSize = true;
            this.lblDateTime1.ForeColor = System.Drawing.Color.White;
            this.lblDateTime1.Location = new System.Drawing.Point(53, 245);
            this.lblDateTime1.Name = "lblDateTime1";
            this.lblDateTime1.Size = new System.Drawing.Size(132, 14);
            this.lblDateTime1.TabIndex = 10;
            this.lblDateTime1.Text = "  9月16日         星期三";
            // 
            // pboxFigure4
            // 
            this.pboxFigure4.Location = new System.Drawing.Point(171, 341);
            this.pboxFigure4.Name = "pboxFigure4";
            this.pboxFigure4.Size = new System.Drawing.Size(78, 78);
            this.pboxFigure4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pboxFigure4.TabIndex = 17;
            this.pboxFigure4.TabStop = false;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("Tahoma", 24F);
            this.label1.ForeColor = System.Drawing.Color.White;
            this.label1.Location = new System.Drawing.Point(3, 4);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(81, 39);
            this.label1.TabIndex = 0;
            this.label1.Text = "天气";
            // 
            // pboxFigure3
            // 
            this.pboxFigure3.Location = new System.Drawing.Point(87, 341);
            this.pboxFigure3.Name = "pboxFigure3";
            this.pboxFigure3.Size = new System.Drawing.Size(78, 78);
            this.pboxFigure3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pboxFigure3.TabIndex = 18;
            this.pboxFigure3.TabStop = false;
            // 
            // pboxFigure1
            // 
            this.pboxFigure1.Location = new System.Drawing.Point(28, 46);
            this.pboxFigure1.Name = "pboxFigure1";
            this.pboxFigure1.Size = new System.Drawing.Size(180, 180);
            this.pboxFigure1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pboxFigure1.TabIndex = 6;
            this.pboxFigure1.TabStop = false;
            // 
            // pboxFigure2
            // 
            this.pboxFigure2.Location = new System.Drawing.Point(3, 341);
            this.pboxFigure2.Name = "pboxFigure2";
            this.pboxFigure2.Size = new System.Drawing.Size(78, 78);
            this.pboxFigure2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pboxFigure2.TabIndex = 19;
            this.pboxFigure2.TabStop = false;
            // 
            // lblDateTime4
            // 
            this.lblDateTime4.AutoSize = true;
            this.lblDateTime4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(121)))), ((int)(((byte)(212)))));
            this.lblDateTime4.ForeColor = System.Drawing.Color.White;
            this.lblDateTime4.Location = new System.Drawing.Point(190, 324);
            this.lblDateTime4.Name = "lblDateTime4";
            this.lblDateTime4.Size = new System.Drawing.Size(43, 14);
            this.lblDateTime4.TabIndex = 15;
            this.lblDateTime4.Text = "星期五";
            // 
            // lblDateTime2
            // 
            this.lblDateTime2.AutoSize = true;
            this.lblDateTime2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(121)))), ((int)(((byte)(212)))));
            this.lblDateTime2.ForeColor = System.Drawing.Color.White;
            this.lblDateTime2.Location = new System.Drawing.Point(19, 324);
            this.lblDateTime2.Name = "lblDateTime2";
            this.lblDateTime2.Size = new System.Drawing.Size(43, 14);
            this.lblDateTime2.TabIndex = 12;
            this.lblDateTime2.Text = "星期三";
            // 
            // lblDateTime3
            // 
            this.lblDateTime3.AutoSize = true;
            this.lblDateTime3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(121)))), ((int)(((byte)(212)))));
            this.lblDateTime3.ForeColor = System.Drawing.Color.White;
            this.lblDateTime3.Location = new System.Drawing.Point(104, 324);
            this.lblDateTime3.Name = "lblDateTime3";
            this.lblDateTime3.Size = new System.Drawing.Size(43, 14);
            this.lblDateTime3.TabIndex = 11;
            this.lblDateTime3.Text = "星期四";
            // 
            // panel4
            // 
            this.panel4.AutoSize = true;
            this.panel4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(63)))), ((int)(((byte)(169)))), ((int)(((byte)(245)))));
            this.panel4.Controls.Add(this.lbDjsw);
            this.panel4.Controls.Add(this.pboxSW);
            this.panel4.Controls.Add(this.pboxS);
            this.panel4.Controls.Add(this.label5);
            this.panel4.Location = new System.Drawing.Point(454, 17);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(278, 500);
            this.panel4.TabIndex = 21;
            // 
            // lbDjsw
            // 
            this.lbDjsw.BackColor = System.Drawing.Color.Transparent;
            this.lbDjsw.Font = new System.Drawing.Font("Tahoma", 12F);
            this.lbDjsw.ForeColor = System.Drawing.Color.WhiteSmoke;
            this.lbDjsw.Location = new System.Drawing.Point(113, 10);
            this.lbDjsw.Name = "lbDjsw";
            this.lbDjsw.Size = new System.Drawing.Size(154, 42);
            this.lbDjsw.TabIndex = 26;
            this.lbDjsw.Text = "当前水位:95m  ";
            this.lbDjsw.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // pboxSW
            // 
            this.pboxSW.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.pboxSW.Location = new System.Drawing.Point(0, 180);
            this.pboxSW.Name = "pboxSW";
            this.pboxSW.Size = new System.Drawing.Size(94, 320);
            this.pboxSW.TabIndex = 25;
            // 
            // pboxS
            // 
            this.pboxS.BackColor = System.Drawing.Color.Transparent;
            this.pboxS.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.pboxS.Image = global::com.tk.dam.Properties.Resources.shui1;
            this.pboxS.Location = new System.Drawing.Point(0, 301);
            this.pboxS.Name = "pboxS";
            this.pboxS.Size = new System.Drawing.Size(278, 199);
            this.pboxS.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pboxS.TabIndex = 1;
            this.pboxS.TabStop = false;
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.BackColor = System.Drawing.Color.Transparent;
            this.label5.Font = new System.Drawing.Font("Tahoma", 24F);
            this.label5.ForeColor = System.Drawing.Color.White;
            this.label5.Location = new System.Drawing.Point(3, 4);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(81, 39);
            this.label5.TabIndex = 0;
            this.label5.Text = "水位";
            // 
            // panel3
            // 
            this.panel3.AutoSize = true;
            this.panel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(170)))), ((int)(((byte)(21)))));
            this.panel3.Controls.Add(this.gaugeControl1);
            this.panel3.Controls.Add(this.label3);
            this.panel3.Location = new System.Drawing.Point(258, 282);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(190, 235);
            this.panel3.TabIndex = 21;
            // 
            // gaugeControl1
            // 
            this.gaugeControl1.AutoLayout = false;
            this.gaugeControl1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(170)))), ((int)(((byte)(21)))));
            this.gaugeControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.gaugeControl1.Gauges.AddRange(new DevExpress.XtraGauges.Base.IGauge[] {
            this.circularGauge2});
            this.gaugeControl1.Location = new System.Drawing.Point(15, 59);
            this.gaugeControl1.Name = "gaugeControl1";
            this.gaugeControl1.Size = new System.Drawing.Size(160, 160);
            this.gaugeControl1.TabIndex = 1;
            // 
            // circularGauge2
            // 
            this.circularGauge2.AutoSize = DevExpress.Utils.DefaultBoolean.True;
            this.circularGauge2.Bounds = new System.Drawing.Rectangle(6, 6, 148, 148);
            this.circularGauge2.Labels.AddRange(new DevExpress.XtraGauges.Win.Base.LabelComponent[] {
            this.labelComponent2});
            this.circularGauge2.Name = "circularGauge2";
            this.circularGauge2.RangeBars.AddRange(new DevExpress.XtraGauges.Win.Gauges.Circular.ArcScaleRangeBarComponent[] {
            this.arcScaleRangeBarComponent2});
            this.circularGauge2.Scales.AddRange(new DevExpress.XtraGauges.Win.Gauges.Circular.ArcScaleComponent[] {
            this.arcScaleComponent2});
            // 
            // labelComponent2
            // 
            this.labelComponent2.AppearanceText.Font = new System.Drawing.Font("Segoe UI", 27.75F);
            this.labelComponent2.AppearanceText.TextBrush = new DevExpress.XtraGauges.Core.Drawing.SolidBrushObject("Color:White");
            this.labelComponent2.Name = "circularGauge1_Label1";
            this.labelComponent2.Size = new System.Drawing.SizeF(140F, 60F);
            this.labelComponent2.Text = "45%";
            this.labelComponent2.UseColorScheme = false;
            this.labelComponent2.ZOrder = -1001;
            // 
            // arcScaleRangeBarComponent2
            // 
            this.arcScaleRangeBarComponent2.AppearanceRangeBar.BackgroundBrush = new DevExpress.XtraGauges.Core.Drawing.SolidBrushObject("Color:#F8D291");
            this.arcScaleRangeBarComponent2.AppearanceRangeBar.ContentBrush = new DevExpress.XtraGauges.Core.Drawing.SolidBrushObject("Color:#F8D291");
            this.arcScaleRangeBarComponent2.ArcScale = this.arcScaleComponent2;
            this.arcScaleRangeBarComponent2.Name = "circularGauge1_RangeBar2";
            this.arcScaleRangeBarComponent2.RoundedCaps = true;
            this.arcScaleRangeBarComponent2.Shader = new DevExpress.XtraGauges.Core.Drawing.ComplexShader("Opacity[1] Colors[Style1:#1F7700;Style2:#1F7700]");
            this.arcScaleRangeBarComponent2.ShowBackground = true;
            this.arcScaleRangeBarComponent2.StartOffset = 80F;
            this.arcScaleRangeBarComponent2.ZOrder = -10;
            // 
            // arcScaleComponent2
            // 
            this.arcScaleComponent2.AppearanceMajorTickmark.BorderBrush = new DevExpress.XtraGauges.Core.Drawing.SolidBrushObject("Color:White");
            this.arcScaleComponent2.AppearanceMajorTickmark.ContentBrush = new DevExpress.XtraGauges.Core.Drawing.SolidBrushObject("Color:White");
            this.arcScaleComponent2.AppearanceMinorTickmark.BorderBrush = new DevExpress.XtraGauges.Core.Drawing.SolidBrushObject("Color:White");
            this.arcScaleComponent2.AppearanceMinorTickmark.ContentBrush = new DevExpress.XtraGauges.Core.Drawing.SolidBrushObject("Color:White");
            this.arcScaleComponent2.AppearanceTickmarkText.Font = new System.Drawing.Font("Tahoma", 8.5F);
            this.arcScaleComponent2.AppearanceTickmarkText.TextBrush = new DevExpress.XtraGauges.Core.Drawing.SolidBrushObject("Color:#484E5A");
            this.arcScaleComponent2.Center = new DevExpress.XtraGauges.Core.Base.PointF2D(125F, 125F);
            this.arcScaleComponent2.EndAngle = 90F;
            this.arcScaleComponent2.MajorTickCount = 0;
            this.arcScaleComponent2.MajorTickmark.FormatString = "{0:F0}";
            this.arcScaleComponent2.MajorTickmark.ShapeOffset = -14F;
            this.arcScaleComponent2.MajorTickmark.ShapeType = DevExpress.XtraGauges.Core.Model.TickmarkShapeType.Circular_Style14_3;
            this.arcScaleComponent2.MajorTickmark.TextOrientation = DevExpress.XtraGauges.Core.Model.LabelOrientation.LeftToRight;
            this.arcScaleComponent2.MaxValue = 100F;
            this.arcScaleComponent2.MinorTickCount = 0;
            this.arcScaleComponent2.MinorTickmark.ShapeOffset = -7F;
            this.arcScaleComponent2.MinorTickmark.ShapeType = DevExpress.XtraGauges.Core.Model.TickmarkShapeType.Circular_Style16_2;
            this.arcScaleComponent2.Name = "scale1";
            this.arcScaleComponent2.StartAngle = -270F;
            this.arcScaleComponent2.Value = 45F;
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Font = new System.Drawing.Font("Tahoma", 24F);
            this.label3.ForeColor = System.Drawing.Color.White;
            this.label3.Location = new System.Drawing.Point(3, 13);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(81, 39);
            this.label3.TabIndex = 0;
            this.label3.Text = "湿度";
            // 
            // panel2
            // 
            this.panel2.AutoSize = true;
            this.panel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(150)))), ((int)(((byte)(145)))));
            this.panel2.Controls.Add(this.lblPower);
            this.panel2.Controls.Add(this.lblDirection);
            this.panel2.Controls.Add(this.pboxDirectionW);
            this.panel2.Controls.Add(this.pboxDirectionWN);
            this.panel2.Controls.Add(this.pboxDirectionSW);
            this.panel2.Controls.Add(this.pboxDirectionES);
            this.panel2.Controls.Add(this.pboxDirectionNE);
            this.panel2.Controls.Add(this.pboxDirectionN);
            this.panel2.Controls.Add(this.pboxDirectionE);
            this.panel2.Controls.Add(this.pboxDirectionS);
            this.panel2.Controls.Add(this.pboxDirection);
            this.panel2.Controls.Add(this.label2);
            this.panel2.Location = new System.Drawing.Point(258, 17);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(190, 255);
            this.panel2.TabIndex = 20;
            // 
            // lblPower
            // 
            this.lblPower.Font = new System.Drawing.Font("Tahoma", 10F);
            this.lblPower.ForeColor = System.Drawing.Color.White;
            this.lblPower.Location = new System.Drawing.Point(57, 139);
            this.lblPower.Name = "lblPower";
            this.lblPower.Size = new System.Drawing.Size(70, 24);
            this.lblPower.TabIndex = 7;
            this.lblPower.Text = "4~6级";
            this.lblPower.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblDirection
            // 
            this.lblDirection.Font = new System.Drawing.Font("Tahoma", 10F);
            this.lblDirection.ForeColor = System.Drawing.Color.White;
            this.lblDirection.Location = new System.Drawing.Point(45, 117);
            this.lblDirection.Name = "lblDirection";
            this.lblDirection.Size = new System.Drawing.Size(97, 21);
            this.lblDirection.TabIndex = 6;
            this.lblDirection.Text = "东北风";
            this.lblDirection.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // pboxDirectionW
            // 
            this.pboxDirectionW.Image = global::com.tk.dam.Properties.Resources.wind_direction_arrow_w;
            this.pboxDirectionW.Location = new System.Drawing.Point(-4, 129);
            this.pboxDirectionW.Name = "pboxDirectionW";
            this.pboxDirectionW.Size = new System.Drawing.Size(34, 34);
            this.pboxDirectionW.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pboxDirectionW.TabIndex = 8;
            this.pboxDirectionW.TabStop = false;
            this.pboxDirectionW.Visible = false;
            // 
            // pboxDirectionWN
            // 
            this.pboxDirectionWN.Image = global::com.tk.dam.Properties.Resources.wind_direction_arrow_wn;
            this.pboxDirectionWN.Location = new System.Drawing.Point(15, 65);
            this.pboxDirectionWN.Name = "pboxDirectionWN";
            this.pboxDirectionWN.Size = new System.Drawing.Size(34, 34);
            this.pboxDirectionWN.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pboxDirectionWN.TabIndex = 8;
            this.pboxDirectionWN.TabStop = false;
            this.pboxDirectionWN.Visible = false;
            // 
            // pboxDirectionSW
            // 
            this.pboxDirectionSW.Image = global::com.tk.dam.Properties.Resources.wind_direction_arrow_sw;
            this.pboxDirectionSW.Location = new System.Drawing.Point(13, 185);
            this.pboxDirectionSW.Name = "pboxDirectionSW";
            this.pboxDirectionSW.Size = new System.Drawing.Size(34, 34);
            this.pboxDirectionSW.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pboxDirectionSW.TabIndex = 8;
            this.pboxDirectionSW.TabStop = false;
            this.pboxDirectionSW.Visible = false;
            // 
            // pboxDirectionES
            // 
            this.pboxDirectionES.Image = global::com.tk.dam.Properties.Resources.wind_direction_arrow_es;
            this.pboxDirectionES.Location = new System.Drawing.Point(138, 183);
            this.pboxDirectionES.Name = "pboxDirectionES";
            this.pboxDirectionES.Size = new System.Drawing.Size(34, 34);
            this.pboxDirectionES.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pboxDirectionES.TabIndex = 8;
            this.pboxDirectionES.TabStop = false;
            this.pboxDirectionES.Visible = false;
            // 
            // pboxDirectionNE
            // 
            this.pboxDirectionNE.Image = global::com.tk.dam.Properties.Resources.wind_direction_arrow_ne;
            this.pboxDirectionNE.Location = new System.Drawing.Point(134, 63);
            this.pboxDirectionNE.Name = "pboxDirectionNE";
            this.pboxDirectionNE.Size = new System.Drawing.Size(34, 34);
            this.pboxDirectionNE.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pboxDirectionNE.TabIndex = 8;
            this.pboxDirectionNE.TabStop = false;
            this.pboxDirectionNE.Visible = false;
            // 
            // pboxDirectionN
            // 
            this.pboxDirectionN.Image = global::com.tk.dam.Properties.Resources.wind_direction_arrow_n;
            this.pboxDirectionN.Location = new System.Drawing.Point(75, 49);
            this.pboxDirectionN.Name = "pboxDirectionN";
            this.pboxDirectionN.Size = new System.Drawing.Size(34, 34);
            this.pboxDirectionN.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pboxDirectionN.TabIndex = 8;
            this.pboxDirectionN.TabStop = false;
            this.pboxDirectionN.Visible = false;
            // 
            // pboxDirectionE
            // 
            this.pboxDirectionE.Image = global::com.tk.dam.Properties.Resources.wind_direction_arrow_e;
            this.pboxDirectionE.Location = new System.Drawing.Point(153, 129);
            this.pboxDirectionE.Name = "pboxDirectionE";
            this.pboxDirectionE.Size = new System.Drawing.Size(34, 34);
            this.pboxDirectionE.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pboxDirectionE.TabIndex = 8;
            this.pboxDirectionE.TabStop = false;
            this.pboxDirectionE.Visible = false;
            // 
            // pboxDirectionS
            // 
            this.pboxDirectionS.Image = ((System.Drawing.Image)(resources.GetObject("pboxDirectionS.Image")));
            this.pboxDirectionS.Location = new System.Drawing.Point(75, 202);
            this.pboxDirectionS.Name = "pboxDirectionS";
            this.pboxDirectionS.Size = new System.Drawing.Size(34, 34);
            this.pboxDirectionS.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pboxDirectionS.TabIndex = 8;
            this.pboxDirectionS.TabStop = false;
            this.pboxDirectionS.Visible = false;
            // 
            // pboxDirection
            // 
            this.pboxDirection.Image = global::com.tk.dam.Properties.Resources.wind_direction;
            this.pboxDirection.Location = new System.Drawing.Point(25, 79);
            this.pboxDirection.Name = "pboxDirection";
            this.pboxDirection.Size = new System.Drawing.Size(131, 128);
            this.pboxDirection.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pboxDirection.TabIndex = 1;
            this.pboxDirection.TabStop = false;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Font = new System.Drawing.Font("Tahoma", 24F);
            this.label2.ForeColor = System.Drawing.Color.White;
            this.label2.Location = new System.Drawing.Point(3, 4);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(81, 39);
            this.label2.TabIndex = 0;
            this.label2.Text = "风向";
            // 
            // Qx
            // 
            this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(126)))), ((int)(((byte)(206)))));
            this.Appearance.Options.UseBackColor = true;
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.panelContainer);
            this.Name = "Qx";
            this.Size = new System.Drawing.Size(1300, 670);
            this.Load += new System.EventHandler(this.Qx_Load);
            ((System.ComponentModel.ISupportInitialize)(this.circularGauge1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.labelComponent1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.arcScaleComponent1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.arcScaleRangeBarComponent1)).EndInit();
            this.panelContainer.ResumeLayout(false);
            this.panelContainer.PerformLayout();
            this.panel5.ResumeLayout(false);
            this.panel5.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pboxFigure4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pboxFigure3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pboxFigure1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pboxFigure2)).EndInit();
            this.panel4.ResumeLayout(false);
            this.panel4.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pboxS)).EndInit();
            this.panel3.ResumeLayout(false);
            this.panel3.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.circularGauge2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.labelComponent2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.arcScaleRangeBarComponent2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.arcScaleComponent2)).EndInit();
            this.panel2.ResumeLayout(false);
            this.panel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pboxDirectionW)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pboxDirectionWN)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pboxDirectionSW)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pboxDirectionES)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pboxDirectionNE)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pboxDirectionN)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pboxDirectionE)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pboxDirectionS)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pboxDirection)).EndInit();
            this.ResumeLayout(false);

        }
Example #50
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraCharts.XYDiagram   xyDiagram1   = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series      series1      = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("0", new object[] {
         ((object)(7.3D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("1", new object[] {
         ((object)(0.3D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("2", new object[] {
         ((object)(8.3D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("3", new object[] {
         ((object)(2.2D))
     });
     DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint("4", new object[] {
         ((object)(4D))
     });
     DevExpress.XtraCharts.ChartTitle chartTitle1 = new DevExpress.XtraCharts.ChartTitle();
     this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     this.SuspendLayout();
     //
     // chartControl1
     //
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     this.chartControl1.Diagram  = xyDiagram1;
     this.chartControl1.Location = new System.Drawing.Point(12, 12);
     this.chartControl1.Name     = "chartControl1";
     series1.Name = "Series 1";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint1,
         seriesPoint2,
         seriesPoint3,
         seriesPoint4,
         seriesPoint5
     });
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
         series1
     };
     this.chartControl1.Size     = new System.Drawing.Size(754, 373);
     this.chartControl1.TabIndex = 0;
     chartTitle1.Font            = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartTitle1.Indent          = 7;
     chartTitle1.Text            = "Thống kê sách";
     this.chartControl1.Titles.AddRange(new DevExpress.XtraCharts.ChartTitle[] {
         chartTitle1
     });
     //
     // frTKSach
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(778, 473);
     this.Controls.Add(this.chartControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "frTKSach";
     this.Text            = "frTKSach";
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     this.ResumeLayout(false);
 }
Example #51
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraCharts.Series      series1      = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("Russia", new object[] {
         ((object)(17.0752D))
     }, 0);
     DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("Canada", new object[] {
         ((object)(9.98467D))
     }, 1);
     DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("USA", new object[] {
         ((object)(9.63142D))
     }, 2);
     DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("China", new object[] {
         ((object)(9.56696D))
     }, 3);
     DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint("Brazil", new object[] {
         ((object)(8.511956D))
     }, 4);
     DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint("Australia", new object[] {
         ((object)(7.68685D))
     }, 5);
     DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint("India", new object[] {
         ((object)(3.28759D))
     }, 6);
     DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint("Others", new object[] {
         ((object)(81.2D))
     }, 7);
     DevExpress.XtraCharts.PieSeriesView pieSeriesView1 = new DevExpress.XtraCharts.PieSeriesView();
     DevExpress.XtraCharts.ChartTitle    chartTitle1    = new DevExpress.XtraCharts.ChartTitle();
     this.defaultLookAndFeel = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
     this.chartControl       = new DevExpress.XtraCharts.ChartControl();
     this.pnlChart           = new DevExpress.XtraEditors.PanelControl();
     this.pnlButton          = new DevExpress.XtraEditors.PanelControl();
     this.btnAnimate         = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pieSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlChart)).BeginInit();
     this.pnlChart.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnlButton)).BeginInit();
     this.pnlButton.SuspendLayout();
     this.SuspendLayout();
     //
     // defaultLookAndFeel
     //
     this.defaultLookAndFeel.LookAndFeel.SkinName = "Office 2016 Colorful";
     //
     // chartControl
     //
     this.chartControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.chartControl.Legend.AlignmentHorizontal = DevExpress.XtraCharts.LegendAlignmentHorizontal.Center;
     this.chartControl.Legend.AlignmentVertical   = DevExpress.XtraCharts.LegendAlignmentVertical.BottomOutside;
     this.chartControl.Legend.Direction           = DevExpress.XtraCharts.LegendDirection.LeftToRight;
     this.chartControl.Legend.Name       = "Default Legend";
     this.chartControl.Legend.Visibility = DevExpress.Utils.DefaultBoolean.True;
     this.chartControl.Location          = new System.Drawing.Point(4, 4);
     this.chartControl.Name    = "chartControl";
     series1.LabelsVisibility  = DevExpress.Utils.DefaultBoolean.False;
     series1.LegendTextPattern = "{A}";
     series1.Name = "Series";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
         seriesPoint1,
         seriesPoint2,
         seriesPoint3,
         seriesPoint4,
         seriesPoint5,
         seriesPoint6,
         seriesPoint7,
         seriesPoint8
     });
     series1.View = pieSeriesView1;
     this.chartControl.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
         series1
     };
     this.chartControl.Size     = new System.Drawing.Size(776, 376);
     this.chartControl.TabIndex = 2;
     chartTitle1.Text           = "Area of Countries";
     this.chartControl.Titles.AddRange(new DevExpress.XtraCharts.ChartTitle[] {
         chartTitle1
     });
     //
     // pnlChart
     //
     this.pnlChart.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlChart.Controls.Add(this.chartControl);
     this.pnlChart.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.pnlChart.Location = new System.Drawing.Point(0, 0);
     this.pnlChart.Name     = "pnlChart";
     this.pnlChart.Padding  = new System.Windows.Forms.Padding(4, 4, 4, 2);
     this.pnlChart.Size     = new System.Drawing.Size(784, 382);
     this.pnlChart.TabIndex = 3;
     //
     // pnlButton
     //
     this.pnlButton.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlButton.Controls.Add(this.btnAnimate);
     this.pnlButton.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.pnlButton.Location = new System.Drawing.Point(0, 382);
     this.pnlButton.Name     = "pnlButton";
     this.pnlButton.Padding  = new System.Windows.Forms.Padding(4, 2, 4, 4);
     this.pnlButton.Size     = new System.Drawing.Size(784, 29);
     this.pnlButton.TabIndex = 4;
     //
     // btnAnimate
     //
     this.btnAnimate.Dock     = System.Windows.Forms.DockStyle.Right;
     this.btnAnimate.Location = new System.Drawing.Point(680, 2);
     this.btnAnimate.Name     = "btnAnimate";
     this.btnAnimate.Size     = new System.Drawing.Size(100, 23);
     this.btnAnimate.TabIndex = 0;
     this.btnAnimate.Text     = "Animate";
     this.btnAnimate.Click   += new System.EventHandler(this.buttonOnClick);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(784, 411);
     this.Controls.Add(this.pnlChart);
     this.Controls.Add(this.pnlButton);
     this.Name = "MainForm";
     this.Text = "Custom Pie Animation Example";
     ((System.ComponentModel.ISupportInitialize)(pieSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlChart)).EndInit();
     this.pnlChart.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pnlButton)).EndInit();
     this.pnlButton.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #52
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmDefinirMeta));
            DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.FullStackedBarSeriesLabel fullStackedBarSeriesLabel1 = new DevExpress.XtraCharts.FullStackedBarSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("Cliente 1", new object[] {
            ((object)(10))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("Cliente 2", new object[] {
            ((object)(20))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("Cliente 3", new object[] {
            ((object)(40))});
            DevExpress.XtraCharts.FullStackedBarSeriesView fullStackedBarSeriesView1 = new DevExpress.XtraCharts.FullStackedBarSeriesView();
            DevExpress.XtraCharts.Series series2 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.FullStackedBarSeriesLabel fullStackedBarSeriesLabel2 = new DevExpress.XtraCharts.FullStackedBarSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("Cliente 1", new object[] {
            ((object)(9))});
            DevExpress.XtraCharts.FullStackedBarSeriesView fullStackedBarSeriesView2 = new DevExpress.XtraCharts.FullStackedBarSeriesView();
            DevExpress.XtraCharts.FullStackedBarSeriesLabel fullStackedBarSeriesLabel3 = new DevExpress.XtraCharts.FullStackedBarSeriesLabel();
            DevExpress.XtraCharts.FullStackedBarSeriesView fullStackedBarSeriesView3 = new DevExpress.XtraCharts.FullStackedBarSeriesView();
            DevExpress.XtraCharts.XYDiagram xyDiagram2 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.Series series3 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.FullStackedBarSeriesLabel fullStackedBarSeriesLabel4 = new DevExpress.XtraCharts.FullStackedBarSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint("Cliente 1", new object[] {
            ((object)(10))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint("Cliente 2", new object[] {
            ((object)(20))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint("Cliente 3", new object[] {
            ((object)(40))});
            DevExpress.XtraCharts.FullStackedBarSeriesView fullStackedBarSeriesView4 = new DevExpress.XtraCharts.FullStackedBarSeriesView();
            DevExpress.XtraCharts.Series series4 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.FullStackedBarSeriesLabel fullStackedBarSeriesLabel5 = new DevExpress.XtraCharts.FullStackedBarSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint("Cliente 1", new object[] {
            ((object)(9))});
            DevExpress.XtraCharts.FullStackedBarSeriesView fullStackedBarSeriesView5 = new DevExpress.XtraCharts.FullStackedBarSeriesView();
            DevExpress.XtraCharts.FullStackedBarSeriesLabel fullStackedBarSeriesLabel6 = new DevExpress.XtraCharts.FullStackedBarSeriesLabel();
            DevExpress.XtraCharts.FullStackedBarSeriesView fullStackedBarSeriesView6 = new DevExpress.XtraCharts.FullStackedBarSeriesView();
            DevExpress.XtraCharts.XYDiagram xyDiagram3 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.Series series5 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel1 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint9 = new DevExpress.XtraCharts.SeriesPoint("LR", new object[] {
            ((object)(18))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint10 = new DevExpress.XtraCharts.SeriesPoint("DS", new object[] {
            ((object)(12))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint11 = new DevExpress.XtraCharts.SeriesPoint("DO", new object[] {
            ((object)(9))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint12 = new DevExpress.XtraCharts.SeriesPoint("SMC", new object[] {
            ((object)(15))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint13 = new DevExpress.XtraCharts.SeriesPoint("CY", new object[] {
            ((object)(21))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint14 = new DevExpress.XtraCharts.SeriesPoint("SF", new object[] {
            ((object)(8))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint15 = new DevExpress.XtraCharts.SeriesPoint("JMW", new object[] {
            ((object)(13))});
            DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView1 = new DevExpress.XtraCharts.StackedBarSeriesView();
            DevExpress.XtraCharts.Series series6 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel2 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint16 = new DevExpress.XtraCharts.SeriesPoint("LR", new object[] {
            ((object)(8))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint17 = new DevExpress.XtraCharts.SeriesPoint("DS", new object[] {
            ((object)(5))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint18 = new DevExpress.XtraCharts.SeriesPoint("DO", new object[] {
            ((object)(8))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint19 = new DevExpress.XtraCharts.SeriesPoint("SMC", new object[] {
            ((object)(12))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint20 = new DevExpress.XtraCharts.SeriesPoint("CY", new object[] {
            ((object)(23))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint21 = new DevExpress.XtraCharts.SeriesPoint("SF", new object[] {
            ((object)(6))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint22 = new DevExpress.XtraCharts.SeriesPoint("JMW", new object[] {
            ((object)(9))});
            DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView2 = new DevExpress.XtraCharts.StackedBarSeriesView();
            DevExpress.XtraCharts.Series series7 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel3 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint23 = new DevExpress.XtraCharts.SeriesPoint("LR", new object[] {
            ((object)(4))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint24 = new DevExpress.XtraCharts.SeriesPoint("DS", new object[] {
            ((object)(1))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint25 = new DevExpress.XtraCharts.SeriesPoint("DO", new object[] {
            ((object)(2))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint26 = new DevExpress.XtraCharts.SeriesPoint("SMC", new object[] {
            ((object)(3))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint27 = new DevExpress.XtraCharts.SeriesPoint("CY", new object[] {
            ((object)(4))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint28 = new DevExpress.XtraCharts.SeriesPoint("SF", new object[] {
            ((object)(2))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint29 = new DevExpress.XtraCharts.SeriesPoint("JMW", new object[] {
            ((object)(3))});
            DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView3 = new DevExpress.XtraCharts.StackedBarSeriesView();
            DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel4 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
            DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView4 = new DevExpress.XtraCharts.StackedBarSeriesView();
            this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
            this.cboPrioridad = new DevExpress.XtraEditors.ComboBoxEdit();
            this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
            this.txtShipper = new DevExpress.XtraEditors.TextEdit();
            this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
            this.sButtonEliminarTrafico = new DevExpress.XtraEditors.SimpleButton();
            this.sButtonAgregarTrafico = new DevExpress.XtraEditors.SimpleButton();
            this.gridTraficos = new DevExpress.XtraGrid.GridControl();
            this.gridViewTraficos = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColTipoGlosa = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridCompetencia = new DevExpress.XtraGrid.GridControl();
            this.gridViewCompetencia = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColCompetidor = new DevExpress.XtraGrid.Columns.GridColumn();
            this.sButtonEliminar = new DevExpress.XtraEditors.SimpleButton();
            this.sBAgregar = new DevExpress.XtraEditors.SimpleButton();
            this.lstProductos = new DevExpress.XtraEditors.CheckedListBoxControl();
            this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
            this.lstTipoContenedor = new DevExpress.XtraEditors.ComboBoxEdit();
            this.txtCommodity = new DevExpress.XtraEditors.TextEdit();
            this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
            this.txtTarget = new DevExpress.XtraEditors.TextEdit();
            this.lblTarget = new DevExpress.XtraEditors.LabelControl();
            this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
            this.ButtonAsignar = new DevExpress.XtraEditors.SimpleButton();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.rbTarget = new System.Windows.Forms.RadioButton();
            this.rbCuenta = new System.Windows.Forms.RadioButton();
            this.cboVendedores = new DevExpress.XtraEditors.ComboBoxEdit();
            this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
            this.DateApertura = new DevExpress.XtraEditors.DateEdit();
            this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
            this.DateRevision = new DevExpress.XtraEditors.DateEdit();
            this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
            this.CboCliente = new DevExpress.XtraEditors.ComboBoxEdit();
            this.lblCuenta = new DevExpress.XtraEditors.LabelControl();
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.chartControl2 = new DevExpress.XtraCharts.ChartControl();
            this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
            this.DateHasta = new DevExpress.XtraEditors.DateEdit();
            this.DateDesde = new DevExpress.XtraEditors.DateEdit();
            this.ChartProspectos = new DevExpress.XtraCharts.ChartControl();
            this.gridTargetAbiertos = new DevExpress.XtraGrid.GridControl();
            this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.toolStripBarraLlamada = new System.Windows.Forms.ToolStrip();
            this.MenuNuevo = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.MenuSalir = new System.Windows.Forms.ToolStripButton();
            this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
            this.ButtonEnviar = new DevExpress.XtraEditors.SimpleButton();
            this.gridAsignaciones = new DevExpress.XtraGrid.GridControl();
            this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColVendedor = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColTipoTarget = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColCliente = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColFechaRevision = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColTipoContenedor = new DevExpress.XtraGrid.Columns.GridColumn();
            this.ctrldxError = new DevExpress.XtraEditors.DXErrorProvider.DXErrorProvider(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
            this.groupControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cboPrioridad.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtShipper.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridTraficos)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewTraficos)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridCompetencia)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewCompetencia)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lstProductos)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lstTipoContenedor.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtCommodity.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtTarget.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBarSeriesLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBarSeriesView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBarSeriesLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBarSeriesView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBarSeriesLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBarSeriesView3)).BeginInit();
            this.groupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cboVendedores.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateApertura.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateApertura.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateRevision.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateRevision.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.CboCliente.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            this.panelControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBarSeriesLabel4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBarSeriesView4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBarSeriesLabel5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBarSeriesView5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBarSeriesLabel6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBarSeriesView6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
            this.groupControl3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.DateHasta.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateHasta.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateDesde.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateDesde.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ChartProspectos)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridTargetAbiertos)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
            this.toolStripBarraLlamada.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
            this.groupControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridAsignaciones)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ctrldxError)).BeginInit();
            this.SuspendLayout();
            // 
            // groupControl1
            // 
            this.groupControl1.Appearance.ForeColor = System.Drawing.Color.Black;
            this.groupControl1.Appearance.Options.UseForeColor = true;
            this.groupControl1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.groupControl1.AppearanceCaption.ForeColor = System.Drawing.Color.DarkBlue;
            this.groupControl1.AppearanceCaption.Options.UseFont = true;
            this.groupControl1.AppearanceCaption.Options.UseForeColor = true;
            this.groupControl1.Controls.Add(this.cboPrioridad);
            this.groupControl1.Controls.Add(this.labelControl9);
            this.groupControl1.Controls.Add(this.txtShipper);
            this.groupControl1.Controls.Add(this.labelControl2);
            this.groupControl1.Controls.Add(this.sButtonEliminarTrafico);
            this.groupControl1.Controls.Add(this.sButtonAgregarTrafico);
            this.groupControl1.Controls.Add(this.gridTraficos);
            this.groupControl1.Controls.Add(this.gridCompetencia);
            this.groupControl1.Controls.Add(this.sButtonEliminar);
            this.groupControl1.Controls.Add(this.sBAgregar);
            this.groupControl1.Controls.Add(this.lstProductos);
            this.groupControl1.Controls.Add(this.labelControl8);
            this.groupControl1.Controls.Add(this.lstTipoContenedor);
            this.groupControl1.Controls.Add(this.txtCommodity);
            this.groupControl1.Controls.Add(this.labelControl5);
            this.groupControl1.Controls.Add(this.txtTarget);
            this.groupControl1.Controls.Add(this.lblTarget);
            this.groupControl1.Controls.Add(this.chartControl1);
            this.groupControl1.Controls.Add(this.ButtonAsignar);
            this.groupControl1.Controls.Add(this.groupBox1);
            this.groupControl1.Controls.Add(this.cboVendedores);
            this.groupControl1.Controls.Add(this.labelControl7);
            this.groupControl1.Controls.Add(this.DateApertura);
            this.groupControl1.Controls.Add(this.labelControl6);
            this.groupControl1.Controls.Add(this.labelControl4);
            this.groupControl1.Controls.Add(this.DateRevision);
            this.groupControl1.Controls.Add(this.labelControl3);
            this.groupControl1.Controls.Add(this.labelControl1);
            this.groupControl1.Controls.Add(this.CboCliente);
            this.groupControl1.Controls.Add(this.lblCuenta);
            this.groupControl1.Location = new System.Drawing.Point(5, 5);
            this.groupControl1.Name = "groupControl1";
            this.groupControl1.Size = new System.Drawing.Size(565, 329);
            this.groupControl1.TabIndex = 1;
            this.groupControl1.Text = "Datos Generales";
            this.groupControl1.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl1_Paint);
            // 
            // cboPrioridad
            // 
            this.cboPrioridad.Location = new System.Drawing.Point(395, 291);
            this.cboPrioridad.Name = "cboPrioridad";
            this.cboPrioridad.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cboPrioridad.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.cboPrioridad.Size = new System.Drawing.Size(60, 20);
            this.cboPrioridad.TabIndex = 48;
            // 
            // labelControl9
            // 
            this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
            this.labelControl9.Location = new System.Drawing.Point(333, 294);
            this.labelControl9.Name = "labelControl9";
            this.labelControl9.Size = new System.Drawing.Size(46, 13);
            this.labelControl9.TabIndex = 47;
            this.labelControl9.Text = "Prioridad:";
            // 
            // txtShipper
            // 
            this.txtShipper.Location = new System.Drawing.Point(395, 265);
            this.txtShipper.Name = "txtShipper";
            this.txtShipper.Size = new System.Drawing.Size(154, 20);
            this.txtShipper.TabIndex = 46;
            // 
            // labelControl2
            // 
            this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
            this.labelControl2.Location = new System.Drawing.Point(333, 268);
            this.labelControl2.Name = "labelControl2";
            this.labelControl2.Size = new System.Drawing.Size(40, 13);
            this.labelControl2.TabIndex = 45;
            this.labelControl2.Text = "Shipper:";
            // 
            // sButtonEliminarTrafico
            // 
            this.sButtonEliminarTrafico.AutoSizeInLayoutControl = true;
            this.sButtonEliminarTrafico.Image = ((System.Drawing.Image)(resources.GetObject("sButtonEliminarTrafico.Image")));
            this.sButtonEliminarTrafico.Location = new System.Drawing.Point(295, 127);
            this.sButtonEliminarTrafico.Name = "sButtonEliminarTrafico";
            this.sButtonEliminarTrafico.Size = new System.Drawing.Size(26, 24);
            this.sButtonEliminarTrafico.TabIndex = 7;
            this.sButtonEliminarTrafico.Click += new System.EventHandler(this.sButtonEliminarTrafico_Click);
            // 
            // sButtonAgregarTrafico
            // 
            this.sButtonAgregarTrafico.Image = ((System.Drawing.Image)(resources.GetObject("sButtonAgregarTrafico.Image")));
            this.sButtonAgregarTrafico.Location = new System.Drawing.Point(295, 151);
            this.sButtonAgregarTrafico.Name = "sButtonAgregarTrafico";
            this.sButtonAgregarTrafico.Size = new System.Drawing.Size(27, 24);
            this.sButtonAgregarTrafico.TabIndex = 5;
            this.sButtonAgregarTrafico.Click += new System.EventHandler(this.sButtonAgregarTrafico_Click);
            // 
            // gridTraficos
            // 
            this.gridTraficos.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.gridTraficos.Location = new System.Drawing.Point(327, 82);
            this.gridTraficos.MainView = this.gridViewTraficos;
            this.gridTraficos.Name = "gridTraficos";
            this.gridTraficos.Size = new System.Drawing.Size(233, 94);
            this.gridTraficos.TabIndex = 6;
            this.gridTraficos.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewTraficos});
            // 
            // gridViewTraficos
            // 
            this.gridViewTraficos.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn1,
            this.gridColTipoGlosa});
            this.gridViewTraficos.GridControl = this.gridTraficos;
            this.gridViewTraficos.Name = "gridViewTraficos";
            this.gridViewTraficos.NewItemRowText = "Click aqui para agregar nueva fila";
            this.gridViewTraficos.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.True;
            this.gridViewTraficos.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.True;
            this.gridViewTraficos.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn1
            // 
            this.gridColumn1.FieldName = "Glosa";
            this.gridColumn1.Name = "gridColumn1";
            this.gridColumn1.Visible = true;
            this.gridColumn1.VisibleIndex = 0;
            this.gridColumn1.Width = 58;
            // 
            // gridColTipoGlosa
            // 
            this.gridColTipoGlosa.Caption = "Tipo Glosa";
            this.gridColTipoGlosa.FieldName = "TipoGlosa";
            this.gridColTipoGlosa.Name = "gridColTipoGlosa";
            // 
            // gridCompetencia
            // 
            this.gridCompetencia.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.gridCompetencia.Location = new System.Drawing.Point(71, 178);
            this.gridCompetencia.MainView = this.gridViewCompetencia;
            this.gridCompetencia.Name = "gridCompetencia";
            this.gridCompetencia.Size = new System.Drawing.Size(203, 81);
            this.gridCompetencia.TabIndex = 9;
            this.gridCompetencia.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewCompetencia});
            // 
            // gridViewCompetencia
            // 
            this.gridViewCompetencia.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColCompetidor});
            this.gridViewCompetencia.GridControl = this.gridCompetencia;
            this.gridViewCompetencia.Name = "gridViewCompetencia";
            this.gridViewCompetencia.NewItemRowText = "Click aqui para agregar nueva fila";
            this.gridViewCompetencia.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.True;
            this.gridViewCompetencia.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.True;
            this.gridViewCompetencia.OptionsView.ShowGroupPanel = false;
            // 
            // gridColCompetidor
            // 
            this.gridColCompetidor.Caption = "Competencia";
            this.gridColCompetidor.FieldName = "Descripcion";
            this.gridColCompetidor.Name = "gridColCompetidor";
            this.gridColCompetidor.Visible = true;
            this.gridColCompetidor.VisibleIndex = 0;
            this.gridColCompetidor.Width = 58;
            // 
            // sButtonEliminar
            // 
            this.sButtonEliminar.AutoSizeInLayoutControl = true;
            this.sButtonEliminar.Image = ((System.Drawing.Image)(resources.GetObject("sButtonEliminar.Image")));
            this.sButtonEliminar.Location = new System.Drawing.Point(38, 211);
            this.sButtonEliminar.Name = "sButtonEliminar";
            this.sButtonEliminar.Size = new System.Drawing.Size(26, 24);
            this.sButtonEliminar.TabIndex = 10;
            this.sButtonEliminar.Click += new System.EventHandler(this.sButtonEliminar_Click);
            // 
            // sBAgregar
            // 
            this.sBAgregar.Image = ((System.Drawing.Image)(resources.GetObject("sBAgregar.Image")));
            this.sBAgregar.Location = new System.Drawing.Point(38, 235);
            this.sBAgregar.Name = "sBAgregar";
            this.sBAgregar.Size = new System.Drawing.Size(27, 24);
            this.sBAgregar.TabIndex = 8;
            this.sBAgregar.Click += new System.EventHandler(this.sBAgregar_Click);
            // 
            // lstProductos
            // 
            this.lstProductos.CheckOnClick = true;
            this.lstProductos.HorizontalScrollbar = true;
            this.lstProductos.HorzScrollStep = 10;
            this.lstProductos.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Item1"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Item2"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Item3"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Item4"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Item5")});
            this.lstProductos.Location = new System.Drawing.Point(71, 82);
            this.lstProductos.Name = "lstProductos";
            this.lstProductos.Size = new System.Drawing.Size(187, 90);
            this.lstProductos.TabIndex = 4;
            // 
            // labelControl8
            // 
            this.labelControl8.Appearance.Options.UseTextOptions = true;
            this.labelControl8.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.labelControl8.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.labelControl8.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
            this.labelControl8.Location = new System.Drawing.Point(8, 287);
            this.labelControl8.Name = "labelControl8";
            this.labelControl8.Size = new System.Drawing.Size(57, 37);
            this.labelControl8.TabIndex = 44;
            this.labelControl8.Text = "Tipo Contenedor";
            // 
            // lstTipoContenedor
            // 
            this.lstTipoContenedor.Location = new System.Drawing.Point(71, 291);
            this.lstTipoContenedor.Name = "lstTipoContenedor";
            this.lstTipoContenedor.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.lstTipoContenedor.Size = new System.Drawing.Size(203, 20);
            this.lstTipoContenedor.TabIndex = 12;
            this.lstTipoContenedor.SelectedIndexChanged += new System.EventHandler(this.lstTipoContenedor_SelectedIndexChanged);
            this.lstTipoContenedor.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.lstTipoContenedor_KeyPress);
            // 
            // txtCommodity
            // 
            this.txtCommodity.Location = new System.Drawing.Point(71, 265);
            this.txtCommodity.Name = "txtCommodity";
            this.txtCommodity.Size = new System.Drawing.Size(203, 20);
            this.txtCommodity.TabIndex = 11;
            this.txtCommodity.EditValueChanged += new System.EventHandler(this.txtCommodity_EditValueChanged_1);
            this.txtCommodity.Enter += new System.EventHandler(this.txtCommodity_Enter);
            this.txtCommodity.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtCommodity_KeyPress);
            this.txtCommodity.Click += new System.EventHandler(this.txtCommodity_Click);
            // 
            // labelControl5
            // 
            this.labelControl5.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
            this.labelControl5.Location = new System.Drawing.Point(8, 268);
            this.labelControl5.Name = "labelControl5";
            this.labelControl5.Size = new System.Drawing.Size(57, 13);
            this.labelControl5.TabIndex = 41;
            this.labelControl5.Text = "Commodity:";
            // 
            // txtTarget
            // 
            this.txtTarget.Location = new System.Drawing.Point(254, 22);
            this.txtTarget.Name = "txtTarget";
            this.txtTarget.Size = new System.Drawing.Size(295, 20);
            this.txtTarget.TabIndex = 2;
            this.txtTarget.Enter += new System.EventHandler(this.txtTarget_Enter);
            this.txtTarget.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtTarget_KeyPress);
            this.txtTarget.Click += new System.EventHandler(this.txtTarget_Click);
            // 
            // lblTarget
            // 
            this.lblTarget.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
            this.lblTarget.Location = new System.Drawing.Point(211, 25);
            this.lblTarget.Name = "lblTarget";
            this.lblTarget.Size = new System.Drawing.Size(41, 13);
            this.lblTarget.TabIndex = 36;
            this.lblTarget.Text = "Nombre:";
            // 
            // chartControl1
            // 
            xyDiagram1.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
            xyDiagram1.AxisX.Range.SideMarginsEnabled = true;
            xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
            xyDiagram1.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
            xyDiagram1.AxisY.Range.SideMarginsEnabled = true;
            xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
            this.chartControl1.Diagram = xyDiagram1;
            this.chartControl1.Location = new System.Drawing.Point(571, 199);
            this.chartControl1.Name = "chartControl1";
            fullStackedBarSeriesLabel1.OverlappingOptionsTypeName = "OverlappingOptions";
            series1.Label = fullStackedBarSeriesLabel1;
            series1.Name = "Vendedor";
            series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint1,
            seriesPoint2,
            seriesPoint3});
            series1.View = fullStackedBarSeriesView1;
            fullStackedBarSeriesLabel2.OverlappingOptionsTypeName = "OverlappingOptions";
            series2.Label = fullStackedBarSeriesLabel2;
            series2.Name = "Cliente";
            series2.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint4});
            series2.View = fullStackedBarSeriesView2;
            this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series1,
        series2};
            fullStackedBarSeriesLabel3.OverlappingOptionsTypeName = "OverlappingOptions";
            this.chartControl1.SeriesTemplate.Label = fullStackedBarSeriesLabel3;
            this.chartControl1.SeriesTemplate.View = fullStackedBarSeriesView3;
            this.chartControl1.Size = new System.Drawing.Size(402, 277);
            this.chartControl1.TabIndex = 35;
            // 
            // ButtonAsignar
            // 
            this.ButtonAsignar.Location = new System.Drawing.Point(461, 291);
            this.ButtonAsignar.Name = "ButtonAsignar";
            this.ButtonAsignar.Size = new System.Drawing.Size(88, 33);
            this.ButtonAsignar.TabIndex = 16;
            this.ButtonAsignar.Text = "Asignar";
            this.ButtonAsignar.Click += new System.EventHandler(this.ButtonAsignar_Click);
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.rbTarget);
            this.groupBox1.Controls.Add(this.rbCuenta);
            this.groupBox1.Location = new System.Drawing.Point(7, 25);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(197, 43);
            this.groupBox1.TabIndex = 32;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Tipo Target";
            // 
            // rbTarget
            // 
            this.rbTarget.AutoSize = true;
            this.rbTarget.Location = new System.Drawing.Point(101, 19);
            this.rbTarget.Name = "rbTarget";
            this.rbTarget.Size = new System.Drawing.Size(90, 17);
            this.rbTarget.TabIndex = 1;
            this.rbTarget.Text = "NuevoTráfico";
            this.rbTarget.UseVisualStyleBackColor = true;
            this.rbTarget.CheckedChanged += new System.EventHandler(this.rbTarget_CheckedChanged);
            // 
            // rbCuenta
            // 
            this.rbCuenta.AutoSize = true;
            this.rbCuenta.Checked = true;
            this.rbCuenta.Location = new System.Drawing.Point(6, 18);
            this.rbCuenta.Name = "rbCuenta";
            this.rbCuenta.Size = new System.Drawing.Size(94, 17);
            this.rbCuenta.TabIndex = 0;
            this.rbCuenta.TabStop = true;
            this.rbCuenta.Text = "Nueva Cuenta";
            this.rbCuenta.UseVisualStyleBackColor = true;
            this.rbCuenta.Enter += new System.EventHandler(this.rbCuenta_Enter);
            this.rbCuenta.CheckedChanged += new System.EventHandler(this.rbCuenta_CheckedChanged);
            // 
            // cboVendedores
            // 
            this.cboVendedores.Location = new System.Drawing.Point(395, 239);
            this.cboVendedores.Name = "cboVendedores";
            this.cboVendedores.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cboVendedores.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.cboVendedores.Size = new System.Drawing.Size(154, 20);
            this.cboVendedores.TabIndex = 15;
            this.cboVendedores.SelectedIndexChanged += new System.EventHandler(this.cboVendedores_SelectedIndexChanged);
            this.cboVendedores.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.cboVendedores_KeyPress);
            // 
            // labelControl7
            // 
            this.labelControl7.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
            this.labelControl7.Location = new System.Drawing.Point(333, 242);
            this.labelControl7.Name = "labelControl7";
            this.labelControl7.Size = new System.Drawing.Size(50, 13);
            this.labelControl7.TabIndex = 29;
            this.labelControl7.Text = "Vendedor:";
            // 
            // DateApertura
            // 
            this.DateApertura.EditValue = null;
            this.DateApertura.Enabled = false;
            this.DateApertura.Location = new System.Drawing.Point(447, 213);
            this.DateApertura.Name = "DateApertura";
            this.DateApertura.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.DateApertura.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.DateApertura.Size = new System.Drawing.Size(102, 20);
            this.DateApertura.TabIndex = 14;
            this.DateApertura.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.DateApertura_KeyPress);
            // 
            // labelControl6
            // 
            this.labelControl6.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
            this.labelControl6.Location = new System.Drawing.Point(355, 216);
            this.labelControl6.Name = "labelControl6";
            this.labelControl6.Size = new System.Drawing.Size(79, 13);
            this.labelControl6.TabIndex = 27;
            this.labelControl6.Text = "Fecha Apertura:";
            // 
            // labelControl4
            // 
            this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
            this.labelControl4.Location = new System.Drawing.Point(355, 190);
            this.labelControl4.Name = "labelControl4";
            this.labelControl4.Size = new System.Drawing.Size(82, 13);
            this.labelControl4.TabIndex = 26;
            this.labelControl4.Text = "Fecha Follow Up:";
            // 
            // DateRevision
            // 
            this.DateRevision.EditValue = null;
            this.DateRevision.Location = new System.Drawing.Point(447, 187);
            this.DateRevision.Name = "DateRevision";
            this.DateRevision.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.DateRevision.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.DateRevision.Size = new System.Drawing.Size(102, 20);
            this.DateRevision.TabIndex = 13;
            this.DateRevision.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.DateRevision_KeyPress);
            // 
            // labelControl3
            // 
            this.labelControl3.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
            this.labelControl3.Location = new System.Drawing.Point(264, 82);
            this.labelControl3.Name = "labelControl3";
            this.labelControl3.Size = new System.Drawing.Size(42, 13);
            this.labelControl3.TabIndex = 24;
            this.labelControl3.Text = "Tráficos:";
            // 
            // labelControl1
            // 
            this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
            this.labelControl1.Location = new System.Drawing.Point(7, 74);
            this.labelControl1.Name = "labelControl1";
            this.labelControl1.Size = new System.Drawing.Size(73, 22);
            this.labelControl1.TabIndex = 19;
            this.labelControl1.Text = "Productos:";
            // 
            // CboCliente
            // 
            this.CboCliente.Location = new System.Drawing.Point(254, 48);
            this.CboCliente.Name = "CboCliente";
            this.CboCliente.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.CboCliente.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.CboCliente.Size = new System.Drawing.Size(295, 20);
            this.CboCliente.TabIndex = 3;
            this.CboCliente.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.CboCliente_KeyPress);
            // 
            // lblCuenta
            // 
            this.lblCuenta.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
            this.lblCuenta.Location = new System.Drawing.Point(211, 48);
            this.lblCuenta.Name = "lblCuenta";
            this.lblCuenta.Size = new System.Drawing.Size(73, 22);
            this.lblCuenta.TabIndex = 17;
            this.lblCuenta.Text = "Cuenta:";
            // 
            // panelControl1
            // 
            this.panelControl1.Controls.Add(this.chartControl2);
            this.panelControl1.Controls.Add(this.groupControl1);
            this.panelControl1.Location = new System.Drawing.Point(3, 39);
            this.panelControl1.Name = "panelControl1";
            this.panelControl1.Size = new System.Drawing.Size(575, 339);
            this.panelControl1.TabIndex = 0;
            this.panelControl1.Paint += new System.Windows.Forms.PaintEventHandler(this.panelControl1_Paint);
            // 
            // chartControl2
            // 
            xyDiagram2.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
            xyDiagram2.AxisX.Range.SideMarginsEnabled = true;
            xyDiagram2.AxisX.VisibleInPanesSerializable = "-1";
            xyDiagram2.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
            xyDiagram2.AxisY.Range.SideMarginsEnabled = true;
            xyDiagram2.AxisY.VisibleInPanesSerializable = "-1";
            this.chartControl2.Diagram = xyDiagram2;
            this.chartControl2.Location = new System.Drawing.Point(576, 276);
            this.chartControl2.Name = "chartControl2";
            fullStackedBarSeriesLabel4.OverlappingOptionsTypeName = "OverlappingOptions";
            series3.Label = fullStackedBarSeriesLabel4;
            series3.Name = "Vendedor";
            series3.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint5,
            seriesPoint6,
            seriesPoint7});
            series3.View = fullStackedBarSeriesView4;
            fullStackedBarSeriesLabel5.OverlappingOptionsTypeName = "OverlappingOptions";
            series4.Label = fullStackedBarSeriesLabel5;
            series4.Name = "Cliente";
            series4.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint8});
            series4.View = fullStackedBarSeriesView5;
            this.chartControl2.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series3,
        series4};
            fullStackedBarSeriesLabel6.OverlappingOptionsTypeName = "OverlappingOptions";
            this.chartControl2.SeriesTemplate.Label = fullStackedBarSeriesLabel6;
            this.chartControl2.SeriesTemplate.View = fullStackedBarSeriesView6;
            this.chartControl2.Size = new System.Drawing.Size(402, 188);
            this.chartControl2.TabIndex = 35;
            // 
            // groupControl3
            // 
            this.groupControl3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.groupControl3.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.groupControl3.AppearanceCaption.ForeColor = System.Drawing.Color.DarkBlue;
            this.groupControl3.AppearanceCaption.Options.UseFont = true;
            this.groupControl3.AppearanceCaption.Options.UseForeColor = true;
            this.groupControl3.Controls.Add(this.DateHasta);
            this.groupControl3.Controls.Add(this.DateDesde);
            this.groupControl3.Controls.Add(this.ChartProspectos);
            this.groupControl3.Controls.Add(this.gridTargetAbiertos);
            this.groupControl3.Location = new System.Drawing.Point(3, 379);
            this.groupControl3.Name = "groupControl3";
            this.groupControl3.Size = new System.Drawing.Size(977, 193);
            this.groupControl3.TabIndex = 2;
            this.groupControl3.Text = "Estadística Prospectos Abiertos";
            this.groupControl3.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl3_Paint);
            // 
            // DateHasta
            // 
            this.DateHasta.EditValue = null;
            this.DateHasta.Location = new System.Drawing.Point(118, 23);
            this.DateHasta.Name = "DateHasta";
            this.DateHasta.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.DateHasta.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.DateHasta.Size = new System.Drawing.Size(91, 20);
            this.DateHasta.TabIndex = 37;
            this.DateHasta.EditValueChanged += new System.EventHandler(this.DateHasta_EditValueChanged);
            this.DateHasta.Leave += new System.EventHandler(this.DateHasta_Leave);
            // 
            // DateDesde
            // 
            this.DateDesde.EditValue = null;
            this.DateDesde.Location = new System.Drawing.Point(5, 23);
            this.DateDesde.Name = "DateDesde";
            this.DateDesde.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.DateDesde.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.DateDesde.Size = new System.Drawing.Size(91, 20);
            this.DateDesde.TabIndex = 36;
            this.DateDesde.EditValueChanged += new System.EventHandler(this.DateDesde_EditValueChanged);
            this.DateDesde.Leave += new System.EventHandler(this.DateDesde_Leave);
            // 
            // ChartProspectos
            // 
            this.ChartProspectos.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Right)));
            xyDiagram3.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
            xyDiagram3.AxisX.Range.SideMarginsEnabled = true;
            xyDiagram3.AxisX.VisibleInPanesSerializable = "-1";
            xyDiagram3.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
            xyDiagram3.AxisY.Range.SideMarginsEnabled = true;
            xyDiagram3.AxisY.VisibleInPanesSerializable = "-1";
            this.ChartProspectos.Diagram = xyDiagram3;
            this.ChartProspectos.Location = new System.Drawing.Point(486, 23);
            this.ChartProspectos.Name = "ChartProspectos";
            stackedBarSeriesLabel1.OverlappingOptionsTypeName = "OverlappingOptions";
            series5.Label = stackedBarSeriesLabel1;
            series5.Name = "Propuesta";
            series5.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint9,
            seriesPoint10,
            seriesPoint11,
            seriesPoint12,
            seriesPoint13,
            seriesPoint14,
            seriesPoint15});
            series5.View = stackedBarSeriesView1;
            stackedBarSeriesLabel2.OverlappingOptionsTypeName = "OverlappingOptions";
            series6.Label = stackedBarSeriesLabel2;
            series6.Name = "Asignada";
            series6.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint16,
            seriesPoint17,
            seriesPoint18,
            seriesPoint19,
            seriesPoint20,
            seriesPoint21,
            seriesPoint22});
            series6.View = stackedBarSeriesView2;
            stackedBarSeriesLabel3.OverlappingOptionsTypeName = "OverlappingOptions";
            series7.Label = stackedBarSeriesLabel3;
            series7.Name = "Revisión";
            series7.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint23,
            seriesPoint24,
            seriesPoint25,
            seriesPoint26,
            seriesPoint27,
            seriesPoint28,
            seriesPoint29});
            series7.View = stackedBarSeriesView3;
            this.ChartProspectos.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series5,
        series6,
        series7};
            stackedBarSeriesLabel4.OverlappingOptionsTypeName = "OverlappingOptions";
            this.ChartProspectos.SeriesTemplate.Label = stackedBarSeriesLabel4;
            this.ChartProspectos.SeriesTemplate.View = stackedBarSeriesView4;
            this.ChartProspectos.Size = new System.Drawing.Size(486, 163);
            this.ChartProspectos.TabIndex = 35;
            // 
            // gridTargetAbiertos
            // 
            this.gridTargetAbiertos.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)));
            this.gridTargetAbiertos.Location = new System.Drawing.Point(5, 49);
            this.gridTargetAbiertos.MainView = this.gridView2;
            this.gridTargetAbiertos.Name = "gridTargetAbiertos";
            this.gridTargetAbiertos.Size = new System.Drawing.Size(475, 137);
            this.gridTargetAbiertos.TabIndex = 1;
            this.gridTargetAbiertos.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView2});
            // 
            // gridView2
            // 
            this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn3,
            this.gridColumn4,
            this.gridColumn7,
            this.gridColumn8,
            this.gridColumn9});
            this.gridView2.GridControl = this.gridTargetAbiertos;
            this.gridView2.Name = "gridView2";
            this.gridView2.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn3
            // 
            this.gridColumn3.Caption = "N° Target";
            this.gridColumn3.FieldName = "NumMeta";
            this.gridColumn3.Name = "gridColumn3";
            this.gridColumn3.Visible = true;
            this.gridColumn3.VisibleIndex = 0;
            this.gridColumn3.Width = 58;
            // 
            // gridColumn4
            // 
            this.gridColumn4.Caption = "Cuenta/Target";
            this.gridColumn4.FieldName = "CuentaTarget";
            this.gridColumn4.Name = "gridColumn4";
            this.gridColumn4.Visible = true;
            this.gridColumn4.VisibleIndex = 2;
            this.gridColumn4.Width = 145;
            // 
            // gridColumn7
            // 
            this.gridColumn7.Caption = "Vendedor";
            this.gridColumn7.FieldName = "Vendedor";
            this.gridColumn7.Name = "gridColumn7";
            this.gridColumn7.Visible = true;
            this.gridColumn7.VisibleIndex = 3;
            this.gridColumn7.Width = 123;
            // 
            // gridColumn8
            // 
            this.gridColumn8.Caption = "Estado";
            this.gridColumn8.FieldName = "Estado";
            this.gridColumn8.Name = "gridColumn8";
            this.gridColumn8.Visible = true;
            this.gridColumn8.VisibleIndex = 4;
            this.gridColumn8.Width = 94;
            // 
            // gridColumn9
            // 
            this.gridColumn9.Caption = "Tipo";
            this.gridColumn9.FieldName = "Tipo";
            this.gridColumn9.Name = "gridColumn9";
            this.gridColumn9.Visible = true;
            this.gridColumn9.VisibleIndex = 1;
            this.gridColumn9.Width = 49;
            // 
            // toolStripBarraLlamada
            // 
            this.toolStripBarraLlamada.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.MenuNuevo,
            this.toolStripSeparator1,
            this.MenuSalir});
            this.toolStripBarraLlamada.Location = new System.Drawing.Point(0, 0);
            this.toolStripBarraLlamada.Name = "toolStripBarraLlamada";
            this.toolStripBarraLlamada.Size = new System.Drawing.Size(980, 38);
            this.toolStripBarraLlamada.TabIndex = 5;
            this.toolStripBarraLlamada.Text = "toolStrip1";
            // 
            // MenuNuevo
            // 
            this.MenuNuevo.Image = ((System.Drawing.Image)(resources.GetObject("MenuNuevo.Image")));
            this.MenuNuevo.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuNuevo.Name = "MenuNuevo";
            this.MenuNuevo.Size = new System.Drawing.Size(45, 35);
            this.MenuNuevo.Text = "Nueva";
            this.MenuNuevo.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            this.MenuNuevo.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.MenuNuevo.ToolTipText = "Nueva Llamada";
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 38);
            // 
            // MenuSalir
            // 
            this.MenuSalir.Image = ((System.Drawing.Image)(resources.GetObject("MenuSalir.Image")));
            this.MenuSalir.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuSalir.Name = "MenuSalir";
            this.MenuSalir.Size = new System.Drawing.Size(33, 35);
            this.MenuSalir.Text = "Salir";
            this.MenuSalir.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.MenuSalir.Click += new System.EventHandler(this.MenuSalir_Click_1);
            // 
            // groupControl2
            // 
            this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.groupControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
            this.groupControl2.Appearance.ForeColor = System.Drawing.Color.DarkBlue;
            this.groupControl2.Appearance.Options.UseFont = true;
            this.groupControl2.Appearance.Options.UseForeColor = true;
            this.groupControl2.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
            this.groupControl2.AppearanceCaption.ForeColor = System.Drawing.Color.DarkBlue;
            this.groupControl2.AppearanceCaption.Options.UseFont = true;
            this.groupControl2.AppearanceCaption.Options.UseForeColor = true;
            this.groupControl2.Controls.Add(this.ButtonEnviar);
            this.groupControl2.Controls.Add(this.gridAsignaciones);
            this.groupControl2.Location = new System.Drawing.Point(579, 39);
            this.groupControl2.Name = "groupControl2";
            this.groupControl2.Size = new System.Drawing.Size(401, 339);
            this.groupControl2.TabIndex = 34;
            this.groupControl2.Text = "Resumen Asignación";
            this.groupControl2.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl2_Paint);
            // 
            // ButtonEnviar
            // 
            this.ButtonEnviar.Appearance.ForeColor = System.Drawing.Color.DarkBlue;
            this.ButtonEnviar.Appearance.Options.UseForeColor = true;
            this.ButtonEnviar.Location = new System.Drawing.Point(5, 294);
            this.ButtonEnviar.Name = "ButtonEnviar";
            this.ButtonEnviar.Size = new System.Drawing.Size(96, 35);
            this.ButtonEnviar.TabIndex = 36;
            this.ButtonEnviar.Text = "Enviar Prospectos";
            this.ButtonEnviar.Click += new System.EventHandler(this.ButtonEnviar_Click);
            // 
            // gridAsignaciones
            // 
            this.gridAsignaciones.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.gridAsignaciones.Location = new System.Drawing.Point(5, 25);
            this.gridAsignaciones.MainView = this.gridView1;
            this.gridAsignaciones.Name = "gridAsignaciones";
            this.gridAsignaciones.Size = new System.Drawing.Size(386, 265);
            this.gridAsignaciones.TabIndex = 0;
            this.gridAsignaciones.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView1});
            // 
            // gridView1
            // 
            this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColVendedor,
            this.gridColTipoTarget,
            this.gridColCliente,
            this.gridColFechaRevision,
            this.gridColTipoContenedor});
            this.gridView1.GridControl = this.gridAsignaciones;
            this.gridView1.GroupCount = 1;
            this.gridView1.Name = "gridView1";
            this.gridView1.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColVendedor, DevExpress.Data.ColumnSortOrder.Ascending)});
            // 
            // gridColVendedor
            // 
            this.gridColVendedor.Caption = "Vendedor";
            this.gridColVendedor.FieldName = "ObjMetaAsignacion.ObjVendedorAsignado.NombreUsuario";
            this.gridColVendedor.Name = "gridColVendedor";
            this.gridColVendedor.Width = 126;
            // 
            // gridColTipoTarget
            // 
            this.gridColTipoTarget.Caption = "Tipo Target";
            this.gridColTipoTarget.FieldName = "TipoOportunidad";
            this.gridColTipoTarget.Name = "gridColTipoTarget";
            this.gridColTipoTarget.Visible = true;
            this.gridColTipoTarget.VisibleIndex = 0;
            this.gridColTipoTarget.Width = 77;
            // 
            // gridColCliente
            // 
            this.gridColCliente.Caption = "Cliente";
            this.gridColCliente.FieldName = "GlosaClienteTarget";
            this.gridColCliente.Name = "gridColCliente";
            this.gridColCliente.Visible = true;
            this.gridColCliente.VisibleIndex = 1;
            this.gridColCliente.Width = 307;
            // 
            // gridColFechaRevision
            // 
            this.gridColFechaRevision.Caption = "Fecha Revisión";
            this.gridColFechaRevision.FieldName = "FechaRevision";
            this.gridColFechaRevision.Name = "gridColFechaRevision";
            this.gridColFechaRevision.Width = 137;
            // 
            // gridColTipoContenedor
            // 
            this.gridColTipoContenedor.Caption = "Tipo Contenedor";
            this.gridColTipoContenedor.FieldName = "ObjTipoContenedor.Descripcion";
            this.gridColTipoContenedor.Name = "gridColTipoContenedor";
            this.gridColTipoContenedor.Visible = true;
            this.gridColTipoContenedor.VisibleIndex = 2;
            this.gridColTipoContenedor.Width = 142;
            // 
            // ctrldxError
            // 
            this.ctrldxError.ContainerControl = this;
            // 
            // frmDefinirMeta
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(980, 574);
            this.Controls.Add(this.toolStripBarraLlamada);
            this.Controls.Add(this.groupControl2);
            this.Controls.Add(this.groupControl3);
            this.Controls.Add(this.panelControl1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "frmDefinirMeta";
            this.Text = "Definir TARGET";
            this.Load += new System.EventHandler(this.frmDefinirMeta_Load);
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmDefinirMeta_FormClosed);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
            this.groupControl1.ResumeLayout(false);
            this.groupControl1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cboPrioridad.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtShipper.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridTraficos)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewTraficos)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridCompetencia)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewCompetencia)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lstProductos)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lstTipoContenedor.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtCommodity.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtTarget.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBarSeriesLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBarSeriesView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBarSeriesLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBarSeriesView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBarSeriesLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBarSeriesView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cboVendedores.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateApertura.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateApertura.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateRevision.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateRevision.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.CboCliente.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            this.panelControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(xyDiagram2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBarSeriesLabel4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBarSeriesView4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBarSeriesLabel5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBarSeriesView5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBarSeriesLabel6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(fullStackedBarSeriesView6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
            this.groupControl3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.DateHasta.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateHasta.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateDesde.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateDesde.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ChartProspectos)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridTargetAbiertos)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
            this.toolStripBarraLlamada.ResumeLayout(false);
            this.toolStripBarraLlamada.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
            this.groupControl2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridAsignaciones)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ctrldxError)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Example #53
0
        private void btnLoadData_Click(object sender, EventArgs e)
        {
            btnLoadData.Enabled       = false;
            btnLoadData.BackColor     = System.Drawing.Color.Red;
            btnPlayback.BackColor     = System.Drawing.Color.Red;
            btnStopPlayback.BackColor = System.Drawing.Color.Red;
            btnPlayback.Enabled       = false;
            btnStopPlayback.Enabled   = false;
            Cursor = Cursors.WaitCursor;
            SQLCode sql     = new SQLCode();
            bool    chkTime = checkTimeRange();

            if (!chkTime)
            {
                return;
            }
            try {
                if (startDateTime == Convert.ToDateTime("1/1/0001") || endDateTime == Convert.ToDateTime("1/1/0001"))
                {
                    MessageBox.Show("Missing Date/Time information, preload data first");
                    return;
                }

                if (string.IsNullOrEmpty(cboTrucks.Text))
                {
                    MessageBox.Show("Please select a truck first");
                    return;
                }
                bool check = true;
                if (cboTrucks.Text.ToUpper() != "SELECT" && check == true)
                {
                    sql.loadTruckPlaybackData(cboTrucks.Text, startDateTime, endDateTime);
                    check = false;
                }

                if (cboCallsigns.Text.ToUpper() != "SELECT" && check == true)
                {
                    sql.loadCallSignPlayback(cboCallsigns.Text, startDateTime, endDateTime);
                    check = false;
                }

                if (cboDrivers.Text.ToUpper() != "SELECT" && check == true)
                {
                    sql.loadDriverPlayback(cboDrivers.Text, startDateTime, endDateTime);
                    check = false;
                }

                /*  Can't run a query by contractor or beat since that would return multiple trucks
                 * Multiple truck completely bone up the graph */
                if (cboContractors.Text.ToUpper() != "SELECT" && check == true)
                {
                    /*
                     * sql.loadContractorPlayback(cboContractors.Text, startDateTime, endDateTime);
                     * check = false;
                     * */
                    MessageBox.Show("This functionality has been disabled");
                    return;
                }

                if (cboBeats.Text.ToUpper() != "SELECT" && check == true)
                {
                    /*
                     * sql.loadBeatPlayback(cboBeats.Text, startDateTime, endDateTime);
                     * check = false;
                     * */
                    MessageBox.Show("This functionality has been disabled");
                    return;
                }

                gMapControl1.Overlays.Clear();
                if (globalData.playbackData.Count > 0)
                {
                    string beatNumber = "NOBEAT";
                    foreach (playBackRow row in globalData.playbackData)
                    {
                        if (row.Beat != "NOBEAT")
                        {
                            beatNumber = row.Beat;
                            break;
                        }
                    }
                    drawBeats(beatNumber);
                    drawDrops(beatNumber);
                    gMapControl1.Position = new PointLatLng(globalData.playbackData[0].Lat, globalData.playbackData[0].Lon);
                    //chart data
                    chartControl1.Series.Clear();
                    //find max speed in range
                    int maxSpeed = 0;
                    foreach (playBackRow row in globalData.playbackData)
                    {
                        if (row.Speed > maxSpeed)
                        {
                            maxSpeed = row.Speed;
                        }
                    }
                    if (maxSpeed == 0)
                    {
                        maxSpeed = 1;
                    }
                    DevExpress.XtraCharts.Series series    = new DevExpress.XtraCharts.Series("Speed Over Time", DevExpress.XtraCharts.ViewType.Line);
                    DevExpress.XtraCharts.Series barSeries = new DevExpress.XtraCharts.Series("Max Speed", DevExpress.XtraCharts.ViewType.Bar);
                    //Add Data to the chart
                    foreach (playBackRow row in globalData.playbackData)
                    {
                        string st     = string.Empty;
                        string hour   = row.timeStamp.Hour.ToString();
                        string minute = row.timeStamp.Minute.ToString();
                        string second = row.timeStamp.Second.ToString();
                        while (hour.Length < 2)
                        {
                            hour = "0" + hour;
                        }
                        while (minute.Length < 2)
                        {
                            minute = "0" + minute;
                        }
                        while (second.Length < 2)
                        {
                            second = "0" + second;
                        }
                        st = hour + "." + minute + "." + second;
                        series.Points.Add(new DevExpress.XtraCharts.SeriesPoint(st, row.Speed));
                        DevExpress.XtraCharts.SeriesPoint barPoint = new DevExpress.XtraCharts.SeriesPoint(st, maxSpeed);
                        barPoint.Tag = row.Status;

                        //barPoint.DateTimeArgument = row.timeStamp;
                        barPoint.ToolTipHint = row.Status;
                        barSeries.Points.Add(barPoint);

                        //add map data
                        GMapOverlay overlay = new GMapOverlay(row.timeStamp.ToString());
                        //Image markerImage = Image.FromFile(currentDirectory + geticonName(row.Status));
                        Image markerImage = getImage(row.Status);
                        markerImage = rotateImageByAngle(markerImage, row.Heading);
                        GMapCustomImageMarker marker = new GMapCustomImageMarker(markerImage, new PointLatLng(row.Lat, row.Lon));

                        marker.Size        = Size.Add(new System.Drawing.Size(markerImage.Height - 4, markerImage.Width - 4), new System.Drawing.Size(10, 10));
                        marker.ToolTipText = "Truck Number: " + row.TruckNumber + "|TimeStamp: " + row.timeStamp.ToString() + Environment.NewLine + "Click for more data";

                        overlay.Markers.Add(marker);
                        gMapControl1.Overlays.Add(overlay);
                    }
                    gMapControl1.Refresh();
                    //barSeries.ToolTipHintDataMember = barSeries.Tag.ToString();
                    chartControl1.Series.Add(barSeries);

                    chartControl1.Series.Add(series);


                    //map data
                    gvData.DataSource = globalData.playbackData;
                    gvData.RefreshDataSource();
                }
            }
            catch (Exception ex) {
                MessageBox.Show(ex.Message);
            }


            try
            {
                List <statusData> status = sql.getStatusData(cboTrucks.Text, startDateTime, endDateTime);
                gvStatusData.DataSource = status;
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.ToString());
            }
            btnLoadData.Enabled       = true;
            btnLoadData.BackColor     = System.Drawing.Color.LightGreen;
            btnPlayback.BackColor     = System.Drawing.Color.LightGreen;
            btnStopPlayback.BackColor = System.Drawing.Color.Red;
            btnPlayback.Enabled       = true;
            btnStopPlayback.Enabled   = false;
            btnExportData.BackColor   = System.Drawing.Color.LightGreen;
            btnExportData.Enabled     = true;
            Cursor = Cursors.Arrow;
        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmGestionarMetas));
            DevExpress.XtraCharts.XYDiagram xyDiagram2 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.Series series4 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel5 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint22 = new DevExpress.XtraCharts.SeriesPoint("LR", new object[] {
            ((object)(18))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint23 = new DevExpress.XtraCharts.SeriesPoint("DS", new object[] {
            ((object)(12))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint24 = new DevExpress.XtraCharts.SeriesPoint("DO", new object[] {
            ((object)(9))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint25 = new DevExpress.XtraCharts.SeriesPoint("SMC", new object[] {
            ((object)(15))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint26 = new DevExpress.XtraCharts.SeriesPoint("CY", new object[] {
            ((object)(21))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint27 = new DevExpress.XtraCharts.SeriesPoint("SF", new object[] {
            ((object)(8))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint28 = new DevExpress.XtraCharts.SeriesPoint("JMW", new object[] {
            ((object)(13))});
            DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView5 = new DevExpress.XtraCharts.StackedBarSeriesView();
            DevExpress.XtraCharts.Series series5 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel6 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint29 = new DevExpress.XtraCharts.SeriesPoint("LR", new object[] {
            ((object)(8))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint30 = new DevExpress.XtraCharts.SeriesPoint("DS", new object[] {
            ((object)(5))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint31 = new DevExpress.XtraCharts.SeriesPoint("DO", new object[] {
            ((object)(8))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint32 = new DevExpress.XtraCharts.SeriesPoint("SMC", new object[] {
            ((object)(12))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint33 = new DevExpress.XtraCharts.SeriesPoint("CY", new object[] {
            ((object)(23))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint34 = new DevExpress.XtraCharts.SeriesPoint("SF", new object[] {
            ((object)(6))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint35 = new DevExpress.XtraCharts.SeriesPoint("JMW", new object[] {
            ((object)(9))});
            DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView6 = new DevExpress.XtraCharts.StackedBarSeriesView();
            DevExpress.XtraCharts.Series series6 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel7 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
            DevExpress.XtraCharts.SeriesPoint seriesPoint36 = new DevExpress.XtraCharts.SeriesPoint("LR", new object[] {
            ((object)(4))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint37 = new DevExpress.XtraCharts.SeriesPoint("DS", new object[] {
            ((object)(1))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint38 = new DevExpress.XtraCharts.SeriesPoint("DO", new object[] {
            ((object)(2))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint39 = new DevExpress.XtraCharts.SeriesPoint("SMC", new object[] {
            ((object)(3))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint40 = new DevExpress.XtraCharts.SeriesPoint("CY", new object[] {
            ((object)(4))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint41 = new DevExpress.XtraCharts.SeriesPoint("SF", new object[] {
            ((object)(2))});
            DevExpress.XtraCharts.SeriesPoint seriesPoint42 = new DevExpress.XtraCharts.SeriesPoint("JMW", new object[] {
            ((object)(3))});
            DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView7 = new DevExpress.XtraCharts.StackedBarSeriesView();
            DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel8 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
            DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView8 = new DevExpress.XtraCharts.StackedBarSeriesView();
            this.toolStripBarraLlamada = new System.Windows.Forms.ToolStrip();
            this.MenuNuevo = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.MenuAsignar = new System.Windows.Forms.ToolStripButton();
            this.MenuReasignar = new System.Windows.Forms.ToolStripButton();
            this.MenuCancelar = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.MenuTodasAsignaciones = new System.Windows.Forms.ToolStripButton();
            this.MenuActividades = new System.Windows.Forms.ToolStripButton();
            this.MenuLlamadas = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
            this.MenuFichaTarget = new System.Windows.Forms.ToolStripButton();
            this.MenuFollowUp = new System.Windows.Forms.ToolStripButton();
            this.MenuCuenta = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
            this.MenuExcel = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.MenuSalir = new System.Windows.Forms.ToolStripButton();
            this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
            this.gridProspectos = new DevExpress.XtraGrid.GridControl();
            this.gridViewProspectos = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColNumMeta = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColTipoOportunidad = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColCuentaTarget = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColCuenta = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColVendedor = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColEstado = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColFAsignacion = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColFHoy = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColFUp = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColFActualizacion = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColTipoActualizacion = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemImageComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
            this.imageCollection1 = new DevExpress.Utils.ImageCollection(this.components);
            this.gridColIcono = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
            this.ImageCollection = new DevExpress.Utils.ImageCollection(this.components);
            this.sButtonGrabarObs = new DevExpress.XtraEditors.SimpleButton();
            this.gridObservaciones = new DevExpress.XtraGrid.GridControl();
            this.gridViewObs = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColUsuario = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColObservacion = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemMemoExEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
            this.gridFechaHora = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repSel = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
            this.repositoryItemMemoEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
            this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.ChartProspectos = new DevExpress.XtraCharts.ChartControl();
            this.sButtonEliminarObservacion = new DevExpress.XtraEditors.SimpleButton();
            this.sButtonAgregarObservacion = new DevExpress.XtraEditors.SimpleButton();
            this.ctrldxError = new DevExpress.XtraEditors.DXErrorProvider.DXErrorProvider(this.components);
            this.DateHasta = new DevExpress.XtraEditors.DateEdit();
            this.DateDesde = new DevExpress.XtraEditors.DateEdit();
            this.sBActualizar = new DevExpress.XtraEditors.SimpleButton();
            this.toolStripBarraLlamada.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
            this.groupControl3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridProspectos)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewProspectos)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ImageCollection)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridObservaciones)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewObs)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repSel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ChartProspectos)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ctrldxError)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateHasta.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateHasta.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateDesde.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateDesde.Properties)).BeginInit();
            this.SuspendLayout();
            // 
            // toolStripBarraLlamada
            // 
            this.toolStripBarraLlamada.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.MenuNuevo,
            this.toolStripSeparator2,
            this.MenuAsignar,
            this.MenuReasignar,
            this.MenuCancelar,
            this.toolStripSeparator1,
            this.MenuTodasAsignaciones,
            this.MenuActividades,
            this.MenuLlamadas,
            this.toolStripSeparator5,
            this.MenuFichaTarget,
            this.MenuFollowUp,
            this.MenuCuenta,
            this.toolStripSeparator4,
            this.MenuExcel,
            this.toolStripSeparator3,
            this.MenuSalir});
            this.toolStripBarraLlamada.Location = new System.Drawing.Point(0, 0);
            this.toolStripBarraLlamada.Name = "toolStripBarraLlamada";
            this.toolStripBarraLlamada.Size = new System.Drawing.Size(980, 36);
            this.toolStripBarraLlamada.TabIndex = 7;
            this.toolStripBarraLlamada.Text = "toolStrip1";
            // 
            // MenuNuevo
            // 
            this.MenuNuevo.Image = ((System.Drawing.Image)(resources.GetObject("MenuNuevo.Image")));
            this.MenuNuevo.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuNuevo.Name = "MenuNuevo";
            this.MenuNuevo.Size = new System.Drawing.Size(58, 33);
            this.MenuNuevo.Text = "Actualizar";
            this.MenuNuevo.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            this.MenuNuevo.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.MenuNuevo.ToolTipText = "Nueva Llamada";
            this.MenuNuevo.Click += new System.EventHandler(this.MenuNuevo_Click);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(6, 36);
            // 
            // MenuAsignar
            // 
            this.MenuAsignar.Image = ((System.Drawing.Image)(resources.GetObject("MenuAsignar.Image")));
            this.MenuAsignar.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuAsignar.Name = "MenuAsignar";
            this.MenuAsignar.Size = new System.Drawing.Size(47, 33);
            this.MenuAsignar.Text = "Asignar";
            this.MenuAsignar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.MenuAsignar.Click += new System.EventHandler(this.MenuAsignar_Click);
            // 
            // MenuReasignar
            // 
            this.MenuReasignar.Image = ((System.Drawing.Image)(resources.GetObject("MenuReasignar.Image")));
            this.MenuReasignar.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuReasignar.Name = "MenuReasignar";
            this.MenuReasignar.Size = new System.Drawing.Size(60, 33);
            this.MenuReasignar.Text = "ReAsignar";
            this.MenuReasignar.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            this.MenuReasignar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.MenuReasignar.Click += new System.EventHandler(this.MenuReasignar_Click);
            // 
            // MenuCancelar
            // 
            this.MenuCancelar.Image = ((System.Drawing.Image)(resources.GetObject("MenuCancelar.Image")));
            this.MenuCancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuCancelar.Name = "MenuCancelar";
            this.MenuCancelar.Size = new System.Drawing.Size(53, 33);
            this.MenuCancelar.Text = "Cancelar";
            this.MenuCancelar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.MenuCancelar.Click += new System.EventHandler(this.MenuCancelar_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 36);
            // 
            // MenuTodasAsignaciones
            // 
            this.MenuTodasAsignaciones.Enabled = false;
            this.MenuTodasAsignaciones.Image = ((System.Drawing.Image)(resources.GetObject("MenuTodasAsignaciones.Image")));
            this.MenuTodasAsignaciones.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
            this.MenuTodasAsignaciones.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuTodasAsignaciones.Name = "MenuTodasAsignaciones";
            this.MenuTodasAsignaciones.Size = new System.Drawing.Size(59, 33);
            this.MenuTodasAsignaciones.Text = "Ver Todas";
            this.MenuTodasAsignaciones.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            this.MenuTodasAsignaciones.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            // 
            // MenuActividades
            // 
            this.MenuActividades.Enabled = false;
            this.MenuActividades.Image = ((System.Drawing.Image)(resources.GetObject("MenuActividades.Image")));
            this.MenuActividades.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuActividades.Name = "MenuActividades";
            this.MenuActividades.Size = new System.Drawing.Size(60, 33);
            this.MenuActividades.Text = "Ver Visitas";
            this.MenuActividades.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            // 
            // MenuLlamadas
            // 
            this.MenuLlamadas.Enabled = false;
            this.MenuLlamadas.Image = ((System.Drawing.Image)(resources.GetObject("MenuLlamadas.Image")));
            this.MenuLlamadas.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuLlamadas.Name = "MenuLlamadas";
            this.MenuLlamadas.Size = new System.Drawing.Size(74, 33);
            this.MenuLlamadas.Text = "Ver Llamadas";
            this.MenuLlamadas.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            // 
            // toolStripSeparator5
            // 
            this.toolStripSeparator5.Name = "toolStripSeparator5";
            this.toolStripSeparator5.Size = new System.Drawing.Size(6, 36);
            // 
            // MenuFichaTarget
            // 
            this.MenuFichaTarget.Image = ((System.Drawing.Image)(resources.GetObject("MenuFichaTarget.Image")));
            this.MenuFichaTarget.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuFichaTarget.Name = "MenuFichaTarget";
            this.MenuFichaTarget.Size = new System.Drawing.Size(71, 33);
            this.MenuFichaTarget.Text = "Ficha Target";
            this.MenuFichaTarget.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.MenuFichaTarget.Click += new System.EventHandler(this.MenuFichaTarget_Click);
            // 
            // MenuFollowUp
            // 
            this.MenuFollowUp.Enabled = false;
            this.MenuFollowUp.Image = ((System.Drawing.Image)(resources.GetObject("MenuFollowUp.Image")));
            this.MenuFollowUp.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuFollowUp.Name = "MenuFollowUp";
            this.MenuFollowUp.Size = new System.Drawing.Size(54, 33);
            this.MenuFollowUp.Text = "FollowUp";
            this.MenuFollowUp.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.MenuFollowUp.Click += new System.EventHandler(this.MenuFollowUp_Click);
            // 
            // MenuCuenta
            // 
            this.MenuCuenta.Enabled = false;
            this.MenuCuenta.Image = ((System.Drawing.Image)(resources.GetObject("MenuCuenta.Image")));
            this.MenuCuenta.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuCuenta.Name = "MenuCuenta";
            this.MenuCuenta.Size = new System.Drawing.Size(74, 33);
            this.MenuCuenta.Text = "Ficha Cuenta";
            this.MenuCuenta.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            // 
            // toolStripSeparator4
            // 
            this.toolStripSeparator4.Name = "toolStripSeparator4";
            this.toolStripSeparator4.Size = new System.Drawing.Size(6, 36);
            // 
            // MenuExcel
            // 
            this.MenuExcel.Image = ((System.Drawing.Image)(resources.GetObject("MenuExcel.Image")));
            this.MenuExcel.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuExcel.Name = "MenuExcel";
            this.MenuExcel.Size = new System.Drawing.Size(36, 33);
            this.MenuExcel.Text = "Excel";
            this.MenuExcel.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.MenuExcel.Click += new System.EventHandler(this.MenuExcel_Click);
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new System.Drawing.Size(6, 36);
            // 
            // MenuSalir
            // 
            this.MenuSalir.Image = ((System.Drawing.Image)(resources.GetObject("MenuSalir.Image")));
            this.MenuSalir.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.MenuSalir.Name = "MenuSalir";
            this.MenuSalir.Size = new System.Drawing.Size(31, 33);
            this.MenuSalir.Text = "Salir";
            this.MenuSalir.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.MenuSalir.Click += new System.EventHandler(this.MenuSalir_Click);
            // 
            // groupControl3
            // 
            this.groupControl3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.groupControl3.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.groupControl3.AppearanceCaption.ForeColor = System.Drawing.Color.DarkBlue;
            this.groupControl3.AppearanceCaption.Options.UseFont = true;
            this.groupControl3.AppearanceCaption.Options.UseForeColor = true;
            this.groupControl3.Controls.Add(this.gridProspectos);
            this.groupControl3.Location = new System.Drawing.Point(0, 39);
            this.groupControl3.Name = "groupControl3";
            this.groupControl3.Size = new System.Drawing.Size(980, 369);
            this.groupControl3.TabIndex = 8;
            this.groupControl3.Text = "Prospectos Abiertos";
            // 
            // gridProspectos
            // 
            this.gridProspectos.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.gridProspectos.Location = new System.Drawing.Point(5, 23);
            this.gridProspectos.MainView = this.gridViewProspectos;
            this.gridProspectos.Name = "gridProspectos";
            this.gridProspectos.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemImageComboBox1,
            this.repositoryItemImageComboBox2});
            this.gridProspectos.Size = new System.Drawing.Size(970, 341);
            this.gridProspectos.TabIndex = 1;
            this.gridProspectos.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewProspectos});
            this.gridProspectos.Leave += new System.EventHandler(this.gridProspectos_Leave);
            this.gridProspectos.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.gridProspectos_KeyPress);
            this.gridProspectos.Click += new System.EventHandler(this.gridProspectos_Click);
            // 
            // gridViewProspectos
            // 
            this.gridViewProspectos.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColNumMeta,
            this.gridColTipoOportunidad,
            this.gridColCuentaTarget,
            this.gridColCuenta,
            this.gridColVendedor,
            this.gridColEstado,
            this.gridColFAsignacion,
            this.gridColFHoy,
            this.gridColFUp,
            this.gridColFActualizacion,
            this.gridColTipoActualizacion,
            this.gridColIcono});
            this.gridViewProspectos.GridControl = this.gridProspectos;
            this.gridViewProspectos.Name = "gridViewProspectos";
            this.gridViewProspectos.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewProspectos_FocusedRowChanged);
            this.gridViewProspectos.CustomDrawCell += new DevExpress.XtraGrid.Views.Base.RowCellCustomDrawEventHandler(this.gridViewProspectos_CustomDrawCell);
            this.gridViewProspectos.ColumnFilterChanged += new System.EventHandler(this.gridViewProspectos_ColumnFilterChanged);
            this.gridViewProspectos.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.gridViewProspectos_RowStyle);
            // 
            // gridColNumMeta
            // 
            this.gridColNumMeta.AppearanceCell.Options.UseTextOptions = true;
            this.gridColNumMeta.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.gridColNumMeta.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColNumMeta.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColNumMeta.Caption = "N# Target";
            this.gridColNumMeta.FieldName = "IdNumMeta";
            this.gridColNumMeta.Name = "gridColNumMeta";
            this.gridColNumMeta.OptionsColumn.AllowEdit = false;
            this.gridColNumMeta.OptionsColumn.ReadOnly = true;
            this.gridColNumMeta.Visible = true;
            this.gridColNumMeta.VisibleIndex = 0;
            this.gridColNumMeta.Width = 50;
            // 
            // gridColTipoOportunidad
            // 
            this.gridColTipoOportunidad.AppearanceCell.Options.UseTextOptions = true;
            this.gridColTipoOportunidad.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.gridColTipoOportunidad.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColTipoOportunidad.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColTipoOportunidad.Caption = "Tipo Target";
            this.gridColTipoOportunidad.FieldName = "TipoOportunidad";
            this.gridColTipoOportunidad.Name = "gridColTipoOportunidad";
            this.gridColTipoOportunidad.OptionsColumn.AllowEdit = false;
            this.gridColTipoOportunidad.OptionsColumn.ReadOnly = true;
            this.gridColTipoOportunidad.Width = 71;
            // 
            // gridColCuentaTarget
            // 
            this.gridColCuentaTarget.AppearanceCell.Options.UseTextOptions = true;
            this.gridColCuentaTarget.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.gridColCuentaTarget.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColCuentaTarget.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColCuentaTarget.Caption = "Target";
            this.gridColCuentaTarget.FieldName = "GlosaClienteTarget";
            this.gridColCuentaTarget.Name = "gridColCuentaTarget";
            this.gridColCuentaTarget.OptionsColumn.AllowEdit = false;
            this.gridColCuentaTarget.OptionsColumn.ReadOnly = true;
            this.gridColCuentaTarget.Visible = true;
            this.gridColCuentaTarget.VisibleIndex = 1;
            this.gridColCuentaTarget.Width = 163;
            // 
            // gridColCuenta
            // 
            this.gridColCuenta.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColCuenta.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColCuenta.Caption = "Cuenta";
            this.gridColCuenta.FieldName = "ObjClienteMaster.NombreFantasia";
            this.gridColCuenta.Name = "gridColCuenta";
            this.gridColCuenta.Visible = true;
            this.gridColCuenta.VisibleIndex = 2;
            this.gridColCuenta.Width = 78;
            // 
            // gridColVendedor
            // 
            this.gridColVendedor.AppearanceCell.Options.UseTextOptions = true;
            this.gridColVendedor.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.gridColVendedor.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColVendedor.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColVendedor.Caption = "Vendedor";
            this.gridColVendedor.FieldName = "ObjMetaAsignacion.ObjVendedorAsignado.NombreUsuario";
            this.gridColVendedor.Name = "gridColVendedor";
            this.gridColVendedor.OptionsColumn.AllowEdit = false;
            this.gridColVendedor.OptionsColumn.ReadOnly = true;
            this.gridColVendedor.Visible = true;
            this.gridColVendedor.VisibleIndex = 3;
            this.gridColVendedor.Width = 92;
            // 
            // gridColEstado
            // 
            this.gridColEstado.AppearanceCell.Options.UseTextOptions = true;
            this.gridColEstado.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.gridColEstado.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColEstado.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColEstado.Caption = "Estado";
            this.gridColEstado.FieldName = "EstadoMeta";
            this.gridColEstado.Name = "gridColEstado";
            this.gridColEstado.OptionsColumn.AllowEdit = false;
            this.gridColEstado.OptionsColumn.ReadOnly = true;
            this.gridColEstado.Visible = true;
            this.gridColEstado.VisibleIndex = 4;
            this.gridColEstado.Width = 71;
            // 
            // gridColFAsignacion
            // 
            this.gridColFAsignacion.AppearanceCell.Options.UseTextOptions = true;
            this.gridColFAsignacion.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
            this.gridColFAsignacion.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColFAsignacion.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
            this.gridColFAsignacion.Caption = "Asignación";
            this.gridColFAsignacion.FieldName = "FechaApertura";
            this.gridColFAsignacion.Name = "gridColFAsignacion";
            this.gridColFAsignacion.OptionsColumn.AllowEdit = false;
            this.gridColFAsignacion.OptionsColumn.ReadOnly = true;
            this.gridColFAsignacion.Visible = true;
            this.gridColFAsignacion.VisibleIndex = 5;
            this.gridColFAsignacion.Width = 91;
            // 
            // gridColFHoy
            // 
            this.gridColFHoy.Caption = "Hoy";
            this.gridColFHoy.FieldName = "FechaHoy";
            this.gridColFHoy.Name = "gridColFHoy";
            this.gridColFHoy.Visible = true;
            this.gridColFHoy.VisibleIndex = 9;
            this.gridColFHoy.Width = 73;
            // 
            // gridColFUp
            // 
            this.gridColFUp.AppearanceCell.Options.UseTextOptions = true;
            this.gridColFUp.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
            this.gridColFUp.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColFUp.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
            this.gridColFUp.Caption = "Follow Up";
            this.gridColFUp.FieldName = "FechaRevision";
            this.gridColFUp.Name = "gridColFUp";
            this.gridColFUp.OptionsColumn.AllowEdit = false;
            this.gridColFUp.OptionsColumn.ReadOnly = true;
            this.gridColFUp.Visible = true;
            this.gridColFUp.VisibleIndex = 6;
            this.gridColFUp.Width = 76;
            // 
            // gridColFActualizacion
            // 
            this.gridColFActualizacion.Caption = " Actualización";
            this.gridColFActualizacion.FieldName = "FechaUltActulizacion";
            this.gridColFActualizacion.Name = "gridColFActualizacion";
            this.gridColFActualizacion.Visible = true;
            this.gridColFActualizacion.VisibleIndex = 7;
            this.gridColFActualizacion.Width = 87;
            // 
            // gridColTipoActualizacion
            // 
            this.gridColTipoActualizacion.Caption = "Tipo Actualización";
            this.gridColTipoActualizacion.ColumnEdit = this.repositoryItemImageComboBox2;
            this.gridColTipoActualizacion.FieldName = "IdTipoActualizacion";
            this.gridColTipoActualizacion.Name = "gridColTipoActualizacion";
            this.gridColTipoActualizacion.OptionsColumn.AllowEdit = false;
            this.gridColTipoActualizacion.Visible = true;
            this.gridColTipoActualizacion.VisibleIndex = 8;
            this.gridColTipoActualizacion.Width = 40;
            // 
            // repositoryItemImageComboBox2
            // 
            this.repositoryItemImageComboBox2.AutoHeight = false;
            this.repositoryItemImageComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemImageComboBox2.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("New", 1, 0)});
            this.repositoryItemImageComboBox2.Name = "repositoryItemImageComboBox2";
            this.repositoryItemImageComboBox2.SmallImages = this.imageCollection1;
            // 
            // imageCollection1
            // 
            this.imageCollection1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection1.ImageStream")));
            this.imageCollection1.Images.SetKeyName(0, "mail_get.png");
            // 
            // gridColIcono
            // 
            this.gridColIcono.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColIcono.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            this.gridColIcono.Caption = "Prioridad";
            this.gridColIcono.ColumnEdit = this.repositoryItemImageComboBox1;
            this.gridColIcono.FieldName = "Prioridad.Codigo";
            this.gridColIcono.Name = "gridColIcono";
            this.gridColIcono.OptionsColumn.AllowEdit = false;
            this.gridColIcono.Visible = true;
            this.gridColIcono.VisibleIndex = 10;
            this.gridColIcono.Width = 128;
            // 
            // repositoryItemImageComboBox1
            // 
            this.repositoryItemImageComboBox1.AutoHeight = false;
            this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemImageComboBox1.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Alta", "0", 0),
            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Baja", "2", 1),
            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Media", "1", 2)});
            this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
            this.repositoryItemImageComboBox1.SmallImages = this.ImageCollection;
            // 
            // ImageCollection
            // 
            this.ImageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("ImageCollection.ImageStream")));
            this.ImageCollection.Images.SetKeyName(0, "Alta Prioridad.png");
            this.ImageCollection.Images.SetKeyName(1, "Baja Prioridad.png");
            this.ImageCollection.Images.SetKeyName(2, "Media Prioridad.png");
            // 
            // sButtonGrabarObs
            // 
            this.sButtonGrabarObs.Image = ((System.Drawing.Image)(resources.GetObject("sButtonGrabarObs.Image")));
            this.sButtonGrabarObs.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
            this.sButtonGrabarObs.Location = new System.Drawing.Point(499, 435);
            this.sButtonGrabarObs.Name = "sButtonGrabarObs";
            this.sButtonGrabarObs.Size = new System.Drawing.Size(32, 29);
            this.sButtonGrabarObs.TabIndex = 67;
            this.sButtonGrabarObs.Click += new System.EventHandler(this.sButtonGrabarObs_Click);
            // 
            // gridObservaciones
            // 
            this.gridObservaciones.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.gridObservaciones.Location = new System.Drawing.Point(537, 414);
            this.gridObservaciones.MainView = this.gridViewObs;
            this.gridObservaciones.Name = "gridObservaciones";
            this.gridObservaciones.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repSel,
            this.repositoryItemCheckEdit1,
            this.repositoryItemCheckEdit2,
            this.repositoryItemMemoEdit1,
            this.repositoryItemMemoEdit2,
            this.repositoryItemMemoExEdit1});
            this.gridObservaciones.Size = new System.Drawing.Size(438, 156);
            this.gridObservaciones.TabIndex = 65;
            this.gridObservaciones.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewObs,
            this.gridView3});
            // 
            // gridViewObs
            // 
            this.gridViewObs.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColUsuario,
            this.gridColObservacion,
            this.gridFechaHora});
            this.gridViewObs.CustomizationFormBounds = new System.Drawing.Rectangle(592, 334, 208, 170);
            this.gridViewObs.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.None;
            this.gridViewObs.GridControl = this.gridObservaciones;
            this.gridViewObs.Name = "gridViewObs";
            this.gridViewObs.OptionsBehavior.CacheValuesOnRowUpdating = DevExpress.Data.CacheRowValuesMode.Disabled;
            this.gridViewObs.OptionsSelection.EnableAppearanceFocusedCell = false;
            this.gridViewObs.OptionsSelection.EnableAppearanceFocusedRow = false;
            this.gridViewObs.OptionsView.ShowGroupPanel = false;
            this.gridViewObs.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.gridViewObs_RowStyle);
            // 
            // gridColUsuario
            // 
            this.gridColUsuario.Caption = "Usuario";
            this.gridColUsuario.FieldName = "ObjUsuario.NombreUsuario";
            this.gridColUsuario.Name = "gridColUsuario";
            this.gridColUsuario.OptionsColumn.AllowEdit = false;
            this.gridColUsuario.OptionsColumn.ReadOnly = true;
            this.gridColUsuario.Visible = true;
            this.gridColUsuario.VisibleIndex = 0;
            this.gridColUsuario.Width = 63;
            // 
            // gridColObservacion
            // 
            this.gridColObservacion.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColObservacion.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColObservacion.Caption = "Comentario";
            this.gridColObservacion.ColumnEdit = this.repositoryItemMemoExEdit1;
            this.gridColObservacion.FieldName = "Observacion";
            this.gridColObservacion.Name = "gridColObservacion";
            this.gridColObservacion.Visible = true;
            this.gridColObservacion.VisibleIndex = 1;
            this.gridColObservacion.Width = 276;
            // 
            // repositoryItemMemoExEdit1
            // 
            this.repositoryItemMemoExEdit1.AutoHeight = false;
            this.repositoryItemMemoExEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemMemoExEdit1.Name = "repositoryItemMemoExEdit1";
            this.repositoryItemMemoExEdit1.ShowIcon = false;
            // 
            // gridFechaHora
            // 
            this.gridFechaHora.AppearanceHeader.Options.UseTextOptions = true;
            this.gridFechaHora.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridFechaHora.Caption = "Fecha";
            this.gridFechaHora.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.gridFechaHora.FieldName = "FechaHora";
            this.gridFechaHora.Name = "gridFechaHora";
            this.gridFechaHora.OptionsColumn.ReadOnly = true;
            this.gridFechaHora.Visible = true;
            this.gridFechaHora.VisibleIndex = 2;
            this.gridFechaHora.Width = 76;
            // 
            // repSel
            // 
            this.repSel.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("repSel.Appearance.Image")));
            this.repSel.Appearance.Options.UseImage = true;
            this.repSel.AutoHeight = false;
            this.repSel.Name = "repSel";
            // 
            // repositoryItemCheckEdit1
            // 
            this.repositoryItemCheckEdit1.AutoHeight = false;
            this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
            // 
            // repositoryItemCheckEdit2
            // 
            this.repositoryItemCheckEdit2.AutoHeight = false;
            this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
            // 
            // repositoryItemMemoEdit1
            // 
            this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
            // 
            // repositoryItemMemoEdit2
            // 
            this.repositoryItemMemoEdit2.Appearance.Options.UseTextOptions = true;
            this.repositoryItemMemoEdit2.Name = "repositoryItemMemoEdit2";
            // 
            // gridView3
            // 
            this.gridView3.GridControl = this.gridObservaciones;
            this.gridView3.Name = "gridView3";
            // 
            // ChartProspectos
            // 
            this.ChartProspectos.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)));
            xyDiagram2.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
            xyDiagram2.AxisX.Range.SideMarginsEnabled = true;
            xyDiagram2.AxisX.VisibleInPanesSerializable = "-1";
            xyDiagram2.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
            xyDiagram2.AxisY.Range.SideMarginsEnabled = true;
            xyDiagram2.AxisY.VisibleInPanesSerializable = "-1";
            this.ChartProspectos.Diagram = xyDiagram2;
            this.ChartProspectos.Location = new System.Drawing.Point(5, 435);
            this.ChartProspectos.Name = "ChartProspectos";
            stackedBarSeriesLabel5.OverlappingOptionsTypeName = "OverlappingOptions";
            series4.Label = stackedBarSeriesLabel5;
            series4.Name = "Propuesta";
            series4.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint22,
            seriesPoint23,
            seriesPoint24,
            seriesPoint25,
            seriesPoint26,
            seriesPoint27,
            seriesPoint28});
            series4.View = stackedBarSeriesView5;
            stackedBarSeriesLabel6.OverlappingOptionsTypeName = "OverlappingOptions";
            series5.Label = stackedBarSeriesLabel6;
            series5.Name = "Asignada";
            series5.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint29,
            seriesPoint30,
            seriesPoint31,
            seriesPoint32,
            seriesPoint33,
            seriesPoint34,
            seriesPoint35});
            series5.View = stackedBarSeriesView6;
            stackedBarSeriesLabel7.OverlappingOptionsTypeName = "OverlappingOptions";
            series6.Label = stackedBarSeriesLabel7;
            series6.Name = "Revisión";
            series6.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
            seriesPoint36,
            seriesPoint37,
            seriesPoint38,
            seriesPoint39,
            seriesPoint40,
            seriesPoint41,
            seriesPoint42});
            series6.View = stackedBarSeriesView7;
            this.ChartProspectos.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series4,
        series5,
        series6};
            stackedBarSeriesLabel8.OverlappingOptionsTypeName = "OverlappingOptions";
            this.ChartProspectos.SeriesTemplate.Label = stackedBarSeriesLabel8;
            this.ChartProspectos.SeriesTemplate.View = stackedBarSeriesView8;
            this.ChartProspectos.Size = new System.Drawing.Size(479, 135);
            this.ChartProspectos.TabIndex = 69;
            // 
            // sButtonEliminarObservacion
            // 
            this.sButtonEliminarObservacion.AutoSizeInLayoutControl = true;
            this.sButtonEliminarObservacion.Image = ((System.Drawing.Image)(resources.GetObject("sButtonEliminarObservacion.Image")));
            this.sButtonEliminarObservacion.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
            this.sButtonEliminarObservacion.Location = new System.Drawing.Point(499, 516);
            this.sButtonEliminarObservacion.Name = "sButtonEliminarObservacion";
            this.sButtonEliminarObservacion.Size = new System.Drawing.Size(32, 24);
            this.sButtonEliminarObservacion.TabIndex = 70;
            this.sButtonEliminarObservacion.Click += new System.EventHandler(this.sButtonEliminarObservacion_Click_1);
            // 
            // sButtonAgregarObservacion
            // 
            this.sButtonAgregarObservacion.Image = ((System.Drawing.Image)(resources.GetObject("sButtonAgregarObservacion.Image")));
            this.sButtonAgregarObservacion.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
            this.sButtonAgregarObservacion.Location = new System.Drawing.Point(499, 546);
            this.sButtonAgregarObservacion.Name = "sButtonAgregarObservacion";
            this.sButtonAgregarObservacion.Size = new System.Drawing.Size(32, 24);
            this.sButtonAgregarObservacion.TabIndex = 71;
            this.sButtonAgregarObservacion.Click += new System.EventHandler(this.sButtonAgregarObservacion_Click);
            
            // 
            // ctrldxError
            // 
            this.ctrldxError.ContainerControl = this;
            // 
            // DateHasta
            // 
            this.DateHasta.EditValue = null;
            this.DateHasta.Location = new System.Drawing.Point(102, 411);
            this.DateHasta.Name = "DateHasta";
            this.DateHasta.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.DateHasta.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.DateHasta.Size = new System.Drawing.Size(91, 20);
            this.DateHasta.TabIndex = 73;
            this.DateHasta.EditValueChanged += new System.EventHandler(this.DateHasta_EditValueChanged);
            // 
            // DateDesde
            // 
            this.DateDesde.EditValue = null;
            this.DateDesde.Location = new System.Drawing.Point(5, 411);
            this.DateDesde.Name = "DateDesde";
            this.DateDesde.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.DateDesde.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.DateDesde.Size = new System.Drawing.Size(91, 20);
            this.DateDesde.TabIndex = 72;
            this.DateDesde.EditValueChanged += new System.EventHandler(this.DateDesde_EditValueChanged);
            // 
            // sBActualizar
            // 
            this.sBActualizar.Image = ((System.Drawing.Image)(resources.GetObject("sBActualizar.Image")));
            this.sBActualizar.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
            this.sBActualizar.Location = new System.Drawing.Point(199, 411);
            this.sBActualizar.Name = "sBActualizar";
            this.sBActualizar.Size = new System.Drawing.Size(41, 20);
            this.sBActualizar.TabIndex = 74;
            this.sBActualizar.ToolTip = "Actualizar Gráfico";
            this.sBActualizar.Click += new System.EventHandler(this.sBActualizar_Click);
            // 
            // frmGestionarMetas
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(980, 574);
            this.Controls.Add(this.sBActualizar);
            this.Controls.Add(this.DateHasta);
            this.Controls.Add(this.DateDesde);
            this.Controls.Add(this.sButtonAgregarObservacion);
            this.Controls.Add(this.sButtonEliminarObservacion);
            this.Controls.Add(this.ChartProspectos);
            this.Controls.Add(this.sButtonGrabarObs);
            this.Controls.Add(this.gridObservaciones);
            this.Controls.Add(this.groupControl3);
            this.Controls.Add(this.toolStripBarraLlamada);
            this.Name = "frmGestionarMetas";
            this.Text = "Gestión de TARGETS";
            this.Load += new System.EventHandler(this.frmGestionarMetas_Load);
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmGestionarMetas_FormClosed);
            this.toolStripBarraLlamada.ResumeLayout(false);
            this.toolStripBarraLlamada.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
            this.groupControl3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridProspectos)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewProspectos)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ImageCollection)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridObservaciones)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewObs)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repSel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ChartProspectos)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ctrldxError)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateHasta.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateHasta.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateDesde.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateDesde.Properties)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmGestionarSLead));
     DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel1 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
     DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("LR", new object[] {
     ((object)(18))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("DS", new object[] {
     ((object)(12))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("DO", new object[] {
     ((object)(9))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("SMC", new object[] {
     ((object)(15))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint("CY", new object[] {
     ((object)(21))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint("SF", new object[] {
     ((object)(8))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint("JMW", new object[] {
     ((object)(13))});
     DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView1 = new DevExpress.XtraCharts.StackedBarSeriesView();
     DevExpress.XtraCharts.Series series2 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel2 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
     DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint("LR", new object[] {
     ((object)(8))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint9 = new DevExpress.XtraCharts.SeriesPoint("DS", new object[] {
     ((object)(5))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint10 = new DevExpress.XtraCharts.SeriesPoint("DO", new object[] {
     ((object)(8))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint11 = new DevExpress.XtraCharts.SeriesPoint("SMC", new object[] {
     ((object)(12))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint12 = new DevExpress.XtraCharts.SeriesPoint("CY", new object[] {
     ((object)(23))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint13 = new DevExpress.XtraCharts.SeriesPoint("SF", new object[] {
     ((object)(6))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint14 = new DevExpress.XtraCharts.SeriesPoint("JMW", new object[] {
     ((object)(9))});
     DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView2 = new DevExpress.XtraCharts.StackedBarSeriesView();
     DevExpress.XtraCharts.Series series3 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel3 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
     DevExpress.XtraCharts.SeriesPoint seriesPoint15 = new DevExpress.XtraCharts.SeriesPoint("LR", new object[] {
     ((object)(4))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint16 = new DevExpress.XtraCharts.SeriesPoint("DS", new object[] {
     ((object)(1))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint17 = new DevExpress.XtraCharts.SeriesPoint("DO", new object[] {
     ((object)(2))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint18 = new DevExpress.XtraCharts.SeriesPoint("SMC", new object[] {
     ((object)(3))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint19 = new DevExpress.XtraCharts.SeriesPoint("CY", new object[] {
     ((object)(4))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint20 = new DevExpress.XtraCharts.SeriesPoint("SF", new object[] {
     ((object)(2))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint21 = new DevExpress.XtraCharts.SeriesPoint("JMW", new object[] {
     ((object)(3))});
     DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView3 = new DevExpress.XtraCharts.StackedBarSeriesView();
     DevExpress.XtraCharts.Series series4 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel4 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
     DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView4 = new DevExpress.XtraCharts.StackedBarSeriesView();
     DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel5 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
     DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView5 = new DevExpress.XtraCharts.StackedBarSeriesView();
     this.toolStripBarraSLead = new System.Windows.Forms.ToolStrip();
     this.MenuNuevo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.MenuCancelar = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.MenuTodasAsignaciones = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.MenuFichaSLead = new System.Windows.Forms.ToolStripButton();
     this.MenuEnviarMail = new System.Windows.Forms.ToolStripButton();
     this.MenuFollowUp = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.MenuExcel = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.MenuSalir = new System.Windows.Forms.ToolStripButton();
     this.sBActualizar = new DevExpress.XtraEditors.SimpleButton();
     this.DateHasta = new DevExpress.XtraEditors.DateEdit();
     this.DateDesde = new DevExpress.XtraEditors.DateEdit();
     this.ChartSalesLead = new DevExpress.XtraCharts.ChartControl();
     this.sButtonAgregarObservacion = new DevExpress.XtraEditors.SimpleButton();
     this.sButtonEliminarObservacion = new DevExpress.XtraEditors.SimpleButton();
     this.sButtonGrabarObs = new DevExpress.XtraEditors.SimpleButton();
     this.gridProspectos = new DevExpress.XtraEditors.GroupControl();
     this.gridSLeads = new DevExpress.XtraGrid.GridControl();
     this.gridViewSLeads = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColContacto = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColCuenta = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColConsignatario = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.ctrldxError = new DevExpress.XtraEditors.DXErrorProvider.DXErrorProvider(this.components);
     this.repSel = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.repositoryItemMemoEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.repositoryItemMemoExEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridObservacionesSL = new DevExpress.XtraGrid.GridControl();
     this.gridViewObsSL = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColUsuario = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColObservacion = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridFechaHora = new DevExpress.XtraGrid.Columns.GridColumn();
     this.toolStripBarraSLead.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DateHasta.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateHasta.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateDesde.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateDesde.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ChartSalesLead)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridProspectos)).BeginInit();
     this.gridProspectos.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridSLeads)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewSLeads)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ctrldxError)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridObservacionesSL)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewObsSL)).BeginInit();
     this.SuspendLayout();
     //
     // toolStripBarraSLead
     //
     this.toolStripBarraSLead.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.MenuNuevo,
     this.toolStripSeparator2,
     this.MenuCancelar,
     this.toolStripSeparator1,
     this.MenuTodasAsignaciones,
     this.toolStripSeparator5,
     this.MenuFichaSLead,
     this.MenuEnviarMail,
     this.MenuFollowUp,
     this.toolStripSeparator4,
     this.MenuExcel,
     this.toolStripSeparator3,
     this.MenuSalir});
     this.toolStripBarraSLead.Location = new System.Drawing.Point(0, 0);
     this.toolStripBarraSLead.Name = "toolStripBarraSLead";
     this.toolStripBarraSLead.Size = new System.Drawing.Size(956, 38);
     this.toolStripBarraSLead.TabIndex = 8;
     this.toolStripBarraSLead.Text = "toolStrip1";
     //
     // MenuNuevo
     //
     this.MenuNuevo.Image = ((System.Drawing.Image)(resources.GetObject("MenuNuevo.Image")));
     this.MenuNuevo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuNuevo.Name = "MenuNuevo";
     this.MenuNuevo.Size = new System.Drawing.Size(63, 35);
     this.MenuNuevo.Text = "Actualizar";
     this.MenuNuevo.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.MenuNuevo.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuNuevo.ToolTipText = "Nueva Llamada";
     this.MenuNuevo.Click += new System.EventHandler(this.MenuNuevo_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 38);
     //
     // MenuCancelar
     //
     this.MenuCancelar.Image = ((System.Drawing.Image)(resources.GetObject("MenuCancelar.Image")));
     this.MenuCancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuCancelar.Name = "MenuCancelar";
     this.MenuCancelar.Size = new System.Drawing.Size(57, 35);
     this.MenuCancelar.Text = "Cancelar";
     this.MenuCancelar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuCancelar.Click += new System.EventHandler(this.MenuCancelar_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 38);
     //
     // MenuTodasAsignaciones
     //
     this.MenuTodasAsignaciones.Enabled = false;
     this.MenuTodasAsignaciones.Image = ((System.Drawing.Image)(resources.GetObject("MenuTodasAsignaciones.Image")));
     this.MenuTodasAsignaciones.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.MenuTodasAsignaciones.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuTodasAsignaciones.Name = "MenuTodasAsignaciones";
     this.MenuTodasAsignaciones.Size = new System.Drawing.Size(63, 35);
     this.MenuTodasAsignaciones.Text = "Ver Todas";
     this.MenuTodasAsignaciones.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.MenuTodasAsignaciones.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 38);
     //
     // MenuFichaSLead
     //
     this.MenuFichaSLead.Image = ((System.Drawing.Image)(resources.GetObject("MenuFichaSLead.Image")));
     this.MenuFichaSLead.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuFichaSLead.Name = "MenuFichaSLead";
     this.MenuFichaSLead.Size = new System.Drawing.Size(96, 35);
     this.MenuFichaSLead.Text = "Ficha Sales Lead";
     this.MenuFichaSLead.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuFichaSLead.Click += new System.EventHandler(this.MenuFichaSLead_Click);
     //
     // MenuEnviarMail
     //
     this.MenuEnviarMail.Image = ((System.Drawing.Image)(resources.GetObject("MenuEnviarMail.Image")));
     this.MenuEnviarMail.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuEnviarMail.Name = "MenuEnviarMail";
     this.MenuEnviarMail.Size = new System.Drawing.Size(100, 35);
     this.MenuEnviarMail.Text = "Enviar Sales Lead";
     this.MenuEnviarMail.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuEnviarMail.Click += new System.EventHandler(this.MenuEnviarMail_Click);
     //
     // MenuFollowUp
     //
     this.MenuFollowUp.Enabled = false;
     this.MenuFollowUp.Image = ((System.Drawing.Image)(resources.GetObject("MenuFollowUp.Image")));
     this.MenuFollowUp.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuFollowUp.Name = "MenuFollowUp";
     this.MenuFollowUp.Size = new System.Drawing.Size(61, 35);
     this.MenuFollowUp.Text = "FollowUp";
     this.MenuFollowUp.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuFollowUp.Click += new System.EventHandler(this.MenuFollowUp_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(6, 38);
     //
     // MenuExcel
     //
     this.MenuExcel.Image = ((System.Drawing.Image)(resources.GetObject("MenuExcel.Image")));
     this.MenuExcel.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuExcel.Name = "MenuExcel";
     this.MenuExcel.Size = new System.Drawing.Size(37, 35);
     this.MenuExcel.Text = "Excel";
     this.MenuExcel.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuExcel.Click += new System.EventHandler(this.MenuExcel_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 38);
     //
     // MenuSalir
     //
     this.MenuSalir.Image = ((System.Drawing.Image)(resources.GetObject("MenuSalir.Image")));
     this.MenuSalir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuSalir.Name = "MenuSalir";
     this.MenuSalir.Size = new System.Drawing.Size(33, 35);
     this.MenuSalir.Text = "Salir";
     this.MenuSalir.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuSalir.Click += new System.EventHandler(this.MenuSalir_Click);
     //
     // sBActualizar
     //
     this.sBActualizar.Image = ((System.Drawing.Image)(resources.GetObject("sBActualizar.Image")));
     this.sBActualizar.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.sBActualizar.Location = new System.Drawing.Point(199, 411);
     this.sBActualizar.Name = "sBActualizar";
     this.sBActualizar.Size = new System.Drawing.Size(41, 20);
     this.sBActualizar.TabIndex = 77;
     this.sBActualizar.ToolTip = "Actualizar Gráfico";
     this.sBActualizar.Click += new System.EventHandler(this.sBActualizar_Click);
     //
     // DateHasta
     //
     this.DateHasta.EditValue = null;
     this.DateHasta.Location = new System.Drawing.Point(102, 411);
     this.DateHasta.Name = "DateHasta";
     this.DateHasta.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DateHasta.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DateHasta.Size = new System.Drawing.Size(91, 20);
     this.DateHasta.TabIndex = 76;
     //
     // DateDesde
     //
     this.DateDesde.EditValue = null;
     this.DateDesde.Location = new System.Drawing.Point(5, 411);
     this.DateDesde.Name = "DateDesde";
     this.DateDesde.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DateDesde.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DateDesde.Size = new System.Drawing.Size(91, 20);
     this.DateDesde.TabIndex = 75;
     //
     // ChartSalesLead
     //
     this.ChartSalesLead.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     xyDiagram1.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram1.AxisX.Range.SideMarginsEnabled = true;
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram1.AxisY.Range.SideMarginsEnabled = true;
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     this.ChartSalesLead.Diagram = xyDiagram1;
     this.ChartSalesLead.Location = new System.Drawing.Point(5, 437);
     this.ChartSalesLead.Name = "ChartSalesLead";
     stackedBarSeriesLabel1.OverlappingOptionsTypeName = "OverlappingOptions";
     series1.Label = stackedBarSeriesLabel1;
     series1.Name = "Asignada";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
     seriesPoint1,
     seriesPoint2,
     seriesPoint3,
     seriesPoint4,
     seriesPoint5,
     seriesPoint6,
     seriesPoint7});
     series1.View = stackedBarSeriesView1;
     stackedBarSeriesLabel2.OverlappingOptionsTypeName = "OverlappingOptions";
     series2.Label = stackedBarSeriesLabel2;
     series2.Name = "Seguimiento";
     series2.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
     seriesPoint8,
     seriesPoint9,
     seriesPoint10,
     seriesPoint11,
     seriesPoint12,
     seriesPoint13,
     seriesPoint14});
     series2.View = stackedBarSeriesView2;
     stackedBarSeriesLabel3.OverlappingOptionsTypeName = "OverlappingOptions";
     series3.Label = stackedBarSeriesLabel3;
     series3.Name = "Cierre";
     series3.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
     seriesPoint15,
     seriesPoint16,
     seriesPoint17,
     seriesPoint18,
     seriesPoint19,
     seriesPoint20,
     seriesPoint21});
     series3.View = stackedBarSeriesView3;
     stackedBarSeriesLabel4.OverlappingOptionsTypeName = "OverlappingOptions";
     series4.Label = stackedBarSeriesLabel4;
     series4.Name = "Cancelada";
     series4.View = stackedBarSeriesView4;
     this.ChartSalesLead.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series1,
     series2,
     series3,
     series4};
     stackedBarSeriesLabel5.OverlappingOptionsTypeName = "OverlappingOptions";
     this.ChartSalesLead.SeriesTemplate.Label = stackedBarSeriesLabel5;
     this.ChartSalesLead.SeriesTemplate.View = stackedBarSeriesView5;
     this.ChartSalesLead.Size = new System.Drawing.Size(479, 135);
     this.ChartSalesLead.TabIndex = 78;
     //
     // sButtonAgregarObservacion
     //
     this.sButtonAgregarObservacion.Image = ((System.Drawing.Image)(resources.GetObject("sButtonAgregarObservacion.Image")));
     this.sButtonAgregarObservacion.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.sButtonAgregarObservacion.Location = new System.Drawing.Point(508, 548);
     this.sButtonAgregarObservacion.Name = "sButtonAgregarObservacion";
     this.sButtonAgregarObservacion.Size = new System.Drawing.Size(32, 24);
     this.sButtonAgregarObservacion.TabIndex = 81;
     this.sButtonAgregarObservacion.Click += new System.EventHandler(this.sButtonAgregarObservacion_Click);
     //
     // sButtonEliminarObservacion
     //
     this.sButtonEliminarObservacion.AutoSizeInLayoutControl = true;
     this.sButtonEliminarObservacion.Image = ((System.Drawing.Image)(resources.GetObject("sButtonEliminarObservacion.Image")));
     this.sButtonEliminarObservacion.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.sButtonEliminarObservacion.Location = new System.Drawing.Point(508, 518);
     this.sButtonEliminarObservacion.Name = "sButtonEliminarObservacion";
     this.sButtonEliminarObservacion.Size = new System.Drawing.Size(32, 24);
     this.sButtonEliminarObservacion.TabIndex = 80;
     this.sButtonEliminarObservacion.Click += new System.EventHandler(this.sButtonEliminarObservacion_Click);
     //
     // sButtonGrabarObs
     //
     this.sButtonGrabarObs.Image = ((System.Drawing.Image)(resources.GetObject("sButtonGrabarObs.Image")));
     this.sButtonGrabarObs.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.sButtonGrabarObs.Location = new System.Drawing.Point(508, 437);
     this.sButtonGrabarObs.Name = "sButtonGrabarObs";
     this.sButtonGrabarObs.Size = new System.Drawing.Size(32, 29);
     this.sButtonGrabarObs.TabIndex = 79;
     this.sButtonGrabarObs.Click += new System.EventHandler(this.sButtonGrabarObs_Click);
     //
     // gridProspectos
     //
     this.gridProspectos.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridProspectos.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridProspectos.AppearanceCaption.ForeColor = System.Drawing.Color.DarkBlue;
     this.gridProspectos.AppearanceCaption.Options.UseFont = true;
     this.gridProspectos.AppearanceCaption.Options.UseForeColor = true;
     this.gridProspectos.Controls.Add(this.gridSLeads);
     this.gridProspectos.Location = new System.Drawing.Point(5, 41);
     this.gridProspectos.Name = "gridProspectos";
     this.gridProspectos.Size = new System.Drawing.Size(951, 369);
     this.gridProspectos.TabIndex = 83;
     this.gridProspectos.Text = "Sales Leads";
     //
     // gridSLeads
     //
     this.gridSLeads.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridSLeads.Location = new System.Drawing.Point(5, 23);
     this.gridSLeads.MainView = this.gridViewSLeads;
     this.gridSLeads.Name = "gridSLeads";
     this.gridSLeads.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemImageComboBox1,
     this.repositoryItemPictureEdit1,
     this.repositoryItemCheckEdit3,
     this.repositoryItemCheckEdit4});
     this.gridSLeads.Size = new System.Drawing.Size(941, 306);
     this.gridSLeads.TabIndex = 1;
     this.gridSLeads.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewSLeads});
     this.gridSLeads.Click += new System.EventHandler(this.gridSLeads_Click);
     //
     // gridViewSLeads
     //
     this.gridViewSLeads.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn3,
     this.gridColumn7,
     this.gridColContacto,
     this.gridColCuenta,
     this.gridColConsignatario,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn1});
     this.gridViewSLeads.GridControl = this.gridSLeads;
     this.gridViewSLeads.Name = "gridViewSLeads";
     this.gridViewSLeads.OptionsSelection.MultiSelect = true;
     this.gridViewSLeads.OptionsView.ShowGroupPanel = false;
     this.gridViewSLeads.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewSLeads_FocusedRowChanged);
     this.gridViewSLeads.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.gridViewSLeads_RowStyle);
     //
     // gridColumn3
     //
     this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.Caption = "N# Sales Lead";
     this.gridColumn3.FieldName = "Reference";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.ReadOnly = true;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     this.gridColumn3.Width = 85;
     //
     // gridColumn7
     //
     this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn7.Caption = "Agente";
     this.gridColumn7.FieldName = "Agente.Nombre";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.OptionsColumn.ReadOnly = true;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 1;
     this.gridColumn7.Width = 180;
     //
     // gridColContacto
     //
     this.gridColContacto.Caption = "Contacto";
     this.gridColContacto.FieldName = "Agente.Contacto";
     this.gridColContacto.Name = "gridColContacto";
     this.gridColContacto.OptionsColumn.ReadOnly = true;
     this.gridColContacto.Visible = true;
     this.gridColContacto.VisibleIndex = 2;
     this.gridColContacto.Width = 77;
     //
     // gridColCuenta
     //
     this.gridColCuenta.Caption = "Shipper";
     this.gridColCuenta.FieldName = "ShipperNombre";
     this.gridColCuenta.Name = "gridColCuenta";
     this.gridColCuenta.OptionsColumn.ReadOnly = true;
     this.gridColCuenta.Visible = true;
     this.gridColCuenta.VisibleIndex = 3;
     this.gridColCuenta.Width = 101;
     //
     // gridColConsignatario
     //
     this.gridColConsignatario.Caption = "Consignatario";
     this.gridColConsignatario.FieldName = "ConsigNombre";
     this.gridColConsignatario.Name = "gridColConsignatario";
     this.gridColConsignatario.OptionsColumn.ReadOnly = true;
     this.gridColConsignatario.Visible = true;
     this.gridColConsignatario.VisibleIndex = 4;
     this.gridColConsignatario.Width = 86;
     //
     // gridColumn9
     //
     this.gridColumn9.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn9.Caption = "Estado";
     this.gridColumn9.FieldName = "EstadoSLead";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowEdit = false;
     this.gridColumn9.OptionsColumn.ReadOnly = true;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 5;
     this.gridColumn9.Width = 73;
     //
     // gridColumn10
     //
     this.gridColumn10.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.gridColumn10.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.gridColumn10.Caption = "Asignación";
     this.gridColumn10.FieldName = "FechaApertura";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.AllowEdit = false;
     this.gridColumn10.OptionsColumn.ReadOnly = true;
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 6;
     this.gridColumn10.Width = 107;
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.gridColumn1.Caption = "Follow Up";
     this.gridColumn1.FieldName = "FechaRevision";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.OptionsColumn.ReadOnly = true;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 7;
     this.gridColumn1.Width = 109;
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.Appearance.Options.UseTextOptions = true;
     this.repositoryItemImageComboBox1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox1.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repositoryItemImageComboBox1.HighlightedItemStyle = DevExpress.XtraEditors.HighlightStyle.Skinned;
     this.repositoryItemImageComboBox1.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Baja", "2", 0),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Alta", "0", 1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Media", "1", 2),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("New", 1, 3)});
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // repositoryItemPictureEdit1
     //
     this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     this.repositoryItemPictureEdit1.PictureStoreMode = DevExpress.XtraEditors.Controls.PictureStoreMode.Image;
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
     //
     // repositoryItemCheckEdit4
     //
     this.repositoryItemCheckEdit4.AutoHeight = false;
     this.repositoryItemCheckEdit4.Name = "repositoryItemCheckEdit4";
     //
     // ctrldxError
     //
     this.ctrldxError.ContainerControl = this;
     //
     // repSel
     //
     this.repSel.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("repSel.Appearance.Image")));
     this.repSel.Appearance.Options.UseImage = true;
     this.repSel.AutoHeight = false;
     this.repSel.Name = "repSel";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     //
     // repositoryItemMemoEdit1
     //
     this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
     //
     // repositoryItemMemoEdit2
     //
     this.repositoryItemMemoEdit2.Appearance.Options.UseTextOptions = true;
     this.repositoryItemMemoEdit2.Name = "repositoryItemMemoEdit2";
     //
     // repositoryItemMemoExEdit1
     //
     this.repositoryItemMemoExEdit1.AutoHeight = false;
     this.repositoryItemMemoExEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEdit1.Name = "repositoryItemMemoExEdit1";
     this.repositoryItemMemoExEdit1.ShowIcon = false;
     //
     // gridView3
     //
     this.gridView3.GridControl = this.gridObservacionesSL;
     this.gridView3.Name = "gridView3";
     //
     // gridObservacionesSL
     //
     this.gridObservacionesSL.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridObservacionesSL.Location = new System.Drawing.Point(542, 416);
     this.gridObservacionesSL.MainView = this.gridViewObsSL;
     this.gridObservacionesSL.Name = "gridObservacionesSL";
     this.gridObservacionesSL.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repSel,
     this.repositoryItemCheckEdit1,
     this.repositoryItemCheckEdit2,
     this.repositoryItemMemoEdit1,
     this.repositoryItemMemoEdit2,
     this.repositoryItemMemoExEdit1});
     this.gridObservacionesSL.Size = new System.Drawing.Size(414, 156);
     this.gridObservacionesSL.TabIndex = 82;
     this.gridObservacionesSL.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewObsSL,
     this.gridView3});
     //
     // gridViewObsSL
     //
     this.gridViewObsSL.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColUsuario,
     this.gridColObservacion,
     this.gridFechaHora});
     this.gridViewObsSL.CustomizationFormBounds = new System.Drawing.Rectangle(592, 334, 208, 170);
     this.gridViewObsSL.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.None;
     this.gridViewObsSL.GridControl = this.gridObservacionesSL;
     this.gridViewObsSL.Name = "gridViewObsSL";
     this.gridViewObsSL.OptionsBehavior.CacheValuesOnRowUpdating = DevExpress.Data.CacheRowValuesMode.Disabled;
     this.gridViewObsSL.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridViewObsSL.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gridViewObsSL.OptionsView.ShowGroupPanel = false;
     //
     // gridColUsuario
     //
     this.gridColUsuario.Caption = "Usuario";
     this.gridColUsuario.FieldName = "ObjUsuario.NombreUsuario";
     this.gridColUsuario.Name = "gridColUsuario";
     this.gridColUsuario.OptionsColumn.AllowEdit = false;
     this.gridColUsuario.OptionsColumn.ReadOnly = true;
     this.gridColUsuario.Visible = true;
     this.gridColUsuario.VisibleIndex = 0;
     this.gridColUsuario.Width = 63;
     //
     // gridColObservacion
     //
     this.gridColObservacion.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColObservacion.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColObservacion.Caption = "Comentario";
     this.gridColObservacion.ColumnEdit = this.repositoryItemMemoExEdit1;
     this.gridColObservacion.FieldName = "Observacion";
     this.gridColObservacion.Name = "gridColObservacion";
     this.gridColObservacion.Visible = true;
     this.gridColObservacion.VisibleIndex = 1;
     this.gridColObservacion.Width = 276;
     //
     // gridFechaHora
     //
     this.gridFechaHora.AppearanceHeader.Options.UseTextOptions = true;
     this.gridFechaHora.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridFechaHora.Caption = "Fecha";
     this.gridFechaHora.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridFechaHora.FieldName = "FechaHora";
     this.gridFechaHora.Name = "gridFechaHora";
     this.gridFechaHora.OptionsColumn.ReadOnly = true;
     this.gridFechaHora.Visible = true;
     this.gridFechaHora.VisibleIndex = 2;
     this.gridFechaHora.Width = 76;
     //
     // frmGestionarSLead
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(956, 574);
     this.Controls.Add(this.gridProspectos);
     this.Controls.Add(this.gridObservacionesSL);
     this.Controls.Add(this.sButtonAgregarObservacion);
     this.Controls.Add(this.sButtonEliminarObservacion);
     this.Controls.Add(this.sButtonGrabarObs);
     this.Controls.Add(this.ChartSalesLead);
     this.Controls.Add(this.sBActualizar);
     this.Controls.Add(this.DateHasta);
     this.Controls.Add(this.DateDesde);
     this.Controls.Add(this.toolStripBarraSLead);
     this.Name = "frmGestionarSLead";
     this.Text = "Gestión de Sales Leads";
     this.Load += new System.EventHandler(this.frmGestionarSLead_Load);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmGestionarSLead_FormClosed);
     this.toolStripBarraSLead.ResumeLayout(false);
     this.toolStripBarraSLead.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DateHasta.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateHasta.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateDesde.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateDesde.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ChartSalesLead)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridProspectos)).EndInit();
     this.gridProspectos.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridSLeads)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewSLeads)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ctrldxError)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridObservacionesSL)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewObsSL)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }