namespace WinFormsApp
{
    partial class FormStatistics
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows Form Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            chart = new System.Windows.Forms.DataVisualization.Charting.Chart();
            dateTimePickerTo = new DateTimePicker();
            dateTimePickerFrom = new DateTimePicker();
            panel1 = new Panel();
            checkBoxPending = new CheckBox();
            checkBoxArriving = new CheckBox();
            checkBoxCompleted = new CheckBox();
            label2 = new Label();
            label1 = new Label();
            ((System.ComponentModel.ISupportInitialize)chart).BeginInit();
            panel1.SuspendLayout();
            SuspendLayout();
            // 
            // chart
            // 
            chartArea1.Name = "ChartArea1";
            chart.ChartAreas.Add(chartArea1);
            chart.Dock = DockStyle.Bottom;
            legend1.Name = "Legend1";
            chart.Legends.Add(legend1);
            chart.Location = new Point(0, 30);
            chart.Name = "chart";
            chart.Size = new Size(800, 420);
            chart.TabIndex = 0;
            chart.Text = "chart1";
            chart.Click += chart_Click;
            // 
            // dateTimePickerTo
            // 
            dateTimePickerTo.Location = new Point(24, -1);
            dateTimePickerTo.Name = "dateTimePickerTo";
            dateTimePickerTo.Size = new Size(200, 23);
            dateTimePickerTo.TabIndex = 1;
            dateTimePickerTo.ValueChanged += dateTimePickerFrom_ValueChanged;
            // 
            // dateTimePickerFrom
            // 
            dateTimePickerFrom.Location = new Point(262, -1);
            dateTimePickerFrom.Name = "dateTimePickerFrom";
            dateTimePickerFrom.Size = new Size(200, 23);
            dateTimePickerFrom.TabIndex = 2;
            dateTimePickerFrom.ValueChanged += dateTimePickerTo_ValueChanged;
            // 
            // panel1
            // 
            panel1.BorderStyle = BorderStyle.FixedSingle;
            panel1.Controls.Add(checkBoxPending);
            panel1.Controls.Add(checkBoxArriving);
            panel1.Controls.Add(checkBoxCompleted);
            panel1.Controls.Add(label2);
            panel1.Controls.Add(label1);
            panel1.Controls.Add(dateTimePickerFrom);
            panel1.Controls.Add(dateTimePickerTo);
            panel1.Dock = DockStyle.Top;
            panel1.Location = new Point(0, 0);
            panel1.Name = "panel1";
            panel1.Size = new Size(800, 24);
            panel1.TabIndex = 3;
            // 
            // checkBoxPending
            // 
            checkBoxPending.AutoSize = true;
            checkBoxPending.Location = new Point(481, 3);
            checkBoxPending.Name = "checkBoxPending";
            checkBoxPending.Size = new Size(92, 19);
            checkBoxPending.TabIndex = 7;
            checkBoxPending.Text = "В ожидании";
            checkBoxPending.UseVisualStyleBackColor = true;
            checkBoxPending.CheckedChanged += checkBoxPending_CheckedChanged;
            // 
            // checkBoxArriving
            // 
            checkBoxArriving.AutoSize = true;
            checkBoxArriving.Location = new Point(590, 3);
            checkBoxArriving.Name = "checkBoxArriving";
            checkBoxArriving.Size = new Size(61, 19);
            checkBoxArriving.TabIndex = 6;
            checkBoxArriving.Text = "В пути";
            checkBoxArriving.UseVisualStyleBackColor = true;
            checkBoxArriving.CheckedChanged += checkBoxArriving_CheckedChanged;
            // 
            // checkBoxCompleted
            // 
            checkBoxCompleted.AutoSize = true;
            checkBoxCompleted.Location = new Point(668, 4);
            checkBoxCompleted.Name = "checkBoxCompleted";
            checkBoxCompleted.Size = new Size(104, 19);
            checkBoxCompleted.TabIndex = 5;
            checkBoxCompleted.Text = "Завершенные";
            checkBoxCompleted.UseVisualStyleBackColor = true;
            checkBoxCompleted.CheckedChanged += checkBoxCompleted_CheckedChanged;
            // 
            // label2
            // 
            label2.AutoSize = true;
            label2.Location = new Point(230, 5);
            label2.Name = "label2";
            label2.Size = new Size(26, 15);
            label2.TabIndex = 4;
            label2.Text = "По:";
            // 
            // label1
            // 
            label1.AutoSize = true;
            label1.Location = new Point(3, 5);
            label1.Name = "label1";
            label1.Size = new Size(18, 15);
            label1.TabIndex = 3;
            label1.Text = "С:";
            // 
            // FormStatistics
            // 
            AutoScaleDimensions = new SizeF(7F, 15F);
            AutoScaleMode = AutoScaleMode.Font;
            ClientSize = new Size(800, 450);
            Controls.Add(panel1);
            Controls.Add(chart);
            Name = "FormStatistics";
            Text = "FormStatistics";
            Load += FormStatistics_Load;
            ((System.ComponentModel.ISupportInitialize)chart).EndInit();
            panel1.ResumeLayout(false);
            panel1.PerformLayout();
            ResumeLayout(false);
        }

        #endregion

        private System.Windows.Forms.DataVisualization.Charting.Chart chart;
        private DateTimePicker dateTimePickerTo;
        private DateTimePicker dateTimePickerFrom;
        private Panel panel1;
        private Label label2;
        private Label label1;
        private CheckBox checkBoxPending;
        private CheckBox checkBoxArriving;
        private CheckBox checkBoxCompleted;
    }
}