private UltraChart CreateNewColumnChart(UltraChart lColumnChart)
        {
            try
            {
                lColumnChart.Dock      = DockStyle.Fill;
                lColumnChart.ChartType = Infragistics.UltraChart.Shared.Styles.ChartType.ColumnChart;

                lColumnChart.ColumnChart.SeriesSpacing = 0;
                lColumnChart.ColumnChart.NullHandling  = Infragistics.UltraChart.Shared.Styles.NullHandling.InterpolateSimple;

                Infragistics.UltraChart.Resources.Appearance.ChartTextAppearance chartTextAppearance = new Infragistics.UltraChart.Resources.Appearance.ChartTextAppearance();

                chartTextAppearance.ChartTextFont    = new System.Drawing.Font("Verdana", 8F);
                chartTextAppearance.Column           = 0;
                chartTextAppearance.ItemFormatString = "<DATA_VALUE:00.00>";
                chartTextAppearance.Row             = -2;
                chartTextAppearance.VerticalAlign   = StringAlignment.Center;
                chartTextAppearance.HorizontalAlign = StringAlignment.Near;
                lColumnChart.BarChart.ChartText.Add(chartTextAppearance);

                lColumnChart.Axis.Y.Labels.Font                         = new System.Drawing.Font("Verdana", 8F);
                lColumnChart.Axis.Y.Labels.FontColor                    = System.Drawing.Color.DimGray;
                lColumnChart.Axis.Y.Labels.HorizontalAlign              = System.Drawing.StringAlignment.Far;
                lColumnChart.Axis.Y.Labels.ItemFormatString             = "<DATA_VALUE:0.##>";
                lColumnChart.Axis.Y.Labels.Layout.Behavior              = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
                lColumnChart.Axis.Y.Labels.Orientation                  = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
                lColumnChart.Axis.Y.Labels.SeriesLabels.Font            = new System.Drawing.Font("Verdana", 8F);
                lColumnChart.Axis.Y.Labels.SeriesLabels.FontColor       = System.Drawing.Color.DimGray;
                lColumnChart.Axis.Y.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Center;
                lColumnChart.Axis.Y.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
                lColumnChart.Axis.Y.Labels.SeriesLabels.Orientation     = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
                lColumnChart.Axis.Y.Labels.SeriesLabels.VerticalAlign   = System.Drawing.StringAlignment.Center;
                lColumnChart.Axis.Y.Labels.VerticalAlign                = System.Drawing.StringAlignment.Center;
                lColumnChart.Axis.Y.LineThickness                       = 1;
                lColumnChart.Axis.Y.MajorGridLines.AlphaLevel           = ((byte)(255));
                lColumnChart.Axis.Y.MajorGridLines.Color                = System.Drawing.Color.Gainsboro;
                lColumnChart.Axis.Y.MajorGridLines.DrawStyle            = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Solid;
                lColumnChart.Axis.Y.MajorGridLines.Visible              = true;
                lColumnChart.Axis.Y.MinorGridLines.AlphaLevel           = ((byte)(200));
                lColumnChart.Axis.Y.MinorGridLines.Color                = System.Drawing.Color.LightGray;
                lColumnChart.Axis.Y.MinorGridLines.DrawStyle            = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
                lColumnChart.Axis.Y.MinorGridLines.Visible              = true;
                lColumnChart.Axis.Y.TickmarkInterval                    = 40;
                lColumnChart.Axis.Y.TickmarkStyle                       = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
                lColumnChart.Axis.Y.Visible           = true;
                lColumnChart.Axis.X.Margin.Near.Value = 0;
                lColumnChart.Axis.Y.Margin.Far.Value  = 2;

                lColumnChart.Axis.X.Labels.ItemFormatString = String.Empty;

                lColumnChart.Axis.X.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
                lColumnChart.Axis.Y.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;

                // title
                lColumnChart.TitleBottom.Visible      = false;
                lColumnChart.TitleTop.Font            = new System.Drawing.Font("Verdana", 12.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Regular))));
                lColumnChart.TitleTop.HorizontalAlign = System.Drawing.StringAlignment.Center;
                lColumnChart.TitleTop.Visible         = false;

                // colours
                lColumnChart.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
                lColumnChart.Border.Color          = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(173)))), ((int)(((byte)(187)))));

                lColumnChart.ColorModel.AlphaLevel = ((byte)(200));
                lColumnChart.ColorModel.ColorBegin = System.Drawing.Color.Red;
                lColumnChart.ColorModel.ColorEnd   = System.Drawing.Color.Red;
                lColumnChart.ColorModel.ModelStyle = ColorModels.CustomLinear;
                //lColumnChart.ColorModel.Scaling = ColorScaling.None;

                Infragistics.UltraChart.Resources.Appearance.GradientEffect gradientEffect1 = new Infragistics.UltraChart.Resources.Appearance.GradientEffect();

                gradientEffect1.Coloring = Infragistics.UltraChart.Shared.Styles.GradientColoringStyle.Lighten;
                gradientEffect1.Style    = Infragistics.UltraChart.Shared.Styles.GradientStyle.BackwardDiagonal;
                lColumnChart.Effects.Effects.Add(gradientEffect1);

                lColumnChart.Data.UseRowLabelsColumn = false;

                // tooltips
                lColumnChart.Tooltips.Font                  = new System.Drawing.Font("Verdana", 8F);
                lColumnChart.Tooltips.FormatString          = " <SERIES_LABEL> (<DATA_VALUE>) ";
                lColumnChart.Tooltips.HighlightFillColor    = System.Drawing.Color.LightBlue;
                lColumnChart.Tooltips.HighlightOutlineColor = System.Drawing.Color.LightBlue;

                lColumnChart.Axis.X.Labels.SeriesLabels.Font      = new System.Drawing.Font("Verdana", 8F);
                lColumnChart.Axis.X.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;

                lColumnChart.InvalidDataReceived += new Infragistics.UltraChart.Shared.Events.ChartDataInvalidEventHandler(lChart_InvalidDataReceived);
                lColumnChart.ChartDrawItem       += new Infragistics.UltraChart.Shared.Events.ChartDrawItemEventHandler(lColumnChart_ChartDrawItem);
                lColumnChart.ChartDataClicked    += new Infragistics.UltraChart.Shared.Events.ChartDataClickedEventHandler(this.complianceChart_ChartDataClicked);

                DataTable reportData = new StatisticsDAO().StatisticsComplianceByType("", "");

                lColumnChart.Axis.Y.RangeType = Infragistics.UltraChart.Shared.Styles.AxisRangeType.Custom;

                double yMax = 0;

                foreach (DataRow row in reportData.Rows)
                {
                    double value = Math.Abs(Convert.ToDouble(row.ItemArray[1]));

                    if (value > yMax)
                    {
                        yMax = value;
                    }
                }

                lColumnChart.Axis.Y.RangeMax = yMax;
                lColumnChart.Axis.Y.RangeMin = 0;
                lColumnChart.DataSource      = reportData;
            }
            catch (Exception ex)
            {
                //logger.Error(ex.Message);
            }

            return(lColumnChart);
        }
        private UltraChart CreateNewStackColumnChart(string reportType)
        {
            UltraChart lStackColumnChart = new UltraChart();

            try
            {
                lStackColumnChart.Dock              = DockStyle.Fill;
                lStackColumnChart.ChartType         = ChartType.StackColumnChart;
                lStackColumnChart.Tooltips.Overflow = TooltipOverflow.ChartArea;

                lStackColumnChart.ColumnChart.SeriesSpacing = 1;

                Infragistics.UltraChart.Resources.Appearance.ChartTextAppearance chartTextAppearance = new Infragistics.UltraChart.Resources.Appearance.ChartTextAppearance();
                Infragistics.UltraChart.Resources.Appearance.StackAppearance     stackAppearance     = new Infragistics.UltraChart.Resources.Appearance.StackAppearance();

                chartTextAppearance.ChartTextFont    = new Font("Verdana", 8F);
                chartTextAppearance.Column           = 0;
                chartTextAppearance.ItemFormatString = "<DATA_VALUE:00.00>";
                chartTextAppearance.Row             = -2;
                chartTextAppearance.VerticalAlign   = StringAlignment.Center;
                chartTextAppearance.HorizontalAlign = StringAlignment.Near;
                lStackColumnChart.BarChart.ChartText.Add(chartTextAppearance);

                lStackColumnChart.Axis.BackColor = Color.White;

                lStackColumnChart.Axis.Y.Labels.Font                         = new Font("Verdana", 8F);
                lStackColumnChart.Axis.Y.Labels.FontColor                    = Color.DimGray;
                lStackColumnChart.Axis.Y.Labels.HorizontalAlign              = StringAlignment.Far;
                lStackColumnChart.Axis.Y.Labels.ItemFormatString             = "<DATA_VALUE:0.##>";
                lStackColumnChart.Axis.Y.Labels.Layout.Behavior              = AxisLabelLayoutBehaviors.Auto;
                lStackColumnChart.Axis.Y.Labels.Orientation                  = TextOrientation.Horizontal;
                lStackColumnChart.Axis.Y.Labels.SeriesLabels.Font            = new Font("Verdana", 8F);
                lStackColumnChart.Axis.Y.Labels.SeriesLabels.FontColor       = Color.DimGray;
                lStackColumnChart.Axis.Y.Labels.SeriesLabels.HorizontalAlign = StringAlignment.Center;
                lStackColumnChart.Axis.Y.Labels.SeriesLabels.Layout.Behavior = AxisLabelLayoutBehaviors.Auto;
                lStackColumnChart.Axis.Y.Labels.SeriesLabels.Orientation     = TextOrientation.VerticalLeftFacing;
                lStackColumnChart.Axis.Y.Labels.SeriesLabels.VerticalAlign   = StringAlignment.Center;
                lStackColumnChart.Axis.Y.Labels.VerticalAlign                = StringAlignment.Center;
                lStackColumnChart.Axis.Y.LineThickness                       = 1;
                lStackColumnChart.Axis.Y.MajorGridLines.AlphaLevel           = 255;
                lStackColumnChart.Axis.Y.MajorGridLines.Color                = Color.Gainsboro;
                lStackColumnChart.Axis.Y.MajorGridLines.DrawStyle            = LineDrawStyle.Solid;
                lStackColumnChart.Axis.Y.MajorGridLines.Visible              = true;
                lStackColumnChart.Axis.Y.MinorGridLines.AlphaLevel           = 200;
                lStackColumnChart.Axis.Y.MinorGridLines.Color                = Color.LightGray;
                lStackColumnChart.Axis.Y.MinorGridLines.DrawStyle            = LineDrawStyle.Dot;
                lStackColumnChart.Axis.Y.MinorGridLines.Visible              = true;
                lStackColumnChart.Axis.Y.TickmarkInterval                    = 40;
                lStackColumnChart.Axis.Y.TickmarkStyle                       = AxisTickStyle.Smart;
                lStackColumnChart.Axis.Y.Visible = true;

                //lStackColumnChart.Axis.X.Margin.Near.Value = 0.74626865671641784;
                lStackColumnChart.Axis.Y.Margin.Far.Value = 2;

                lStackColumnChart.Axis.X.Extent = 13;
                lStackColumnChart.Axis.Y.Extent = 30;

                lStackColumnChart.Axis.X.Labels.ItemFormatString = String.Empty;

                lStackColumnChart.Axis.X.Labels.SeriesLabels.Font      = new Font("Verdana", 8F);
                lStackColumnChart.Axis.X.Labels.SeriesLabels.FontColor = Color.DimGray;

                lStackColumnChart.Axis.X.Labels.Layout.Behavior = AxisLabelLayoutBehaviors.Auto;
                lStackColumnChart.Axis.Y.Labels.Layout.Behavior = AxisLabelLayoutBehaviors.Auto;

                // title
                lStackColumnChart.TitleBottom.Visible      = false;
                lStackColumnChart.TitleTop.Font            = new Font("Verdana", 12.75F, FontStyle.Regular);
                lStackColumnChart.TitleTop.HorizontalAlign = StringAlignment.Center;
                lStackColumnChart.TitleTop.Visible         = false;

                lStackColumnChart.Tooltips.Font                  = new Font("Calibri", 8.25F);
                lStackColumnChart.Tooltips.FormatString          = " <SERIES_LABEL>, <ITEM_LABEL>: <DATA_VALUE> ";
                lStackColumnChart.Tooltips.HighlightFillColor    = Color.LightBlue;
                lStackColumnChart.Tooltips.HighlightOutlineColor = Color.LightBlue;

                // colours
                lStackColumnChart.BackgroundImageLayout = ImageLayout.Center;
                lStackColumnChart.Border.Color          = Color.FromArgb(170, 173, 187);
                //lStackColumnChart.ColorModel.AlphaLevel = ((byte)(255));

                lStackColumnChart.ColorModel.AlphaLevel = 200;
                lStackColumnChart.ColorModel.ColorBegin = Color.Red;
                lStackColumnChart.ColorModel.ColorEnd   = Color.Red;
                lStackColumnChart.ColorModel.ModelStyle = ColorModels.CustomLinear;
                //lColumnChart.ColorModel.Scaling = ColorScaling.None;

                Infragistics.UltraChart.Resources.Appearance.GradientEffect gradientEffect1 = new Infragistics.UltraChart.Resources.Appearance.GradientEffect();

                gradientEffect1.Coloring = GradientColoringStyle.Lighten;
                gradientEffect1.Style    = GradientStyle.BackwardDiagonal;
                lStackColumnChart.Effects.Effects.Add(gradientEffect1);

                // use different colour depending on report type
                DataTable reportData;

                if (reportType == "Under-Licensed Applications")
                {
                    reportData = new StatisticsDAO().StatisticsUnderLicensedApplicationsForDashboard();
                    lStackColumnChart.ColorModel.ColorBegin = Color.FromArgb(211, 78, 78);
                }
                else
                {
                    reportData = new StatisticsDAO().StatisticsOverLicensedApplicationsForDashboard();
                    lStackColumnChart.ColorModel.ColorBegin = Color.FromArgb(151, 189, 100);
                }

                lStackColumnChart.ColorModel.ModelStyle = ColorModels.Office2007Style;
                lStackColumnChart.ColorModel.Scaling    = ColorScaling.Decreasing;

                lStackColumnChart.Data.UseRowLabelsColumn = false;
                lStackColumnChart.EmptyChartText          = "";
                lStackColumnChart.InvalidDataReceived    += lChart_InvalidDataReceived;
                lStackColumnChart.ChartDataClicked       += licenseChart_ChartDataClicked;

                lStackColumnChart.DataSource = reportData;
            }
            catch (Exception ex)
            {
                //logger.Error(ex.Message);
            }

            return(lStackColumnChart);
        }
Example #3
0
        private UltraChart CreateNewStackColumnChart()
        {
            UltraChart lStackColumnChart = new UltraChart();

            try
            {
                lStackColumnChart.Dock      = DockStyle.Fill;
                lStackColumnChart.ChartType = ChartType.StackColumnChart;

                lStackColumnChart.ColumnChart.SeriesSpacing = 1;

                Infragistics.UltraChart.Resources.Appearance.ChartTextAppearance chartTextAppearance = new Infragistics.UltraChart.Resources.Appearance.ChartTextAppearance();
                Infragistics.UltraChart.Resources.Appearance.StackAppearance     stackAppearance     = new Infragistics.UltraChart.Resources.Appearance.StackAppearance();

                chartTextAppearance.ChartTextFont    = new Font("Verdana", 8F);
                chartTextAppearance.Column           = 0;
                chartTextAppearance.ItemFormatString = "<DATA_VALUE:00.00>";
                chartTextAppearance.Row             = -2;
                chartTextAppearance.VerticalAlign   = StringAlignment.Center;
                chartTextAppearance.HorizontalAlign = StringAlignment.Near;
                lStackColumnChart.BarChart.ChartText.Add(chartTextAppearance);

                lStackColumnChart.Axis.BackColor = Color.White;

                lStackColumnChart.Axis.X.Extent           = 35;
                lStackColumnChart.Axis.Y.Extent           = 20;
                lStackColumnChart.Axis.Y.Margin.Far.Value = 2;

                lStackColumnChart.Axis.Y.Labels.Font                         = new Font("Verdana", 8F);
                lStackColumnChart.Axis.Y.Labels.FontColor                    = Color.DimGray;
                lStackColumnChart.Axis.Y.Labels.HorizontalAlign              = StringAlignment.Far;
                lStackColumnChart.Axis.Y.Labels.ItemFormatString             = "<DATA_VALUE:0.##>";
                lStackColumnChart.Axis.Y.Labels.Layout.Behavior              = AxisLabelLayoutBehaviors.Auto;
                lStackColumnChart.Axis.Y.Labels.Orientation                  = TextOrientation.Horizontal;
                lStackColumnChart.Axis.Y.Labels.SeriesLabels.Font            = new Font("Verdana", 7F);
                lStackColumnChart.Axis.Y.Labels.SeriesLabels.FontColor       = Color.DimGray;
                lStackColumnChart.Axis.Y.Labels.SeriesLabels.HorizontalAlign = StringAlignment.Center;
                lStackColumnChart.Axis.Y.Labels.SeriesLabels.Layout.Behavior = AxisLabelLayoutBehaviors.Auto;
                lStackColumnChart.Axis.Y.Labels.SeriesLabels.Orientation     = TextOrientation.VerticalLeftFacing;
                lStackColumnChart.Axis.Y.Labels.SeriesLabels.VerticalAlign   = StringAlignment.Center;
                lStackColumnChart.Axis.Y.Labels.VerticalAlign                = StringAlignment.Center;
                lStackColumnChart.Axis.Y.LineThickness                       = 1;
                lStackColumnChart.Axis.Y.MajorGridLines.AlphaLevel           = 255;
                lStackColumnChart.Axis.Y.MajorGridLines.Color                = Color.Gainsboro;
                lStackColumnChart.Axis.Y.MajorGridLines.DrawStyle            = LineDrawStyle.Solid;
                lStackColumnChart.Axis.Y.MajorGridLines.Visible              = true;
                lStackColumnChart.Axis.Y.MinorGridLines.AlphaLevel           = 200;
                lStackColumnChart.Axis.Y.MinorGridLines.Color                = Color.LightGray;
                lStackColumnChart.Axis.Y.MinorGridLines.DrawStyle            = LineDrawStyle.Dot;
                lStackColumnChart.Axis.Y.MinorGridLines.Visible              = true;
                lStackColumnChart.Axis.Y.TickmarkInterval                    = 40;
                lStackColumnChart.Axis.Y.TickmarkStyle                       = AxisTickStyle.Smart;
                lStackColumnChart.Axis.Y.Visible = true;

                lStackColumnChart.Axis.X.Labels.ItemFormatString = String.Empty;

                lStackColumnChart.Axis.X.Labels.SeriesLabels.Font      = new Font("Verdana", 8F);
                lStackColumnChart.Axis.X.Labels.SeriesLabels.FontColor = Color.DimGray;

                lStackColumnChart.Axis.X.Labels.Layout.Behavior = AxisLabelLayoutBehaviors.Auto;
                lStackColumnChart.Axis.Y.Labels.Layout.Behavior = AxisLabelLayoutBehaviors.Auto;

                // title
                lStackColumnChart.TitleBottom.Visible      = false;
                lStackColumnChart.TitleTop.Font            = new Font("Verdana", 10F, FontStyle.Regular);
                lStackColumnChart.TitleTop.HorizontalAlign = StringAlignment.Center;
                lStackColumnChart.TitleTop.Visible         = false;

                lStackColumnChart.Tooltips.Font                  = new Font("Verdana", 8F);
                lStackColumnChart.Tooltips.FormatString          = " Drive <SERIES_LABEL> <ITEM_LABEL>: <DATA_VALUE> GB ";
                lStackColumnChart.Tooltips.HighlightFillColor    = Color.LightBlue;
                lStackColumnChart.Tooltips.HighlightOutlineColor = Color.LightBlue;

                // colours
                lStackColumnChart.BackgroundImageLayout = ImageLayout.Center;
                lStackColumnChart.Border.Color          = Color.FromArgb(170, 173, 187);
                lStackColumnChart.ColorModel.Scaling    = ColorScaling.Decreasing;

                lStackColumnChart.ColorModel.AlphaLevel = 200;
                lStackColumnChart.ColorModel.ColorBegin = Color.FromArgb(151, 189, 100);
                //lStackColumnChart.ColorModel.ColorEnd = System.Drawing.Color.Red;
                lStackColumnChart.ColorModel.ModelStyle = ColorModels.Office2007Style;
                //lColumnChart.ColorModel.Scaling = ColorScaling.None;

                lStackColumnChart.Tooltips.Overflow = TooltipOverflow.ChartArea;

                Infragistics.UltraChart.Resources.Appearance.GradientEffect gradientEffect1 = new Infragistics.UltraChart.Resources.Appearance.GradientEffect();

                gradientEffect1.Coloring = GradientColoringStyle.Lighten;
                gradientEffect1.Style    = GradientStyle.BackwardDiagonal;
                lStackColumnChart.Effects.Effects.Add(gradientEffect1);

                lStackColumnChart.Data.UseRowLabelsColumn = false;
                lStackColumnChart.EmptyChartText          = "";
                lStackColumnChart.InvalidDataReceived    += lStackColumnChart_InvalidDataReceived;
            }
            catch (Exception ex)
            {
                //logger.Error(ex.Message);
            }

            return(lStackColumnChart);
        }
Example #4
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Infragistics.UltraChart.Resources.Appearance.GradientEffect gradientEffect1 = new Infragistics.UltraChart.Resources.Appearance.GradientEffect();
            Infragistics.UltraChart.Resources.Appearance.LineChartAppearance lineChartAppearance1 = new Infragistics.UltraChart.Resources.Appearance.LineChartAppearance();
            Infragistics.UltraChart.Resources.Appearance.ChartTextAppearance chartTextAppearance1 = new Infragistics.UltraChart.Resources.Appearance.ChartTextAppearance();
            this.ultraChart1 = new Infragistics.Win.UltraWinChart.UltraChart();
            ((System.ComponentModel.ISupportInitialize)(this.ultraChart1)).BeginInit();
            this.SuspendLayout();
            // 
//			'UltraChart' properties's serialization: Since 'ChartType' changes the way axes look,
//			'ChartType' must be persisted ahead of any Axes change made in design time.
//		
            this.ultraChart1.ChartType = Infragistics.UltraChart.Shared.Styles.ChartType.LineChart;
            // 
            // ultraChart1
            // 
            this.ultraChart1.Axis.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(248)))), ((int)(((byte)(220)))));
            this.ultraChart1.Axis.X.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart1.Axis.X.Labels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart1.Axis.X.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart1.Axis.X.Labels.ItemFormatString = "<ITEM_LABEL>";
            this.ultraChart1.Axis.X.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.X.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart1.Axis.X.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart1.Axis.X.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart1.Axis.X.Labels.SeriesLabels.FormatString = "";
            this.ultraChart1.Axis.X.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart1.Axis.X.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.X.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart1.Axis.X.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.X.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.X.LineThickness = 1;
            this.ultraChart1.Axis.X.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart1.Axis.X.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart1.Axis.X.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart1.Axis.X.MajorGridLines.Visible = true;
            this.ultraChart1.Axis.X.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart1.Axis.X.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart1.Axis.X.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart1.Axis.X.MinorGridLines.Visible = false;
            this.ultraChart1.Axis.X.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart1.Axis.X.Visible = true;
            this.ultraChart1.Axis.X2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart1.Axis.X2.Labels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart1.Axis.X2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart1.Axis.X2.Labels.ItemFormatString = "<ITEM_LABEL>";
            this.ultraChart1.Axis.X2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.X2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart1.Axis.X2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart1.Axis.X2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart1.Axis.X2.Labels.SeriesLabels.FormatString = "";
            this.ultraChart1.Axis.X2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart1.Axis.X2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.X2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart1.Axis.X2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.X2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.X2.Labels.Visible = false;
            this.ultraChart1.Axis.X2.LineThickness = 1;
            this.ultraChart1.Axis.X2.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart1.Axis.X2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart1.Axis.X2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart1.Axis.X2.MajorGridLines.Visible = true;
            this.ultraChart1.Axis.X2.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart1.Axis.X2.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart1.Axis.X2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart1.Axis.X2.MinorGridLines.Visible = false;
            this.ultraChart1.Axis.X2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart1.Axis.X2.Visible = false;
            this.ultraChart1.Axis.Y.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart1.Axis.Y.Labels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart1.Axis.Y.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart1.Axis.Y.Labels.ItemFormatString = "<DATA_VALUE:00.##>";
            this.ultraChart1.Axis.Y.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.Y.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart1.Axis.Y.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart1.Axis.Y.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart1.Axis.Y.Labels.SeriesLabels.FormatString = "";
            this.ultraChart1.Axis.Y.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart1.Axis.Y.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.Y.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart1.Axis.Y.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.Y.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.Y.LineThickness = 1;
            this.ultraChart1.Axis.Y.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart1.Axis.Y.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart1.Axis.Y.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart1.Axis.Y.MajorGridLines.Visible = true;
            this.ultraChart1.Axis.Y.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart1.Axis.Y.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart1.Axis.Y.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart1.Axis.Y.MinorGridLines.Visible = false;
            this.ultraChart1.Axis.Y.TickmarkInterval = 20D;
            this.ultraChart1.Axis.Y.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart1.Axis.Y.Visible = true;
            this.ultraChart1.Axis.Y2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart1.Axis.Y2.Labels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart1.Axis.Y2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart1.Axis.Y2.Labels.ItemFormatString = "<DATA_VALUE:00.##>";
            this.ultraChart1.Axis.Y2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.Y2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart1.Axis.Y2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart1.Axis.Y2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart1.Axis.Y2.Labels.SeriesLabels.FormatString = "";
            this.ultraChart1.Axis.Y2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart1.Axis.Y2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.Y2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart1.Axis.Y2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.Y2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.Y2.Labels.Visible = false;
            this.ultraChart1.Axis.Y2.LineThickness = 1;
            this.ultraChart1.Axis.Y2.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart1.Axis.Y2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart1.Axis.Y2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart1.Axis.Y2.MajorGridLines.Visible = true;
            this.ultraChart1.Axis.Y2.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart1.Axis.Y2.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart1.Axis.Y2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart1.Axis.Y2.MinorGridLines.Visible = false;
            this.ultraChart1.Axis.Y2.TickmarkInterval = 20D;
            this.ultraChart1.Axis.Y2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart1.Axis.Y2.Visible = false;
            this.ultraChart1.Axis.Z.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart1.Axis.Z.Labels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart1.Axis.Z.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart1.Axis.Z.Labels.ItemFormatString = "";
            this.ultraChart1.Axis.Z.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.Z.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart1.Axis.Z.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart1.Axis.Z.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart1.Axis.Z.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart1.Axis.Z.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.Z.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart1.Axis.Z.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.Z.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.Z.Labels.Visible = false;
            this.ultraChart1.Axis.Z.LineThickness = 1;
            this.ultraChart1.Axis.Z.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart1.Axis.Z.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart1.Axis.Z.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart1.Axis.Z.MajorGridLines.Visible = true;
            this.ultraChart1.Axis.Z.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart1.Axis.Z.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart1.Axis.Z.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart1.Axis.Z.MinorGridLines.Visible = false;
            this.ultraChart1.Axis.Z.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart1.Axis.Z.Visible = false;
            this.ultraChart1.Axis.Z2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart1.Axis.Z2.Labels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart1.Axis.Z2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart1.Axis.Z2.Labels.ItemFormatString = "";
            this.ultraChart1.Axis.Z2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.Z2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart1.Axis.Z2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart1.Axis.Z2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart1.Axis.Z2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart1.Axis.Z2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.Z2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart1.Axis.Z2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.Z2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.Z2.Labels.Visible = false;
            this.ultraChart1.Axis.Z2.LineThickness = 1;
            this.ultraChart1.Axis.Z2.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart1.Axis.Z2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart1.Axis.Z2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart1.Axis.Z2.MajorGridLines.Visible = true;
            this.ultraChart1.Axis.Z2.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart1.Axis.Z2.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart1.Axis.Z2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart1.Axis.Z2.MinorGridLines.Visible = false;
            this.ultraChart1.Axis.Z2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart1.Axis.Z2.Visible = false;
            this.ultraChart1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.ultraChart1.ColorModel.AlphaLevel = ((byte)(150));
            this.ultraChart1.ColorModel.ColorBegin = System.Drawing.Color.Pink;
            this.ultraChart1.ColorModel.ColorEnd = System.Drawing.Color.DarkRed;
            this.ultraChart1.ColorModel.ModelStyle = Infragistics.UltraChart.Shared.Styles.ColorModels.CustomLinear;
            this.ultraChart1.Data.SwapRowsAndColumns = true;
            this.ultraChart1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.ultraChart1.Effects.Effects.Add(gradientEffect1);
            chartTextAppearance1.ChartTextFont = new System.Drawing.Font("Arial", 7F);
            chartTextAppearance1.ClipText = false;
            chartTextAppearance1.Column = -2;
            chartTextAppearance1.ItemFormatString = "<DATA_VALUE:00.00>";
            chartTextAppearance1.Row = -2;
            chartTextAppearance1.Visible = true;
            lineChartAppearance1.ChartText.Add(chartTextAppearance1);
            this.ultraChart1.LineChart = lineChartAppearance1;
            this.ultraChart1.Location = new System.Drawing.Point(0, 0);
            this.ultraChart1.Name = "ultraChart1";
            this.ultraChart1.Size = new System.Drawing.Size(701, 431);
            this.ultraChart1.TabIndex = 0;
            this.ultraChart1.Tooltips.HighlightFillColor = System.Drawing.Color.DimGray;
            this.ultraChart1.Tooltips.HighlightOutlineColor = System.Drawing.Color.DarkGray;
            this.ultraChart1.Tooltips.TooltipControl = null;
            this.ultraChart1.FillSceneGraph += new Infragistics.UltraChart.Shared.Events.FillSceneGraphEventHandler(this.ultraChart1_FillSceneGraph);
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(701, 431);
            this.Controls.Add(this.ultraChart1);
            this.Name = "Form1";
            this.Text = "Form1";
            ((System.ComponentModel.ISupportInitialize)(this.ultraChart1)).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();
            Infragistics.Win.Appearance appearance124 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance125 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance126 = new Infragistics.Win.Appearance();
            Infragistics.UltraChart.Resources.Appearance.PaintElement paintElement1 = new Infragistics.UltraChart.Resources.Appearance.PaintElement();
            Infragistics.UltraChart.Resources.Appearance.BarChartAppearance barChartAppearance1 = new Infragistics.UltraChart.Resources.Appearance.BarChartAppearance();
            Infragistics.UltraChart.Resources.Appearance.ChartTextAppearance chartTextAppearance1 = new Infragistics.UltraChart.Resources.Appearance.ChartTextAppearance();
            Infragistics.UltraChart.Resources.Appearance.GradientEffect gradientEffect1 = new Infragistics.UltraChart.Resources.Appearance.GradientEffect();
            Infragistics.Win.Appearance appearance109 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance122 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance123 = new Infragistics.Win.Appearance();
            Infragistics.UltraChart.Resources.Appearance.PaintElement paintElement2 = new Infragistics.UltraChart.Resources.Appearance.PaintElement();
            Infragistics.UltraChart.Resources.Appearance.BarChartAppearance barChartAppearance2 = new Infragistics.UltraChart.Resources.Appearance.BarChartAppearance();
            Infragistics.UltraChart.Resources.Appearance.ChartTextAppearance chartTextAppearance2 = new Infragistics.UltraChart.Resources.Appearance.ChartTextAppearance();
            Infragistics.UltraChart.Resources.Appearance.GradientEffect gradientEffect2 = new Infragistics.UltraChart.Resources.Appearance.GradientEffect();
            Infragistics.Win.Appearance appearance121 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance129 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance131 = new Infragistics.Win.Appearance();
            Infragistics.UltraChart.Resources.Appearance.PaintElement paintElement3 = new Infragistics.UltraChart.Resources.Appearance.PaintElement();
            Infragistics.UltraChart.Resources.Appearance.BarChartAppearance barChartAppearance3 = new Infragistics.UltraChart.Resources.Appearance.BarChartAppearance();
            Infragistics.UltraChart.Resources.Appearance.ChartTextAppearance chartTextAppearance3 = new Infragistics.UltraChart.Resources.Appearance.ChartTextAppearance();
            Infragistics.UltraChart.Resources.Appearance.GradientEffect gradientEffect3 = new Infragistics.UltraChart.Resources.Appearance.GradientEffect();
            Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
            Infragistics.UltraChart.Resources.Appearance.PaintElement paintElement4 = new Infragistics.UltraChart.Resources.Appearance.PaintElement();
            Infragistics.UltraChart.Resources.Appearance.BarChartAppearance barChartAppearance4 = new Infragistics.UltraChart.Resources.Appearance.BarChartAppearance();
            Infragistics.UltraChart.Resources.Appearance.ChartTextAppearance chartTextAppearance4 = new Infragistics.UltraChart.Resources.Appearance.ChartTextAppearance();
            Infragistics.UltraChart.Resources.Appearance.GradientEffect gradientEffect4 = new Infragistics.UltraChart.Resources.Appearance.GradientEffect();
            Infragistics.Win.Appearance appearance105 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance104 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance103 = new Infragistics.Win.Appearance();
            Infragistics.UltraChart.Resources.Appearance.PaintElement paintElement5 = new Infragistics.UltraChart.Resources.Appearance.PaintElement();
            Infragistics.UltraChart.Resources.Appearance.BarChartAppearance barChartAppearance5 = new Infragistics.UltraChart.Resources.Appearance.BarChartAppearance();
            Infragistics.UltraChart.Resources.Appearance.ChartTextAppearance chartTextAppearance5 = new Infragistics.UltraChart.Resources.Appearance.ChartTextAppearance();
            Infragistics.UltraChart.Resources.Appearance.GradientEffect gradientEffect5 = new Infragistics.UltraChart.Resources.Appearance.GradientEffect();
            Infragistics.Win.Appearance appearance100 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance102 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance101 = new Infragistics.Win.Appearance();
            Infragistics.UltraChart.Resources.Appearance.PaintElement paintElement6 = new Infragistics.UltraChart.Resources.Appearance.PaintElement();
            Infragistics.UltraChart.Resources.Appearance.BarChartAppearance barChartAppearance6 = new Infragistics.UltraChart.Resources.Appearance.BarChartAppearance();
            Infragistics.UltraChart.Resources.Appearance.ChartTextAppearance chartTextAppearance6 = new Infragistics.UltraChart.Resources.Appearance.ChartTextAppearance();
            Infragistics.UltraChart.Resources.Appearance.GradientEffect gradientEffect6 = new Infragistics.UltraChart.Resources.Appearance.GradientEffect();
            Infragistics.Win.Appearance appearance127 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance128 = new Infragistics.Win.Appearance();
            Infragistics.UltraChart.Resources.Appearance.PaintElement paintElement7 = new Infragistics.UltraChart.Resources.Appearance.PaintElement();
            Infragistics.UltraChart.Resources.Appearance.BarChartAppearance barChartAppearance7 = new Infragistics.UltraChart.Resources.Appearance.BarChartAppearance();
            Infragistics.UltraChart.Resources.Appearance.ChartTextAppearance chartTextAppearance7 = new Infragistics.UltraChart.Resources.Appearance.ChartTextAppearance();
            Infragistics.UltraChart.Resources.Appearance.GradientEffect gradientEffect7 = new Infragistics.UltraChart.Resources.Appearance.GradientEffect();
            this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
            this.validationProvider1 = new Microsoft.Practices.EnterpriseLibrary.Validation.Integration.WinForms.ValidationProvider();
            this.DateTimeStartDateForUser = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
            this.DateTimeEndDateForUser = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
            this.ultraExpandableGroupBox6 = new HiiP.Framework.Common.Client.ExtendedUltraExpandableGroupBox();
            this.ultraExpandableGroupBoxPanel7 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
            this.ultraExpandableGroupBoxPanel9 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
            this.validationProvider2 = new Microsoft.Practices.EnterpriseLibrary.Validation.Integration.WinForms.ValidationProvider();
            this.DateTimeStartDateForRole = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
            this.DateTimeEndDateForRole = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
            this.validationProvider3 = new Microsoft.Practices.EnterpriseLibrary.Validation.Integration.WinForms.ValidationProvider();
            this.DateTimeEndDateForOffice = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
            this.DateTimeStartDateForOffice = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
            this.validationProvider4 = new Microsoft.Practices.EnterpriseLibrary.Validation.Integration.WinForms.ValidationProvider();
            this.validationProvider5 = new Microsoft.Practices.EnterpriseLibrary.Validation.Integration.WinForms.ValidationProvider();
            this.DateTimeEndDateForModule = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
            this.DateTimeStartDateForModule = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
            this.validationProvider6 = new Microsoft.Practices.EnterpriseLibrary.Validation.Integration.WinForms.ValidationProvider();
            this.DateTimeEndDateForFunction = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
            this.DateTimeStartDateForFunction = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
            this.validationProvider7 = new Microsoft.Practices.EnterpriseLibrary.Validation.Integration.WinForms.ValidationProvider();
            this.DateTimeEndDateForCount = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
            this.DateTimeStartDateForCount = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
            this.validationProvider8 = new Microsoft.Practices.EnterpriseLibrary.Validation.Integration.WinForms.ValidationProvider();
            this.DateTimeEndDateForCountPerModule = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
            this.DateTimeStartDateForCountPerModule = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
            this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
            this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
            this.ButtonClose = new Infragistics.Win.Misc.UltraButton();
            this.panel1 = new System.Windows.Forms.Panel();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.usageByFunctionExpandableGroupBox = new HiiP.Framework.Common.Client.ExtendedUltraExpandableGroupBox();
            this.ultraExpandableGroupBoxPanel8 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
            this.TextBoxFunctionId = new HiiP.Framework.Common.Client.ExtendedUltraTextEditor();
            this.ButtonSearchForFunction = new Infragistics.Win.Misc.UltraButton();
            this.ButtonClearForFunction = new Infragistics.Win.Misc.UltraButton();
            this.ultraLabel19 = new Infragistics.Win.Misc.UltraLabel();
            this.ultraLabel20 = new Infragistics.Win.Misc.UltraLabel();
            this.ultraLabel21 = new Infragistics.Win.Misc.UltraLabel();
            this.ultraChart6 = new Infragistics.Win.UltraWinChart.UltraChart();
            this.usageByModuleExpandableGroupBox = new HiiP.Framework.Common.Client.ExtendedUltraExpandableGroupBox();
            this.ultraExpandableGroupBoxPanel6 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
            this.TextBoxModuleId = new HiiP.Framework.Common.Client.ExtendedUltraTextEditor();
            this.ButtonSearchForModule = new Infragistics.Win.Misc.UltraButton();
            this.ButtonClearForModule = new Infragistics.Win.Misc.UltraButton();
            this.ultraLabel16 = new Infragistics.Win.Misc.UltraLabel();
            this.ultraLabel17 = new Infragistics.Win.Misc.UltraLabel();
            this.ultraLabel18 = new Infragistics.Win.Misc.UltraLabel();
            this.ultraChart5 = new Infragistics.Win.UltraWinChart.UltraChart();
            this.usageByUserCountPerModuleExpandableGroupBox = new HiiP.Framework.Common.Client.ExtendedUltraExpandableGroupBox();
            this.ultraExpandableGroupBoxPanel4 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
            this.TextBoxModuleIdForCount = new HiiP.Framework.Common.Client.ExtendedUltraTextEditor();
            this.ultraLabel26 = new Infragistics.Win.Misc.UltraLabel();
            this.ButtonSearchForCountPerModule = new Infragistics.Win.Misc.UltraButton();
            this.ButtonClearForCountPerModule = new Infragistics.Win.Misc.UltraButton();
            this.ultraLabel22 = new Infragistics.Win.Misc.UltraLabel();
            this.ultraLabel25 = new Infragistics.Win.Misc.UltraLabel();
            this.ultraChart8 = new Infragistics.Win.UltraWinChart.UltraChart();
            this.usageByUserExpandableGroupBox = new HiiP.Framework.Common.Client.ExtendedUltraExpandableGroupBox();
            this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
            this.TextBoxUserName = new HiiP.Framework.Common.Client.ExtendedUltraTextEditor();
            this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
            this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
            this.ButtonSearchForUser = new Infragistics.Win.Misc.UltraButton();
            this.ButtonClearForUser = new Infragistics.Win.Misc.UltraButton();
            this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
            this.ultraChart1 = new Infragistics.Win.UltraWinChart.UltraChart();
            this.usageByOfficeExpandableGroupBox = new HiiP.Framework.Common.Client.ExtendedUltraExpandableGroupBox();
            this.ultraExpandableGroupBoxPanel3 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
            this.TextBoxOfficeName = new HiiP.Framework.Common.Client.ExtendedUltraTextEditor();
            this.ButtonSearchForOffice = new Infragistics.Win.Misc.UltraButton();
            this.ButtonClearForOffice = new Infragistics.Win.Misc.UltraButton();
            this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
            this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
            this.ultraLabel12 = new Infragistics.Win.Misc.UltraLabel();
            this.ultraChart3 = new Infragistics.Win.UltraWinChart.UltraChart();
            this.usageByRoleExpandableGroupBox = new HiiP.Framework.Common.Client.ExtendedUltraExpandableGroupBox();
            this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
            this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
            this.TextBoxRoleId = new HiiP.Framework.Common.Client.ExtendedUltraTextEditor();
            this.ButtonSearchForRole = new Infragistics.Win.Misc.UltraButton();
            this.ButtonClearForRole = new Infragistics.Win.Misc.UltraButton();
            this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
            this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
            this.ultraChart2 = new Infragistics.Win.UltraWinChart.UltraChart();
            this.usageByUserCountExpandableGroupBox = new HiiP.Framework.Common.Client.ExtendedUltraExpandableGroupBox();
            this.ultraExpandableGroupBoxPanel10 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
            this.ButtonClearForCount = new Infragistics.Win.Misc.UltraButton();
            this.ButtonSearchForCount = new Infragistics.Win.Misc.UltraButton();
            this.ultraLabel23 = new Infragistics.Win.Misc.UltraLabel();
            this.ultraLabel24 = new Infragistics.Win.Misc.UltraLabel();
            this.ultraChart7 = new Infragistics.Win.UltraWinChart.UltraChart();
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeStartDateForUser)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeEndDateForUser)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox6)).BeginInit();
            this.ultraExpandableGroupBox6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeStartDateForRole)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeEndDateForRole)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeEndDateForOffice)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeStartDateForOffice)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeEndDateForModule)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeStartDateForModule)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeEndDateForFunction)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeStartDateForFunction)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeEndDateForCount)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeStartDateForCount)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeEndDateForCountPerModule)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeStartDateForCountPerModule)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
            this.ultraGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
            this.ultraGroupBox2.SuspendLayout();
            this.panel1.SuspendLayout();
            this.tableLayoutPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.usageByFunctionExpandableGroupBox)).BeginInit();
            this.usageByFunctionExpandableGroupBox.SuspendLayout();
            this.ultraExpandableGroupBoxPanel8.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TextBoxFunctionId)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ultraChart6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.usageByModuleExpandableGroupBox)).BeginInit();
            this.usageByModuleExpandableGroupBox.SuspendLayout();
            this.ultraExpandableGroupBoxPanel6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TextBoxModuleId)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ultraChart5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.usageByUserCountPerModuleExpandableGroupBox)).BeginInit();
            this.usageByUserCountPerModuleExpandableGroupBox.SuspendLayout();
            this.ultraExpandableGroupBoxPanel4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TextBoxModuleIdForCount)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ultraChart8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.usageByUserExpandableGroupBox)).BeginInit();
            this.usageByUserExpandableGroupBox.SuspendLayout();
            this.ultraExpandableGroupBoxPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TextBoxUserName)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ultraChart1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.usageByOfficeExpandableGroupBox)).BeginInit();
            this.usageByOfficeExpandableGroupBox.SuspendLayout();
            this.ultraExpandableGroupBoxPanel3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TextBoxOfficeName)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ultraChart3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.usageByRoleExpandableGroupBox)).BeginInit();
            this.usageByRoleExpandableGroupBox.SuspendLayout();
            this.ultraExpandableGroupBoxPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TextBoxRoleId)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ultraChart2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.usageByUserCountExpandableGroupBox)).BeginInit();
            this.usageByUserCountExpandableGroupBox.SuspendLayout();
            this.ultraExpandableGroupBoxPanel10.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ultraChart7)).BeginInit();
            this.SuspendLayout();
            // 
            // errorProvider1
            // 
            this.errorProvider1.ContainerControl = this;
            // 
            // validationProvider1
            // 
            this.validationProvider1.ErrorProvider = this.errorProvider1;
            this.validationProvider1.RulesetName = "Date Time Compare Set For Usage";
            this.validationProvider1.SourceTypeName = "HiiP.Framework.Logging.Interface.ValidationEntity.DateTimeCompare,HiiP.Framework." +
                "Logging.Interface";
            // 
            // DateTimeStartDateForUser
            // 
            this.DateTimeStartDateForUser.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.DateTimeStartDateForUser.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
            this.DateTimeStartDateForUser.Location = new System.Drawing.Point(98, 27);
            this.DateTimeStartDateForUser.MaskInput = "{date}";
            this.DateTimeStartDateForUser.Name = "DateTimeStartDateForUser";
            this.DateTimeStartDateForUser.Nullable = false;
            this.validationProvider1.SetPerformValidation(this.DateTimeStartDateForUser, true);
            this.DateTimeStartDateForUser.Size = new System.Drawing.Size(120, 23);
            this.validationProvider1.SetSourcePropertyName(this.DateTimeStartDateForUser, "StartTime");
            this.DateTimeStartDateForUser.TabIndex = 1;
            this.validationProvider1.SetValidatedProperty(this.DateTimeStartDateForUser, "Value");
            // 
            // DateTimeEndDateForUser
            // 
            this.DateTimeEndDateForUser.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.DateTimeEndDateForUser.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
            this.DateTimeEndDateForUser.Location = new System.Drawing.Point(373, 27);
            this.DateTimeEndDateForUser.MaskInput = "{date}";
            this.DateTimeEndDateForUser.Name = "DateTimeEndDateForUser";
            this.DateTimeEndDateForUser.Nullable = false;
            this.validationProvider1.SetPerformValidation(this.DateTimeEndDateForUser, true);
            this.DateTimeEndDateForUser.Size = new System.Drawing.Size(120, 23);
            this.validationProvider1.SetSourcePropertyName(this.DateTimeEndDateForUser, "EndTime");
            this.DateTimeEndDateForUser.TabIndex = 3;
            this.validationProvider1.SetValidatedProperty(this.DateTimeEndDateForUser, "Value");
            // 
            // ultraExpandableGroupBox6
            // 
            this.ultraExpandableGroupBox6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.ultraExpandableGroupBox6.Controls.Add(this.ultraExpandableGroupBoxPanel7);
            this.ultraExpandableGroupBox6.ExpandedSize = new System.Drawing.Size(0, 0);
            this.ultraExpandableGroupBox6.Location = new System.Drawing.Point(0, 0);
            this.ultraExpandableGroupBox6.Name = "ultraExpandableGroupBox6";
            this.ultraExpandableGroupBox6.Size = new System.Drawing.Size(200, 185);
            this.ultraExpandableGroupBox6.TabIndex = 0;
            // 
            // ultraExpandableGroupBoxPanel7
            // 
            this.ultraExpandableGroupBoxPanel7.AutoSize = true;
            this.ultraExpandableGroupBoxPanel7.Dock = System.Windows.Forms.DockStyle.Fill;
            this.ultraExpandableGroupBoxPanel7.Location = new System.Drawing.Point(3, 17);
            this.ultraExpandableGroupBoxPanel7.Name = "ultraExpandableGroupBoxPanel7";
            this.ultraExpandableGroupBoxPanel7.Size = new System.Drawing.Size(194, 165);
            this.ultraExpandableGroupBoxPanel7.TabIndex = 0;
            // 
            // ultraExpandableGroupBoxPanel9
            // 
            this.ultraExpandableGroupBoxPanel9.AutoSize = true;
            this.ultraExpandableGroupBoxPanel9.Dock = System.Windows.Forms.DockStyle.Fill;
            this.ultraExpandableGroupBoxPanel9.Location = new System.Drawing.Point(3, 19);
            this.ultraExpandableGroupBoxPanel9.Name = "ultraExpandableGroupBoxPanel9";
            this.ultraExpandableGroupBoxPanel9.Size = new System.Drawing.Size(904, 0);
            this.ultraExpandableGroupBoxPanel9.TabIndex = 0;
            // 
            // validationProvider2
            // 
            this.validationProvider2.ErrorProvider = this.errorProvider1;
            this.validationProvider2.RulesetName = "Date Time Compare Set For Usage";
            this.validationProvider2.SourceTypeName = "HiiP.Framework.Logging.Interface.ValidationEntity.DateTimeCompare,HiiP.Framework." +
                "Logging.Interface";
            // 
            // DateTimeStartDateForRole
            // 
            this.DateTimeStartDateForRole.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.DateTimeStartDateForRole.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
            this.DateTimeStartDateForRole.Location = new System.Drawing.Point(98, 27);
            this.DateTimeStartDateForRole.MaskInput = "{date}";
            this.DateTimeStartDateForRole.Name = "DateTimeStartDateForRole";
            this.DateTimeStartDateForRole.Nullable = false;
            this.validationProvider2.SetPerformValidation(this.DateTimeStartDateForRole, true);
            this.DateTimeStartDateForRole.Size = new System.Drawing.Size(120, 23);
            this.validationProvider2.SetSourcePropertyName(this.DateTimeStartDateForRole, "StartTime");
            this.DateTimeStartDateForRole.TabIndex = 1;
            this.validationProvider2.SetValidatedProperty(this.DateTimeStartDateForRole, "Value");
            // 
            // DateTimeEndDateForRole
            // 
            this.DateTimeEndDateForRole.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.DateTimeEndDateForRole.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
            this.DateTimeEndDateForRole.Location = new System.Drawing.Point(373, 27);
            this.DateTimeEndDateForRole.MaskInput = "{date}";
            this.DateTimeEndDateForRole.Name = "DateTimeEndDateForRole";
            this.DateTimeEndDateForRole.Nullable = false;
            this.validationProvider2.SetPerformValidation(this.DateTimeEndDateForRole, true);
            this.DateTimeEndDateForRole.Size = new System.Drawing.Size(120, 23);
            this.validationProvider2.SetSourcePropertyName(this.DateTimeEndDateForRole, "EndTime");
            this.DateTimeEndDateForRole.TabIndex = 3;
            this.validationProvider2.SetValidatedProperty(this.DateTimeEndDateForRole, "Value");
            // 
            // validationProvider3
            // 
            this.validationProvider3.ErrorProvider = this.errorProvider1;
            this.validationProvider3.RulesetName = "Date Time Compare Set For Usage";
            this.validationProvider3.SourceTypeName = "HiiP.Framework.Logging.Interface.ValidationEntity.DateTimeCompare,HiiP.Framework." +
                "Logging.Interface";
            // 
            // DateTimeEndDateForOffice
            // 
            this.DateTimeEndDateForOffice.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.DateTimeEndDateForOffice.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
            this.DateTimeEndDateForOffice.Location = new System.Drawing.Point(373, 27);
            this.DateTimeEndDateForOffice.MaskInput = "{date}";
            this.DateTimeEndDateForOffice.Name = "DateTimeEndDateForOffice";
            this.DateTimeEndDateForOffice.Nullable = false;
            this.validationProvider3.SetPerformValidation(this.DateTimeEndDateForOffice, true);
            this.DateTimeEndDateForOffice.Size = new System.Drawing.Size(120, 23);
            this.validationProvider3.SetSourcePropertyName(this.DateTimeEndDateForOffice, "EndTime");
            this.DateTimeEndDateForOffice.TabIndex = 3;
            this.validationProvider3.SetValidatedProperty(this.DateTimeEndDateForOffice, "Value");
            // 
            // DateTimeStartDateForOffice
            // 
            this.DateTimeStartDateForOffice.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.DateTimeStartDateForOffice.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
            this.DateTimeStartDateForOffice.Location = new System.Drawing.Point(98, 27);
            this.DateTimeStartDateForOffice.MaskInput = "{date}";
            this.DateTimeStartDateForOffice.Name = "DateTimeStartDateForOffice";
            this.DateTimeStartDateForOffice.Nullable = false;
            this.validationProvider3.SetPerformValidation(this.DateTimeStartDateForOffice, true);
            this.DateTimeStartDateForOffice.Size = new System.Drawing.Size(120, 23);
            this.validationProvider3.SetSourcePropertyName(this.DateTimeStartDateForOffice, "StartTime");
            this.DateTimeStartDateForOffice.TabIndex = 1;
            this.validationProvider3.SetValidatedProperty(this.DateTimeStartDateForOffice, "Value");
            // 
            // validationProvider4
            // 
            this.validationProvider4.ErrorProvider = this.errorProvider1;
            this.validationProvider4.RulesetName = "Date Time Compare Set For Usage";
            this.validationProvider4.SourceTypeName = "HiiP.Framework.Logging.Interface.ValidationEntity.DateTimeCompare,HiiP.Framework." +
                "Logging.Interface";
            // 
            // validationProvider5
            // 
            this.validationProvider5.ErrorProvider = this.errorProvider1;
            this.validationProvider5.RulesetName = "Date Time Compare Set For Usage";
            this.validationProvider5.SourceTypeName = "HiiP.Framework.Logging.Interface.ValidationEntity.DateTimeCompare,HiiP.Framework." +
                "Logging.Interface";
            // 
            // DateTimeEndDateForModule
            // 
            this.DateTimeEndDateForModule.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.DateTimeEndDateForModule.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
            this.DateTimeEndDateForModule.Location = new System.Drawing.Point(373, 27);
            this.DateTimeEndDateForModule.MaskInput = "{date}";
            this.DateTimeEndDateForModule.Name = "DateTimeEndDateForModule";
            this.DateTimeEndDateForModule.Nullable = false;
            this.validationProvider5.SetPerformValidation(this.DateTimeEndDateForModule, true);
            this.DateTimeEndDateForModule.Size = new System.Drawing.Size(120, 23);
            this.validationProvider5.SetSourcePropertyName(this.DateTimeEndDateForModule, "EndTime");
            this.DateTimeEndDateForModule.TabIndex = 3;
            this.validationProvider5.SetValidatedProperty(this.DateTimeEndDateForModule, "Value");
            // 
            // DateTimeStartDateForModule
            // 
            this.DateTimeStartDateForModule.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.DateTimeStartDateForModule.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
            this.DateTimeStartDateForModule.Location = new System.Drawing.Point(98, 27);
            this.DateTimeStartDateForModule.MaskInput = "{date}";
            this.DateTimeStartDateForModule.Name = "DateTimeStartDateForModule";
            this.DateTimeStartDateForModule.Nullable = false;
            this.validationProvider5.SetPerformValidation(this.DateTimeStartDateForModule, true);
            this.DateTimeStartDateForModule.Size = new System.Drawing.Size(120, 23);
            this.validationProvider5.SetSourcePropertyName(this.DateTimeStartDateForModule, "StartTime");
            this.DateTimeStartDateForModule.TabIndex = 1;
            this.validationProvider5.SetValidatedProperty(this.DateTimeStartDateForModule, "Value");
            // 
            // validationProvider6
            // 
            this.validationProvider6.ErrorProvider = this.errorProvider1;
            this.validationProvider6.RulesetName = "Date Time Compare Set For Usage";
            this.validationProvider6.SourceTypeName = "HiiP.Framework.Logging.Interface.ValidationEntity.DateTimeCompare,HiiP.Framework." +
                "Logging.Interface";
            // 
            // DateTimeEndDateForFunction
            // 
            this.DateTimeEndDateForFunction.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.DateTimeEndDateForFunction.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
            this.DateTimeEndDateForFunction.Location = new System.Drawing.Point(373, 27);
            this.DateTimeEndDateForFunction.MaskInput = "{date}";
            this.DateTimeEndDateForFunction.Name = "DateTimeEndDateForFunction";
            this.DateTimeEndDateForFunction.Nullable = false;
            this.validationProvider6.SetPerformValidation(this.DateTimeEndDateForFunction, true);
            this.DateTimeEndDateForFunction.Size = new System.Drawing.Size(120, 23);
            this.validationProvider6.SetSourcePropertyName(this.DateTimeEndDateForFunction, "EndTime");
            this.DateTimeEndDateForFunction.TabIndex = 3;
            this.validationProvider6.SetValidatedProperty(this.DateTimeEndDateForFunction, "Value");
            // 
            // DateTimeStartDateForFunction
            // 
            this.DateTimeStartDateForFunction.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.DateTimeStartDateForFunction.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
            this.DateTimeStartDateForFunction.Location = new System.Drawing.Point(98, 27);
            this.DateTimeStartDateForFunction.MaskInput = "{date}";
            this.DateTimeStartDateForFunction.Name = "DateTimeStartDateForFunction";
            this.DateTimeStartDateForFunction.Nullable = false;
            this.validationProvider6.SetPerformValidation(this.DateTimeStartDateForFunction, true);
            this.DateTimeStartDateForFunction.Size = new System.Drawing.Size(120, 23);
            this.validationProvider6.SetSourcePropertyName(this.DateTimeStartDateForFunction, "StartTime");
            this.DateTimeStartDateForFunction.TabIndex = 1;
            this.validationProvider6.SetValidatedProperty(this.DateTimeStartDateForFunction, "Value");
            // 
            // validationProvider7
            // 
            this.validationProvider7.ErrorProvider = this.errorProvider1;
            this.validationProvider7.RulesetName = "Date Time Compare Set For Usage";
            this.validationProvider7.SourceTypeName = "HiiP.Framework.Logging.Interface.ValidationEntity.DateTimeCompare,HiiP.Framework." +
                "Logging.Interface";
            // 
            // DateTimeEndDateForCount
            // 
            this.DateTimeEndDateForCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.DateTimeEndDateForCount.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
            this.DateTimeEndDateForCount.Location = new System.Drawing.Point(373, 27);
            this.DateTimeEndDateForCount.MaskInput = "{date}";
            this.DateTimeEndDateForCount.Name = "DateTimeEndDateForCount";
            this.DateTimeEndDateForCount.Nullable = false;
            this.validationProvider7.SetPerformValidation(this.DateTimeEndDateForCount, true);
            this.DateTimeEndDateForCount.Size = new System.Drawing.Size(120, 23);
            this.validationProvider7.SetSourcePropertyName(this.DateTimeEndDateForCount, "EndTime");
            this.DateTimeEndDateForCount.TabIndex = 3;
            this.validationProvider7.SetValidatedProperty(this.DateTimeEndDateForCount, "Value");
            // 
            // DateTimeStartDateForCount
            // 
            this.DateTimeStartDateForCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.DateTimeStartDateForCount.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
            this.DateTimeStartDateForCount.Location = new System.Drawing.Point(98, 27);
            this.DateTimeStartDateForCount.MaskInput = "{date}";
            this.DateTimeStartDateForCount.Name = "DateTimeStartDateForCount";
            this.DateTimeStartDateForCount.Nullable = false;
            this.validationProvider7.SetPerformValidation(this.DateTimeStartDateForCount, true);
            this.DateTimeStartDateForCount.Size = new System.Drawing.Size(120, 23);
            this.validationProvider7.SetSourcePropertyName(this.DateTimeStartDateForCount, "StartTime");
            this.DateTimeStartDateForCount.TabIndex = 1;
            this.validationProvider7.SetValidatedProperty(this.DateTimeStartDateForCount, "Value");
            // 
            // validationProvider8
            // 
            this.validationProvider8.ErrorProvider = this.errorProvider1;
            this.validationProvider8.RulesetName = "Date Time Compare Set For Usage";
            this.validationProvider8.SourceTypeName = "HiiP.Framework.Logging.Interface.ValidationEntity.DateTimeCompare,HiiP.Framework." +
                "Logging.Interface";
            // 
            // DateTimeEndDateForCountPerModule
            // 
            this.DateTimeEndDateForCountPerModule.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.DateTimeEndDateForCountPerModule.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
            this.DateTimeEndDateForCountPerModule.Location = new System.Drawing.Point(373, 27);
            this.DateTimeEndDateForCountPerModule.MaskInput = "{date}";
            this.DateTimeEndDateForCountPerModule.Name = "DateTimeEndDateForCountPerModule";
            this.DateTimeEndDateForCountPerModule.Nullable = false;
            this.validationProvider8.SetPerformValidation(this.DateTimeEndDateForCountPerModule, true);
            this.DateTimeEndDateForCountPerModule.Size = new System.Drawing.Size(120, 23);
            this.validationProvider8.SetSourcePropertyName(this.DateTimeEndDateForCountPerModule, "EndTime");
            this.DateTimeEndDateForCountPerModule.TabIndex = 3;
            this.validationProvider8.SetValidatedProperty(this.DateTimeEndDateForCountPerModule, "Value");
            // 
            // DateTimeStartDateForCountPerModule
            // 
            this.DateTimeStartDateForCountPerModule.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.DateTimeStartDateForCountPerModule.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
            this.DateTimeStartDateForCountPerModule.Location = new System.Drawing.Point(98, 27);
            this.DateTimeStartDateForCountPerModule.MaskInput = "{date}";
            this.DateTimeStartDateForCountPerModule.Name = "DateTimeStartDateForCountPerModule";
            this.DateTimeStartDateForCountPerModule.Nullable = false;
            this.validationProvider8.SetPerformValidation(this.DateTimeStartDateForCountPerModule, true);
            this.DateTimeStartDateForCountPerModule.Size = new System.Drawing.Size(120, 23);
            this.validationProvider8.SetSourcePropertyName(this.DateTimeStartDateForCountPerModule, "StartTime");
            this.DateTimeStartDateForCountPerModule.TabIndex = 1;
            this.validationProvider8.SetValidatedProperty(this.DateTimeStartDateForCountPerModule, "Value");
            // 
            // ultraGroupBox1
            // 
            this.ultraGroupBox1.Controls.Add(this.ultraGroupBox2);
            this.ultraGroupBox1.Controls.Add(this.panel1);
            this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
            this.ultraGroupBox1.Name = "ultraGroupBox1";
            this.ultraGroupBox1.Size = new System.Drawing.Size(978, 513);
            this.ultraGroupBox1.TabIndex = 0;
            // 
            // ultraGroupBox2
            // 
            this.ultraGroupBox2.Controls.Add(this.ButtonClose);
            this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.ultraGroupBox2.Location = new System.Drawing.Point(3, 480);
            this.ultraGroupBox2.Name = "ultraGroupBox2";
            this.ultraGroupBox2.Size = new System.Drawing.Size(972, 30);
            this.ultraGroupBox2.TabIndex = 0;
            // 
            // ButtonClose
            // 
            this.ButtonClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.ButtonClose.ButtonStyle = Infragistics.Win.UIElementButtonStyle.WindowsVistaButton;
            this.ButtonClose.Location = new System.Drawing.Point(882, 3);
            this.ButtonClose.Name = "ButtonClose";
            this.ButtonClose.Size = new System.Drawing.Size(87, 25);
            this.ButtonClose.TabIndex = 8;
            this.ButtonClose.Text = "&Close";
            this.ButtonClose.Click += new System.EventHandler(this.ButtonClose_Click);
            // 
            // panel1
            // 
            this.panel1.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.panel1.AutoScroll = true;
            this.panel1.AutoScrollMinSize = new System.Drawing.Size(400, 300);
            this.panel1.Controls.Add(this.tableLayoutPanel1);
            this.panel1.Location = new System.Drawing.Point(3, 0);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(972, 474);
            this.panel1.TabIndex = 0;
            // 
            // tableLayoutPanel1
            // 
            this.tableLayoutPanel1.AutoScroll = true;
            this.tableLayoutPanel1.AutoSize = true;
            this.tableLayoutPanel1.BackColor = System.Drawing.Color.Transparent;
            this.tableLayoutPanel1.ColumnCount = 1;
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel1.Controls.Add(this.usageByFunctionExpandableGroupBox, 0, 5);
            this.tableLayoutPanel1.Controls.Add(this.usageByModuleExpandableGroupBox, 0, 4);
            this.tableLayoutPanel1.Controls.Add(this.usageByUserCountPerModuleExpandableGroupBox, 0, 7);
            this.tableLayoutPanel1.Controls.Add(this.usageByUserExpandableGroupBox, 0, 0);
            this.tableLayoutPanel1.Controls.Add(this.usageByOfficeExpandableGroupBox, 0, 2);
            this.tableLayoutPanel1.Controls.Add(this.usageByRoleExpandableGroupBox, 0, 1);
            this.tableLayoutPanel1.Controls.Add(this.usageByUserCountExpandableGroupBox, 0, 6);
            this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
            this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
            this.tableLayoutPanel1.RowCount = 8;
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel1.Size = new System.Drawing.Size(955, 798);
            this.tableLayoutPanel1.TabIndex = 1;
            // 
            // usageByFunctionExpandableGroupBox
            // 
            this.usageByFunctionExpandableGroupBox.Controls.Add(this.ultraExpandableGroupBoxPanel8);
            this.usageByFunctionExpandableGroupBox.Dock = System.Windows.Forms.DockStyle.Top;
            this.usageByFunctionExpandableGroupBox.ExpandedSize = new System.Drawing.Size(949, 108);
            this.usageByFunctionExpandableGroupBox.Location = new System.Drawing.Point(3, 459);
            this.usageByFunctionExpandableGroupBox.Name = "usageByFunctionExpandableGroupBox";
            this.usageByFunctionExpandableGroupBox.Size = new System.Drawing.Size(949, 108);
            this.usageByFunctionExpandableGroupBox.TabIndex = 5;
            this.usageByFunctionExpandableGroupBox.Text = "Usage by function";
            // 
            // ultraExpandableGroupBoxPanel8
            // 
            this.ultraExpandableGroupBoxPanel8.AutoSize = true;
            this.ultraExpandableGroupBoxPanel8.Controls.Add(this.TextBoxFunctionId);
            this.ultraExpandableGroupBoxPanel8.Controls.Add(this.ButtonSearchForFunction);
            this.ultraExpandableGroupBoxPanel8.Controls.Add(this.ButtonClearForFunction);
            this.ultraExpandableGroupBoxPanel8.Controls.Add(this.ultraLabel19);
            this.ultraExpandableGroupBoxPanel8.Controls.Add(this.DateTimeEndDateForFunction);
            this.ultraExpandableGroupBoxPanel8.Controls.Add(this.ultraLabel20);
            this.ultraExpandableGroupBoxPanel8.Controls.Add(this.DateTimeStartDateForFunction);
            this.ultraExpandableGroupBoxPanel8.Controls.Add(this.ultraLabel21);
            this.ultraExpandableGroupBoxPanel8.Controls.Add(this.ultraChart6);
            this.ultraExpandableGroupBoxPanel8.Dock = System.Windows.Forms.DockStyle.Fill;
            this.ultraExpandableGroupBoxPanel8.Location = new System.Drawing.Point(3, 19);
            this.ultraExpandableGroupBoxPanel8.Name = "ultraExpandableGroupBoxPanel8";
            this.ultraExpandableGroupBoxPanel8.Size = new System.Drawing.Size(943, 86);
            this.ultraExpandableGroupBoxPanel8.TabIndex = 0;
            // 
            // TextBoxFunctionId
            // 
            this.TextBoxFunctionId.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.TextBoxFunctionId.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
            this.TextBoxFunctionId.Location = new System.Drawing.Point(674, 27);
            this.TextBoxFunctionId.Name = "TextBoxFunctionId";
            this.TextBoxFunctionId.Size = new System.Drawing.Size(163, 23);
            this.TextBoxFunctionId.TabIndex = 5;
            // 
            // ButtonSearchForFunction
            // 
            this.ButtonSearchForFunction.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.ButtonSearchForFunction.ButtonStyle = Infragistics.Win.UIElementButtonStyle.WindowsVistaButton;
            this.ButtonSearchForFunction.Location = new System.Drawing.Point(3, 56);
            this.ButtonSearchForFunction.Name = "ButtonSearchForFunction";
            this.ButtonSearchForFunction.Size = new System.Drawing.Size(87, 25);
            this.ButtonSearchForFunction.TabIndex = 6;
            this.ButtonSearchForFunction.Text = "&Search";
            this.ButtonSearchForFunction.Click += new System.EventHandler(this.ButtonSearchForFunction_Click);
            // 
            // ButtonClearForFunction
            // 
            this.ButtonClearForFunction.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.ButtonClearForFunction.ButtonStyle = Infragistics.Win.UIElementButtonStyle.WindowsVistaButton;
            this.ButtonClearForFunction.Location = new System.Drawing.Point(98, 56);
            this.ButtonClearForFunction.Name = "ButtonClearForFunction";
            this.ButtonClearForFunction.Size = new System.Drawing.Size(87, 25);
            this.ButtonClearForFunction.TabIndex = 7;
            this.ButtonClearForFunction.Text = "&Reset";
            this.ButtonClearForFunction.Click += new System.EventHandler(this.ButtonClearForFunction_Click);
            // 
            // ultraLabel19
            // 
            this.ultraLabel19.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            appearance124.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
            appearance124.TextHAlignAsString = "Right";
            this.ultraLabel19.Appearance = appearance124;
            this.ultraLabel19.Location = new System.Drawing.Point(539, 31);
            this.ultraLabel19.Name = "ultraLabel19";
            this.ultraLabel19.Size = new System.Drawing.Size(128, 25);
            this.ultraLabel19.TabIndex = 4;
            this.ultraLabel19.Text = "Function ID";
            // 
            // ultraLabel20
            // 
            this.ultraLabel20.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            appearance125.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
            appearance125.TextHAlignAsString = "Right";
            this.ultraLabel20.Appearance = appearance125;
            this.ultraLabel20.Location = new System.Drawing.Point(283, 31);
            this.ultraLabel20.Name = "ultraLabel20";
            this.ultraLabel20.Size = new System.Drawing.Size(87, 25);
            this.ultraLabel20.TabIndex = 2;
            this.ultraLabel20.Text = "* To date";
            // 
            // ultraLabel21
            // 
            this.ultraLabel21.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            appearance126.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
            appearance126.TextHAlignAsString = "Right";
            this.ultraLabel21.Appearance = appearance126;
            this.ultraLabel21.Location = new System.Drawing.Point(5, 31);
            this.ultraLabel21.Name = "ultraLabel21";
            this.ultraLabel21.Size = new System.Drawing.Size(87, 25);
            this.ultraLabel21.TabIndex = 0;
            this.ultraLabel21.Text = "* From date";
            // 
            //			'UltraChart' properties's serialization: Since 'ChartType' changes the way axes look,
            //			'ChartType' must be persisted ahead of any Axes change made in design time.
            //		
            this.ultraChart6.ChartType = Infragistics.UltraChart.Shared.Styles.ChartType.BarChart;
            // 
            // ultraChart6
            // 
            this.ultraChart6.Axis.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(248)))), ((int)(((byte)(220)))));
            paintElement1.ElementType = Infragistics.UltraChart.Shared.Styles.PaintElementType.None;
            paintElement1.Fill = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(248)))), ((int)(((byte)(220)))));
            this.ultraChart6.Axis.PE = paintElement1;
            this.ultraChart6.Axis.X.Extent = 20;
            this.ultraChart6.Axis.X.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart6.Axis.X.Labels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart6.Axis.X.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart6.Axis.X.Labels.ItemFormatString = "<DATA_VALUE:00>";
            this.ultraChart6.Axis.X.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart6.Axis.X.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart6.Axis.X.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart6.Axis.X.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart6.Axis.X.Labels.SeriesLabels.FormatString = "";
            this.ultraChart6.Axis.X.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart6.Axis.X.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart6.Axis.X.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart6.Axis.X.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart6.Axis.X.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart6.Axis.X.LineThickness = 1;
            this.ultraChart6.Axis.X.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart6.Axis.X.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart6.Axis.X.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart6.Axis.X.MajorGridLines.Visible = true;
            this.ultraChart6.Axis.X.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart6.Axis.X.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart6.Axis.X.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart6.Axis.X.MinorGridLines.Visible = false;
            this.ultraChart6.Axis.X.TickmarkInterval = 50;
            this.ultraChart6.Axis.X.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart6.Axis.X.Visible = true;
            this.ultraChart6.Axis.X2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart6.Axis.X2.Labels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart6.Axis.X2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart6.Axis.X2.Labels.ItemFormatString = "<DATA_VALUE:00>";
            this.ultraChart6.Axis.X2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart6.Axis.X2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart6.Axis.X2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart6.Axis.X2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart6.Axis.X2.Labels.SeriesLabels.FormatString = "";
            this.ultraChart6.Axis.X2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart6.Axis.X2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart6.Axis.X2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart6.Axis.X2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart6.Axis.X2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart6.Axis.X2.Labels.Visible = false;
            this.ultraChart6.Axis.X2.LineThickness = 1;
            this.ultraChart6.Axis.X2.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart6.Axis.X2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart6.Axis.X2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart6.Axis.X2.MajorGridLines.Visible = true;
            this.ultraChart6.Axis.X2.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart6.Axis.X2.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart6.Axis.X2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart6.Axis.X2.MinorGridLines.Visible = false;
            this.ultraChart6.Axis.X2.TickmarkInterval = 50;
            this.ultraChart6.Axis.X2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart6.Axis.X2.Visible = false;
            this.ultraChart6.Axis.Y.Extent = 280;
            this.ultraChart6.Axis.Y.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart6.Axis.Y.Labels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart6.Axis.Y.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart6.Axis.Y.Labels.ItemFormatString = "<ITEM_LABEL>";
            this.ultraChart6.Axis.Y.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart6.Axis.Y.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart6.Axis.Y.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart6.Axis.Y.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart6.Axis.Y.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart6.Axis.Y.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart6.Axis.Y.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart6.Axis.Y.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart6.Axis.Y.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart6.Axis.Y.LineThickness = 1;
            this.ultraChart6.Axis.Y.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart6.Axis.Y.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart6.Axis.Y.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart6.Axis.Y.MajorGridLines.Visible = true;
            this.ultraChart6.Axis.Y.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart6.Axis.Y.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart6.Axis.Y.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart6.Axis.Y.MinorGridLines.Visible = false;
            this.ultraChart6.Axis.Y.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart6.Axis.Y.Visible = true;
            this.ultraChart6.Axis.Y2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart6.Axis.Y2.Labels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart6.Axis.Y2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart6.Axis.Y2.Labels.ItemFormatString = "<ITEM_LABEL>";
            this.ultraChart6.Axis.Y2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart6.Axis.Y2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart6.Axis.Y2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart6.Axis.Y2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart6.Axis.Y2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart6.Axis.Y2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart6.Axis.Y2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart6.Axis.Y2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart6.Axis.Y2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart6.Axis.Y2.Labels.Visible = false;
            this.ultraChart6.Axis.Y2.LineThickness = 1;
            this.ultraChart6.Axis.Y2.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart6.Axis.Y2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart6.Axis.Y2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart6.Axis.Y2.MajorGridLines.Visible = true;
            this.ultraChart6.Axis.Y2.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart6.Axis.Y2.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart6.Axis.Y2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart6.Axis.Y2.MinorGridLines.Visible = false;
            this.ultraChart6.Axis.Y2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart6.Axis.Y2.Visible = false;
            this.ultraChart6.Axis.Z.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart6.Axis.Z.Labels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart6.Axis.Z.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart6.Axis.Z.Labels.ItemFormatString = "";
            this.ultraChart6.Axis.Z.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart6.Axis.Z.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart6.Axis.Z.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart6.Axis.Z.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart6.Axis.Z.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart6.Axis.Z.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart6.Axis.Z.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart6.Axis.Z.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart6.Axis.Z.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart6.Axis.Z.Labels.Visible = false;
            this.ultraChart6.Axis.Z.LineThickness = 1;
            this.ultraChart6.Axis.Z.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart6.Axis.Z.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart6.Axis.Z.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart6.Axis.Z.MajorGridLines.Visible = true;
            this.ultraChart6.Axis.Z.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart6.Axis.Z.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart6.Axis.Z.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart6.Axis.Z.MinorGridLines.Visible = false;
            this.ultraChart6.Axis.Z.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart6.Axis.Z.Visible = false;
            this.ultraChart6.Axis.Z2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart6.Axis.Z2.Labels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart6.Axis.Z2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart6.Axis.Z2.Labels.ItemFormatString = "";
            this.ultraChart6.Axis.Z2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart6.Axis.Z2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart6.Axis.Z2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart6.Axis.Z2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart6.Axis.Z2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart6.Axis.Z2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart6.Axis.Z2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart6.Axis.Z2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart6.Axis.Z2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart6.Axis.Z2.Labels.Visible = false;
            this.ultraChart6.Axis.Z2.LineThickness = 1;
            this.ultraChart6.Axis.Z2.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart6.Axis.Z2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart6.Axis.Z2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart6.Axis.Z2.MajorGridLines.Visible = true;
            this.ultraChart6.Axis.Z2.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart6.Axis.Z2.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart6.Axis.Z2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart6.Axis.Z2.MinorGridLines.Visible = false;
            this.ultraChart6.Axis.Z2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart6.Axis.Z2.Visible = false;
            this.ultraChart6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            chartTextAppearance1.ChartTextFont = new System.Drawing.Font("Arial", 7F);
            chartTextAppearance1.Column = -2;
            chartTextAppearance1.ItemFormatString = "<DATA_VALUE:00>";
            chartTextAppearance1.Row = -2;
            chartTextAppearance1.Visible = true;
            barChartAppearance1.ChartText.Add(chartTextAppearance1);
            this.ultraChart6.BarChart = barChartAppearance1;
            this.ultraChart6.ColorModel.AlphaLevel = ((byte)(150));
            this.ultraChart6.ColorModel.ColorBegin = System.Drawing.Color.Pink;
            this.ultraChart6.ColorModel.ColorEnd = System.Drawing.Color.DarkRed;
            this.ultraChart6.ColorModel.ModelStyle = Infragistics.UltraChart.Shared.Styles.ColorModels.CustomLinear;
            this.ultraChart6.Data.ZeroAligned = true;
            this.ultraChart6.Effects.Effects.Add(gradientEffect1);
            this.ultraChart6.Location = new System.Drawing.Point(4, 3);
            this.ultraChart6.Name = "ultraChart6";
            this.ultraChart6.Size = new System.Drawing.Size(833, 216);
            this.ultraChart6.TabIndex = 25;
            this.ultraChart6.Tooltips.Display = Infragistics.UltraChart.Shared.Styles.TooltipDisplay.Never;
            this.ultraChart6.Tooltips.HighlightFillColor = System.Drawing.Color.DimGray;
            this.ultraChart6.Tooltips.HighlightOutlineColor = System.Drawing.Color.DarkGray;
            // 
            // usageByModuleExpandableGroupBox
            // 
            this.usageByModuleExpandableGroupBox.Controls.Add(this.ultraExpandableGroupBoxPanel6);
            this.usageByModuleExpandableGroupBox.Dock = System.Windows.Forms.DockStyle.Top;
            this.usageByModuleExpandableGroupBox.ExpandedSize = new System.Drawing.Size(949, 108);
            this.usageByModuleExpandableGroupBox.Location = new System.Drawing.Point(3, 345);
            this.usageByModuleExpandableGroupBox.Name = "usageByModuleExpandableGroupBox";
            this.usageByModuleExpandableGroupBox.Size = new System.Drawing.Size(949, 108);
            this.usageByModuleExpandableGroupBox.TabIndex = 4;
            this.usageByModuleExpandableGroupBox.Text = "Usage by module";
            // 
            // ultraExpandableGroupBoxPanel6
            // 
            this.ultraExpandableGroupBoxPanel6.AutoSize = true;
            this.ultraExpandableGroupBoxPanel6.Controls.Add(this.TextBoxModuleId);
            this.ultraExpandableGroupBoxPanel6.Controls.Add(this.ButtonSearchForModule);
            this.ultraExpandableGroupBoxPanel6.Controls.Add(this.ButtonClearForModule);
            this.ultraExpandableGroupBoxPanel6.Controls.Add(this.ultraLabel16);
            this.ultraExpandableGroupBoxPanel6.Controls.Add(this.DateTimeEndDateForModule);
            this.ultraExpandableGroupBoxPanel6.Controls.Add(this.ultraLabel17);
            this.ultraExpandableGroupBoxPanel6.Controls.Add(this.DateTimeStartDateForModule);
            this.ultraExpandableGroupBoxPanel6.Controls.Add(this.ultraLabel18);
            this.ultraExpandableGroupBoxPanel6.Controls.Add(this.ultraChart5);
            this.ultraExpandableGroupBoxPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
            this.ultraExpandableGroupBoxPanel6.Location = new System.Drawing.Point(3, 19);
            this.ultraExpandableGroupBoxPanel6.Name = "ultraExpandableGroupBoxPanel6";
            this.ultraExpandableGroupBoxPanel6.Size = new System.Drawing.Size(943, 86);
            this.ultraExpandableGroupBoxPanel6.TabIndex = 0;
            // 
            // TextBoxModuleId
            // 
            this.TextBoxModuleId.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.TextBoxModuleId.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
            this.TextBoxModuleId.Location = new System.Drawing.Point(674, 27);
            this.TextBoxModuleId.Name = "TextBoxModuleId";
            this.TextBoxModuleId.Size = new System.Drawing.Size(163, 23);
            this.TextBoxModuleId.TabIndex = 5;
            // 
            // ButtonSearchForModule
            // 
            this.ButtonSearchForModule.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.ButtonSearchForModule.ButtonStyle = Infragistics.Win.UIElementButtonStyle.WindowsVistaButton;
            this.ButtonSearchForModule.Location = new System.Drawing.Point(3, 56);
            this.ButtonSearchForModule.Name = "ButtonSearchForModule";
            this.ButtonSearchForModule.Size = new System.Drawing.Size(87, 25);
            this.ButtonSearchForModule.TabIndex = 6;
            this.ButtonSearchForModule.Text = "&Search";
            this.ButtonSearchForModule.Click += new System.EventHandler(this.ButtonSearchForModule_Click);
            // 
            // ButtonClearForModule
            // 
            this.ButtonClearForModule.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.ButtonClearForModule.ButtonStyle = Infragistics.Win.UIElementButtonStyle.WindowsVistaButton;
            this.ButtonClearForModule.Location = new System.Drawing.Point(98, 56);
            this.ButtonClearForModule.Name = "ButtonClearForModule";
            this.ButtonClearForModule.Size = new System.Drawing.Size(87, 25);
            this.ButtonClearForModule.TabIndex = 7;
            this.ButtonClearForModule.Text = "&Reset";
            this.ButtonClearForModule.Click += new System.EventHandler(this.ButtonClearForModule_Click);
            // 
            // ultraLabel16
            // 
            this.ultraLabel16.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            appearance109.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
            appearance109.TextHAlignAsString = "Right";
            this.ultraLabel16.Appearance = appearance109;
            this.ultraLabel16.Location = new System.Drawing.Point(539, 31);
            this.ultraLabel16.Name = "ultraLabel16";
            this.ultraLabel16.Size = new System.Drawing.Size(128, 25);
            this.ultraLabel16.TabIndex = 4;
            this.ultraLabel16.Text = "Module ID";
            // 
            // ultraLabel17
            // 
            this.ultraLabel17.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            appearance122.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
            appearance122.TextHAlignAsString = "Right";
            this.ultraLabel17.Appearance = appearance122;
            this.ultraLabel17.Location = new System.Drawing.Point(283, 31);
            this.ultraLabel17.Name = "ultraLabel17";
            this.ultraLabel17.Size = new System.Drawing.Size(87, 25);
            this.ultraLabel17.TabIndex = 2;
            this.ultraLabel17.Text = "* To date";
            // 
            // ultraLabel18
            // 
            this.ultraLabel18.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            appearance123.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
            appearance123.TextHAlignAsString = "Right";
            this.ultraLabel18.Appearance = appearance123;
            this.ultraLabel18.Location = new System.Drawing.Point(5, 31);
            this.ultraLabel18.Name = "ultraLabel18";
            this.ultraLabel18.Size = new System.Drawing.Size(87, 25);
            this.ultraLabel18.TabIndex = 0;
            this.ultraLabel18.Text = "* From date";
            // 
            //			'UltraChart' properties's serialization: Since 'ChartType' changes the way axes look,
            //			'ChartType' must be persisted ahead of any Axes change made in design time.
            //		
            this.ultraChart5.ChartType = Infragistics.UltraChart.Shared.Styles.ChartType.BarChart;
            // 
            // ultraChart5
            // 
            this.ultraChart5.Axis.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(248)))), ((int)(((byte)(220)))));
            paintElement2.ElementType = Infragistics.UltraChart.Shared.Styles.PaintElementType.None;
            paintElement2.Fill = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(248)))), ((int)(((byte)(220)))));
            this.ultraChart5.Axis.PE = paintElement2;
            this.ultraChart5.Axis.X.Extent = 20;
            this.ultraChart5.Axis.X.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart5.Axis.X.Labels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart5.Axis.X.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart5.Axis.X.Labels.ItemFormatString = "<DATA_VALUE:00>";
            this.ultraChart5.Axis.X.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart5.Axis.X.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart5.Axis.X.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart5.Axis.X.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart5.Axis.X.Labels.SeriesLabels.FormatString = "";
            this.ultraChart5.Axis.X.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart5.Axis.X.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart5.Axis.X.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart5.Axis.X.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart5.Axis.X.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart5.Axis.X.LineThickness = 1;
            this.ultraChart5.Axis.X.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart5.Axis.X.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart5.Axis.X.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart5.Axis.X.MajorGridLines.Visible = true;
            this.ultraChart5.Axis.X.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart5.Axis.X.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart5.Axis.X.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart5.Axis.X.MinorGridLines.Visible = false;
            this.ultraChart5.Axis.X.TickmarkInterval = 20;
            this.ultraChart5.Axis.X.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart5.Axis.X.Visible = true;
            this.ultraChart5.Axis.X2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart5.Axis.X2.Labels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart5.Axis.X2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart5.Axis.X2.Labels.ItemFormatString = "<DATA_VALUE:00>";
            this.ultraChart5.Axis.X2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart5.Axis.X2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart5.Axis.X2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart5.Axis.X2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart5.Axis.X2.Labels.SeriesLabels.FormatString = "";
            this.ultraChart5.Axis.X2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart5.Axis.X2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart5.Axis.X2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart5.Axis.X2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart5.Axis.X2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart5.Axis.X2.Labels.Visible = false;
            this.ultraChart5.Axis.X2.LineThickness = 1;
            this.ultraChart5.Axis.X2.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart5.Axis.X2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart5.Axis.X2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart5.Axis.X2.MajorGridLines.Visible = true;
            this.ultraChart5.Axis.X2.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart5.Axis.X2.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart5.Axis.X2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart5.Axis.X2.MinorGridLines.Visible = false;
            this.ultraChart5.Axis.X2.TickmarkInterval = 20;
            this.ultraChart5.Axis.X2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart5.Axis.X2.Visible = false;
            this.ultraChart5.Axis.Y.Extent = 150;
            this.ultraChart5.Axis.Y.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart5.Axis.Y.Labels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart5.Axis.Y.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart5.Axis.Y.Labels.ItemFormatString = "<ITEM_LABEL>";
            this.ultraChart5.Axis.Y.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart5.Axis.Y.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart5.Axis.Y.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart5.Axis.Y.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart5.Axis.Y.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart5.Axis.Y.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart5.Axis.Y.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart5.Axis.Y.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart5.Axis.Y.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart5.Axis.Y.LineThickness = 1;
            this.ultraChart5.Axis.Y.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart5.Axis.Y.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart5.Axis.Y.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart5.Axis.Y.MajorGridLines.Visible = true;
            this.ultraChart5.Axis.Y.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart5.Axis.Y.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart5.Axis.Y.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart5.Axis.Y.MinorGridLines.Visible = false;
            this.ultraChart5.Axis.Y.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart5.Axis.Y.Visible = true;
            this.ultraChart5.Axis.Y2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart5.Axis.Y2.Labels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart5.Axis.Y2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart5.Axis.Y2.Labels.ItemFormatString = "<ITEM_LABEL>";
            this.ultraChart5.Axis.Y2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart5.Axis.Y2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart5.Axis.Y2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart5.Axis.Y2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart5.Axis.Y2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart5.Axis.Y2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart5.Axis.Y2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart5.Axis.Y2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart5.Axis.Y2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart5.Axis.Y2.Labels.Visible = false;
            this.ultraChart5.Axis.Y2.LineThickness = 1;
            this.ultraChart5.Axis.Y2.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart5.Axis.Y2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart5.Axis.Y2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart5.Axis.Y2.MajorGridLines.Visible = true;
            this.ultraChart5.Axis.Y2.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart5.Axis.Y2.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart5.Axis.Y2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart5.Axis.Y2.MinorGridLines.Visible = false;
            this.ultraChart5.Axis.Y2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart5.Axis.Y2.Visible = false;
            this.ultraChart5.Axis.Z.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart5.Axis.Z.Labels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart5.Axis.Z.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart5.Axis.Z.Labels.ItemFormatString = "";
            this.ultraChart5.Axis.Z.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart5.Axis.Z.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart5.Axis.Z.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart5.Axis.Z.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart5.Axis.Z.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart5.Axis.Z.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart5.Axis.Z.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart5.Axis.Z.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart5.Axis.Z.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart5.Axis.Z.Labels.Visible = false;
            this.ultraChart5.Axis.Z.LineThickness = 1;
            this.ultraChart5.Axis.Z.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart5.Axis.Z.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart5.Axis.Z.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart5.Axis.Z.MajorGridLines.Visible = true;
            this.ultraChart5.Axis.Z.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart5.Axis.Z.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart5.Axis.Z.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart5.Axis.Z.MinorGridLines.Visible = false;
            this.ultraChart5.Axis.Z.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart5.Axis.Z.Visible = false;
            this.ultraChart5.Axis.Z2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart5.Axis.Z2.Labels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart5.Axis.Z2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart5.Axis.Z2.Labels.ItemFormatString = "";
            this.ultraChart5.Axis.Z2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart5.Axis.Z2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart5.Axis.Z2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart5.Axis.Z2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart5.Axis.Z2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart5.Axis.Z2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart5.Axis.Z2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart5.Axis.Z2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart5.Axis.Z2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart5.Axis.Z2.Labels.Visible = false;
            this.ultraChart5.Axis.Z2.LineThickness = 1;
            this.ultraChart5.Axis.Z2.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart5.Axis.Z2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart5.Axis.Z2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart5.Axis.Z2.MajorGridLines.Visible = true;
            this.ultraChart5.Axis.Z2.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart5.Axis.Z2.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart5.Axis.Z2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart5.Axis.Z2.MinorGridLines.Visible = false;
            this.ultraChart5.Axis.Z2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart5.Axis.Z2.Visible = false;
            this.ultraChart5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            chartTextAppearance2.ChartTextFont = new System.Drawing.Font("Arial", 7F);
            chartTextAppearance2.Column = -2;
            chartTextAppearance2.ItemFormatString = "<DATA_VALUE:00>";
            chartTextAppearance2.Row = -2;
            chartTextAppearance2.Visible = true;
            barChartAppearance2.ChartText.Add(chartTextAppearance2);
            this.ultraChart5.BarChart = barChartAppearance2;
            this.ultraChart5.ColorModel.AlphaLevel = ((byte)(150));
            this.ultraChart5.ColorModel.ColorBegin = System.Drawing.Color.Pink;
            this.ultraChart5.ColorModel.ColorEnd = System.Drawing.Color.DarkRed;
            this.ultraChart5.ColorModel.ModelStyle = Infragistics.UltraChart.Shared.Styles.ColorModels.CustomLinear;
            this.ultraChart5.Data.ZeroAligned = true;
            this.ultraChart5.Effects.Effects.Add(gradientEffect2);
            this.ultraChart5.Location = new System.Drawing.Point(4, 3);
            this.ultraChart5.Name = "ultraChart5";
            this.ultraChart5.Size = new System.Drawing.Size(833, 216);
            this.ultraChart5.TabIndex = 23;
            this.ultraChart5.Tooltips.Display = Infragistics.UltraChart.Shared.Styles.TooltipDisplay.Never;
            this.ultraChart5.Tooltips.HighlightFillColor = System.Drawing.Color.DimGray;
            this.ultraChart5.Tooltips.HighlightOutlineColor = System.Drawing.Color.DarkGray;
            // 
            // usageByUserCountPerModuleExpandableGroupBox
            // 
            this.usageByUserCountPerModuleExpandableGroupBox.Controls.Add(this.ultraExpandableGroupBoxPanel4);
            this.usageByUserCountPerModuleExpandableGroupBox.Dock = System.Windows.Forms.DockStyle.Top;
            this.usageByUserCountPerModuleExpandableGroupBox.ExpandedSize = new System.Drawing.Size(949, 108);
            this.usageByUserCountPerModuleExpandableGroupBox.Location = new System.Drawing.Point(3, 687);
            this.usageByUserCountPerModuleExpandableGroupBox.Name = "usageByUserCountPerModuleExpandableGroupBox";
            this.usageByUserCountPerModuleExpandableGroupBox.Size = new System.Drawing.Size(949, 108);
            this.usageByUserCountPerModuleExpandableGroupBox.TabIndex = 7;
            this.usageByUserCountPerModuleExpandableGroupBox.Text = "Count of users per module";
            // 
            // ultraExpandableGroupBoxPanel4
            // 
            this.ultraExpandableGroupBoxPanel4.AutoSize = true;
            this.ultraExpandableGroupBoxPanel4.Controls.Add(this.TextBoxModuleIdForCount);
            this.ultraExpandableGroupBoxPanel4.Controls.Add(this.ultraLabel26);
            this.ultraExpandableGroupBoxPanel4.Controls.Add(this.ButtonSearchForCountPerModule);
            this.ultraExpandableGroupBoxPanel4.Controls.Add(this.ButtonClearForCountPerModule);
            this.ultraExpandableGroupBoxPanel4.Controls.Add(this.DateTimeEndDateForCountPerModule);
            this.ultraExpandableGroupBoxPanel4.Controls.Add(this.ultraLabel22);
            this.ultraExpandableGroupBoxPanel4.Controls.Add(this.DateTimeStartDateForCountPerModule);
            this.ultraExpandableGroupBoxPanel4.Controls.Add(this.ultraLabel25);
            this.ultraExpandableGroupBoxPanel4.Controls.Add(this.ultraChart8);
            this.ultraExpandableGroupBoxPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.ultraExpandableGroupBoxPanel4.Location = new System.Drawing.Point(3, 19);
            this.ultraExpandableGroupBoxPanel4.Name = "ultraExpandableGroupBoxPanel4";
            this.ultraExpandableGroupBoxPanel4.Size = new System.Drawing.Size(943, 86);
            this.ultraExpandableGroupBoxPanel4.TabIndex = 0;
            // 
            // TextBoxModuleIdForCount
            // 
            this.TextBoxModuleIdForCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.TextBoxModuleIdForCount.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
            this.TextBoxModuleIdForCount.Location = new System.Drawing.Point(674, 27);
            this.TextBoxModuleIdForCount.Name = "TextBoxModuleIdForCount";
            this.TextBoxModuleIdForCount.Size = new System.Drawing.Size(163, 23);
            this.TextBoxModuleIdForCount.TabIndex = 5;
            // 
            // ultraLabel26
            // 
            this.ultraLabel26.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            appearance121.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
            appearance121.TextHAlignAsString = "Right";
            this.ultraLabel26.Appearance = appearance121;
            this.ultraLabel26.Location = new System.Drawing.Point(539, 31);
            this.ultraLabel26.Name = "ultraLabel26";
            this.ultraLabel26.Size = new System.Drawing.Size(128, 25);
            this.ultraLabel26.TabIndex = 4;
            this.ultraLabel26.Text = "Module ID";
            // 
            // ButtonSearchForCountPerModule
            // 
            this.ButtonSearchForCountPerModule.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.ButtonSearchForCountPerModule.ButtonStyle = Infragistics.Win.UIElementButtonStyle.WindowsVistaButton;
            this.ButtonSearchForCountPerModule.Location = new System.Drawing.Point(3, 56);
            this.ButtonSearchForCountPerModule.Name = "ButtonSearchForCountPerModule";
            this.ButtonSearchForCountPerModule.Size = new System.Drawing.Size(87, 25);
            this.ButtonSearchForCountPerModule.TabIndex = 6;
            this.ButtonSearchForCountPerModule.Text = "&Search";
            this.ButtonSearchForCountPerModule.Click += new System.EventHandler(this.ButtonSearchForCountPerModule_Click);
            // 
            // ButtonClearForCountPerModule
            // 
            this.ButtonClearForCountPerModule.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.ButtonClearForCountPerModule.ButtonStyle = Infragistics.Win.UIElementButtonStyle.WindowsVistaButton;
            this.ButtonClearForCountPerModule.Location = new System.Drawing.Point(98, 56);
            this.ButtonClearForCountPerModule.Name = "ButtonClearForCountPerModule";
            this.ButtonClearForCountPerModule.Size = new System.Drawing.Size(87, 25);
            this.ButtonClearForCountPerModule.TabIndex = 7;
            this.ButtonClearForCountPerModule.Text = "&Reset";
            this.ButtonClearForCountPerModule.Click += new System.EventHandler(this.ButtonClearForCountPerModule_Click);
            // 
            // ultraLabel22
            // 
            this.ultraLabel22.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            appearance129.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
            appearance129.TextHAlignAsString = "Right";
            this.ultraLabel22.Appearance = appearance129;
            this.ultraLabel22.Location = new System.Drawing.Point(283, 31);
            this.ultraLabel22.Name = "ultraLabel22";
            this.ultraLabel22.Size = new System.Drawing.Size(87, 25);
            this.ultraLabel22.TabIndex = 2;
            this.ultraLabel22.Text = "* To date";
            // 
            // ultraLabel25
            // 
            this.ultraLabel25.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            appearance131.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
            appearance131.TextHAlignAsString = "Right";
            this.ultraLabel25.Appearance = appearance131;
            this.ultraLabel25.Location = new System.Drawing.Point(5, 31);
            this.ultraLabel25.Name = "ultraLabel25";
            this.ultraLabel25.Size = new System.Drawing.Size(87, 25);
            this.ultraLabel25.TabIndex = 0;
            this.ultraLabel25.Text = "* From date";
            // 
            //			'UltraChart' properties's serialization: Since 'ChartType' changes the way axes look,
            //			'ChartType' must be persisted ahead of any Axes change made in design time.
            //		
            this.ultraChart8.ChartType = Infragistics.UltraChart.Shared.Styles.ChartType.BarChart;
            // 
            // ultraChart8
            // 
            this.ultraChart8.Axis.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(248)))), ((int)(((byte)(220)))));
            paintElement3.ElementType = Infragistics.UltraChart.Shared.Styles.PaintElementType.None;
            paintElement3.Fill = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(248)))), ((int)(((byte)(220)))));
            this.ultraChart8.Axis.PE = paintElement3;
            this.ultraChart8.Axis.X.Extent = 20;
            this.ultraChart8.Axis.X.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart8.Axis.X.Labels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart8.Axis.X.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart8.Axis.X.Labels.ItemFormatString = "<DATA_VALUE:00>";
            this.ultraChart8.Axis.X.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart8.Axis.X.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart8.Axis.X.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart8.Axis.X.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart8.Axis.X.Labels.SeriesLabels.FormatString = "";
            this.ultraChart8.Axis.X.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart8.Axis.X.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart8.Axis.X.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart8.Axis.X.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart8.Axis.X.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart8.Axis.X.LineThickness = 1;
            this.ultraChart8.Axis.X.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart8.Axis.X.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart8.Axis.X.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart8.Axis.X.MajorGridLines.Visible = true;
            this.ultraChart8.Axis.X.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart8.Axis.X.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart8.Axis.X.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart8.Axis.X.MinorGridLines.Visible = true;
            this.ultraChart8.Axis.X.TickmarkInterval = 40;
            this.ultraChart8.Axis.X.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart8.Axis.X.Visible = true;
            this.ultraChart8.Axis.X2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart8.Axis.X2.Labels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart8.Axis.X2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart8.Axis.X2.Labels.ItemFormatString = "<DATA_VALUE:00>";
            this.ultraChart8.Axis.X2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart8.Axis.X2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart8.Axis.X2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart8.Axis.X2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart8.Axis.X2.Labels.SeriesLabels.FormatString = "";
            this.ultraChart8.Axis.X2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart8.Axis.X2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart8.Axis.X2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart8.Axis.X2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart8.Axis.X2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart8.Axis.X2.Labels.Visible = false;
            this.ultraChart8.Axis.X2.LineThickness = 1;
            this.ultraChart8.Axis.X2.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart8.Axis.X2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart8.Axis.X2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart8.Axis.X2.MajorGridLines.Visible = true;
            this.ultraChart8.Axis.X2.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart8.Axis.X2.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart8.Axis.X2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart8.Axis.X2.MinorGridLines.Visible = false;
            this.ultraChart8.Axis.X2.TickmarkInterval = 40;
            this.ultraChart8.Axis.X2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart8.Axis.X2.Visible = false;
            this.ultraChart8.Axis.Y.Extent = 249;
            this.ultraChart8.Axis.Y.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart8.Axis.Y.Labels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart8.Axis.Y.Labels.HorizontalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart8.Axis.Y.Labels.ItemFormatString = "<ITEM_LABEL>";
            this.ultraChart8.Axis.Y.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart8.Axis.Y.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart8.Axis.Y.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart8.Axis.Y.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart8.Axis.Y.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart8.Axis.Y.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart8.Axis.Y.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart8.Axis.Y.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart8.Axis.Y.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart8.Axis.Y.LineThickness = 1;
            this.ultraChart8.Axis.Y.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart8.Axis.Y.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart8.Axis.Y.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart8.Axis.Y.MajorGridLines.Visible = true;
            this.ultraChart8.Axis.Y.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart8.Axis.Y.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart8.Axis.Y.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart8.Axis.Y.MinorGridLines.Visible = true;
            this.ultraChart8.Axis.Y.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart8.Axis.Y.Visible = true;
            this.ultraChart8.Axis.Y2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart8.Axis.Y2.Labels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart8.Axis.Y2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart8.Axis.Y2.Labels.ItemFormatString = "<ITEM_LABEL>";
            this.ultraChart8.Axis.Y2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart8.Axis.Y2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart8.Axis.Y2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart8.Axis.Y2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart8.Axis.Y2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart8.Axis.Y2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart8.Axis.Y2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart8.Axis.Y2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart8.Axis.Y2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart8.Axis.Y2.Labels.Visible = false;
            this.ultraChart8.Axis.Y2.LineThickness = 1;
            this.ultraChart8.Axis.Y2.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart8.Axis.Y2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart8.Axis.Y2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart8.Axis.Y2.MajorGridLines.Visible = true;
            this.ultraChart8.Axis.Y2.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart8.Axis.Y2.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart8.Axis.Y2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart8.Axis.Y2.MinorGridLines.Visible = false;
            this.ultraChart8.Axis.Y2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart8.Axis.Y2.Visible = false;
            this.ultraChart8.Axis.Z.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart8.Axis.Z.Labels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart8.Axis.Z.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart8.Axis.Z.Labels.ItemFormatString = "";
            this.ultraChart8.Axis.Z.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart8.Axis.Z.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart8.Axis.Z.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart8.Axis.Z.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart8.Axis.Z.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart8.Axis.Z.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart8.Axis.Z.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart8.Axis.Z.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart8.Axis.Z.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart8.Axis.Z.Labels.Visible = false;
            this.ultraChart8.Axis.Z.LineThickness = 1;
            this.ultraChart8.Axis.Z.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart8.Axis.Z.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart8.Axis.Z.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart8.Axis.Z.MajorGridLines.Visible = true;
            this.ultraChart8.Axis.Z.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart8.Axis.Z.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart8.Axis.Z.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart8.Axis.Z.MinorGridLines.Visible = false;
            this.ultraChart8.Axis.Z.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart8.Axis.Z.Visible = false;
            this.ultraChart8.Axis.Z2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart8.Axis.Z2.Labels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart8.Axis.Z2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart8.Axis.Z2.Labels.ItemFormatString = "";
            this.ultraChart8.Axis.Z2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart8.Axis.Z2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart8.Axis.Z2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart8.Axis.Z2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart8.Axis.Z2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart8.Axis.Z2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart8.Axis.Z2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart8.Axis.Z2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart8.Axis.Z2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart8.Axis.Z2.Labels.Visible = false;
            this.ultraChart8.Axis.Z2.LineThickness = 1;
            this.ultraChart8.Axis.Z2.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart8.Axis.Z2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart8.Axis.Z2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart8.Axis.Z2.MajorGridLines.Visible = true;
            this.ultraChart8.Axis.Z2.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart8.Axis.Z2.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart8.Axis.Z2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart8.Axis.Z2.MinorGridLines.Visible = false;
            this.ultraChart8.Axis.Z2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart8.Axis.Z2.Visible = false;
            this.ultraChart8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            chartTextAppearance3.ChartTextFont = new System.Drawing.Font("Arial", 7F);
            chartTextAppearance3.Column = -2;
            chartTextAppearance3.ItemFormatString = "<DATA_VALUE:00>";
            chartTextAppearance3.Row = -2;
            chartTextAppearance3.Visible = true;
            barChartAppearance3.ChartText.Add(chartTextAppearance3);
            this.ultraChart8.BarChart = barChartAppearance3;
            this.ultraChart8.ColorModel.AlphaLevel = ((byte)(150));
            this.ultraChart8.ColorModel.ColorBegin = System.Drawing.Color.Pink;
            this.ultraChart8.ColorModel.ColorEnd = System.Drawing.Color.DarkRed;
            this.ultraChart8.ColorModel.ModelStyle = Infragistics.UltraChart.Shared.Styles.ColorModels.CustomLinear;
            this.ultraChart8.Data.ZeroAligned = true;
            this.ultraChart8.Effects.Effects.Add(gradientEffect3);
            this.ultraChart8.Location = new System.Drawing.Point(5, 3);
            this.ultraChart8.Name = "ultraChart8";
            this.ultraChart8.Size = new System.Drawing.Size(833, 216);
            this.ultraChart8.TabIndex = 29;
            this.ultraChart8.Tooltips.Display = Infragistics.UltraChart.Shared.Styles.TooltipDisplay.Never;
            this.ultraChart8.Tooltips.HighlightFillColor = System.Drawing.Color.DimGray;
            this.ultraChart8.Tooltips.HighlightOutlineColor = System.Drawing.Color.DarkGray;
            // 
            // usageByUserExpandableGroupBox
            // 
            this.usageByUserExpandableGroupBox.Controls.Add(this.ultraExpandableGroupBoxPanel1);
            this.usageByUserExpandableGroupBox.Dock = System.Windows.Forms.DockStyle.Top;
            this.usageByUserExpandableGroupBox.ExpandedSize = new System.Drawing.Size(949, 108);
            this.usageByUserExpandableGroupBox.Location = new System.Drawing.Point(3, 3);
            this.usageByUserExpandableGroupBox.Name = "usageByUserExpandableGroupBox";
            this.usageByUserExpandableGroupBox.Size = new System.Drawing.Size(949, 108);
            this.usageByUserExpandableGroupBox.TabIndex = 0;
            this.usageByUserExpandableGroupBox.Text = "Usage by user";
            // 
            // ultraExpandableGroupBoxPanel1
            // 
            this.ultraExpandableGroupBoxPanel1.AutoSize = true;
            this.ultraExpandableGroupBoxPanel1.Controls.Add(this.DateTimeStartDateForUser);
            this.ultraExpandableGroupBoxPanel1.Controls.Add(this.TextBoxUserName);
            this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel1);
            this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel3);
            this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ButtonSearchForUser);
            this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ButtonClearForUser);
            this.ultraExpandableGroupBoxPanel1.Controls.Add(this.DateTimeEndDateForUser);
            this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel2);
            this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraChart1);
            this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(3, 19);
            this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
            this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(943, 86);
            this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
            // 
            // TextBoxUserName
            // 
            this.TextBoxUserName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.TextBoxUserName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
            this.TextBoxUserName.Location = new System.Drawing.Point(674, 27);
            this.TextBoxUserName.Name = "TextBoxUserName";
            this.TextBoxUserName.Size = new System.Drawing.Size(163, 23);
            this.TextBoxUserName.TabIndex = 5;
            // 
            // ultraLabel1
            // 
            this.ultraLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            appearance27.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
            appearance27.TextHAlignAsString = "Right";
            this.ultraLabel1.Appearance = appearance27;
            this.ultraLabel1.Location = new System.Drawing.Point(5, 31);
            this.ultraLabel1.Name = "ultraLabel1";
            this.ultraLabel1.Size = new System.Drawing.Size(87, 25);
            this.ultraLabel1.TabIndex = 0;
            this.ultraLabel1.Text = "* From date";
            // 
            // ultraLabel3
            // 
            this.ultraLabel3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            appearance25.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
            appearance25.TextHAlignAsString = "Right";
            this.ultraLabel3.Appearance = appearance25;
            this.ultraLabel3.Location = new System.Drawing.Point(539, 31);
            this.ultraLabel3.Name = "ultraLabel3";
            this.ultraLabel3.Size = new System.Drawing.Size(128, 25);
            this.ultraLabel3.TabIndex = 4;
            this.ultraLabel3.Text = "User ID";
            // 
            // ButtonSearchForUser
            // 
            this.ButtonSearchForUser.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.ButtonSearchForUser.ButtonStyle = Infragistics.Win.UIElementButtonStyle.WindowsVistaButton;
            this.ButtonSearchForUser.Location = new System.Drawing.Point(3, 56);
            this.ButtonSearchForUser.Name = "ButtonSearchForUser";
            this.ButtonSearchForUser.Size = new System.Drawing.Size(87, 25);
            this.ButtonSearchForUser.TabIndex = 6;
            this.ButtonSearchForUser.Text = "&Search";
            this.ButtonSearchForUser.Click += new System.EventHandler(this.ButtonSearchForUser_Click);
            // 
            // ButtonClearForUser
            // 
            this.ButtonClearForUser.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.ButtonClearForUser.ButtonStyle = Infragistics.Win.UIElementButtonStyle.WindowsVistaButton;
            this.ButtonClearForUser.Location = new System.Drawing.Point(98, 56);
            this.ButtonClearForUser.Name = "ButtonClearForUser";
            this.ButtonClearForUser.Size = new System.Drawing.Size(87, 25);
            this.ButtonClearForUser.TabIndex = 7;
            this.ButtonClearForUser.Text = "&Reset";
            this.ButtonClearForUser.Click += new System.EventHandler(this.ButtonClearForUser_Click);
            // 
            // ultraLabel2
            // 
            this.ultraLabel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            appearance26.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
            appearance26.TextHAlignAsString = "Right";
            this.ultraLabel2.Appearance = appearance26;
            this.ultraLabel2.Location = new System.Drawing.Point(283, 31);
            this.ultraLabel2.Name = "ultraLabel2";
            this.ultraLabel2.Size = new System.Drawing.Size(87, 25);
            this.ultraLabel2.TabIndex = 2;
            this.ultraLabel2.Text = "* To date";
            // 
            //			'UltraChart' properties's serialization: Since 'ChartType' changes the way axes look,
            //			'ChartType' must be persisted ahead of any Axes change made in design time.
            //		
            this.ultraChart1.ChartType = Infragistics.UltraChart.Shared.Styles.ChartType.BarChart;
            // 
            // ultraChart1
            // 
            this.ultraChart1.Axis.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(248)))), ((int)(((byte)(220)))));
            paintElement4.ElementType = Infragistics.UltraChart.Shared.Styles.PaintElementType.None;
            paintElement4.Fill = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(248)))), ((int)(((byte)(220)))));
            this.ultraChart1.Axis.PE = paintElement4;
            this.ultraChart1.Axis.X.Extent = 23;
            this.ultraChart1.Axis.X.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart1.Axis.X.Labels.ItemFormatString = "<DATA_VALUE:00>";
            this.ultraChart1.Axis.X.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.X.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart1.Axis.X.Labels.OrientationAngle = 60;
            this.ultraChart1.Axis.X.Labels.SeriesLabels.FormatString = "";
            this.ultraChart1.Axis.X.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart1.Axis.X.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.X.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart1.Axis.X.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.X.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.X.LineThickness = 1;
            this.ultraChart1.Axis.X.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart1.Axis.X.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart1.Axis.X.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart1.Axis.X.MajorGridLines.Visible = true;
            this.ultraChart1.Axis.X.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart1.Axis.X.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart1.Axis.X.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart1.Axis.X.MinorGridLines.Visible = true;
            this.ultraChart1.Axis.X.TickmarkInterval = 50;
            this.ultraChart1.Axis.X.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart1.Axis.X.Visible = true;
            this.ultraChart1.Axis.X2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart1.Axis.X2.Labels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart1.Axis.X2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart1.Axis.X2.Labels.ItemFormatString = "<DATA_VALUE:00>";
            this.ultraChart1.Axis.X2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.X2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart1.Axis.X2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart1.Axis.X2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart1.Axis.X2.Labels.SeriesLabels.FormatString = "";
            this.ultraChart1.Axis.X2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart1.Axis.X2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.X2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart1.Axis.X2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.X2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.X2.Labels.Visible = false;
            this.ultraChart1.Axis.X2.LineThickness = 1;
            this.ultraChart1.Axis.X2.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart1.Axis.X2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart1.Axis.X2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart1.Axis.X2.MajorGridLines.Visible = true;
            this.ultraChart1.Axis.X2.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart1.Axis.X2.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart1.Axis.X2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart1.Axis.X2.MinorGridLines.Visible = false;
            this.ultraChart1.Axis.X2.TickmarkInterval = 50;
            this.ultraChart1.Axis.X2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart1.Axis.X2.Visible = false;
            this.ultraChart1.Axis.Y.Extent = 150;
            this.ultraChart1.Axis.Y.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart1.Axis.Y.Labels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart1.Axis.Y.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart1.Axis.Y.Labels.ItemFormatString = "<ITEM_LABEL>";
            this.ultraChart1.Axis.Y.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.Y.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart1.Axis.Y.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart1.Axis.Y.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart1.Axis.Y.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.Y.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.Y.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart1.Axis.Y.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.Y.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.Y.LineThickness = 1;
            this.ultraChart1.Axis.Y.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart1.Axis.Y.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart1.Axis.Y.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart1.Axis.Y.MajorGridLines.Visible = true;
            this.ultraChart1.Axis.Y.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart1.Axis.Y.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart1.Axis.Y.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart1.Axis.Y.MinorGridLines.Visible = true;
            this.ultraChart1.Axis.Y.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart1.Axis.Y.Visible = true;
            this.ultraChart1.Axis.Y2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart1.Axis.Y2.Labels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart1.Axis.Y2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart1.Axis.Y2.Labels.ItemFormatString = "<ITEM_LABEL>";
            this.ultraChart1.Axis.Y2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.Y2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart1.Axis.Y2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart1.Axis.Y2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart1.Axis.Y2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.Y2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.Y2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart1.Axis.Y2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.Y2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.Y2.Labels.Visible = false;
            this.ultraChart1.Axis.Y2.LineThickness = 1;
            this.ultraChart1.Axis.Y2.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart1.Axis.Y2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart1.Axis.Y2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart1.Axis.Y2.MajorGridLines.Visible = true;
            this.ultraChart1.Axis.Y2.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart1.Axis.Y2.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart1.Axis.Y2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart1.Axis.Y2.MinorGridLines.Visible = false;
            this.ultraChart1.Axis.Y2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart1.Axis.Y2.Visible = false;
            this.ultraChart1.Axis.Z.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart1.Axis.Z.Labels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart1.Axis.Z.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart1.Axis.Z.Labels.ItemFormatString = "";
            this.ultraChart1.Axis.Z.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.Z.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart1.Axis.Z.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart1.Axis.Z.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart1.Axis.Z.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart1.Axis.Z.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.Z.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart1.Axis.Z.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.Z.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.Z.Labels.Visible = false;
            this.ultraChart1.Axis.Z.LineThickness = 1;
            this.ultraChart1.Axis.Z.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart1.Axis.Z.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart1.Axis.Z.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart1.Axis.Z.MajorGridLines.Visible = true;
            this.ultraChart1.Axis.Z.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart1.Axis.Z.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart1.Axis.Z.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart1.Axis.Z.MinorGridLines.Visible = false;
            this.ultraChart1.Axis.Z.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart1.Axis.Z.Visible = false;
            this.ultraChart1.Axis.Z2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart1.Axis.Z2.Labels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart1.Axis.Z2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart1.Axis.Z2.Labels.ItemFormatString = "";
            this.ultraChart1.Axis.Z2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.Z2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart1.Axis.Z2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart1.Axis.Z2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart1.Axis.Z2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart1.Axis.Z2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.Z2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart1.Axis.Z2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.Z2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart1.Axis.Z2.Labels.Visible = false;
            this.ultraChart1.Axis.Z2.LineThickness = 1;
            this.ultraChart1.Axis.Z2.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart1.Axis.Z2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart1.Axis.Z2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart1.Axis.Z2.MajorGridLines.Visible = true;
            this.ultraChart1.Axis.Z2.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart1.Axis.Z2.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart1.Axis.Z2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart1.Axis.Z2.MinorGridLines.Visible = false;
            this.ultraChart1.Axis.Z2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart1.Axis.Z2.Visible = false;
            this.ultraChart1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            chartTextAppearance4.ChartTextFont = new System.Drawing.Font("Arial", 7F);
            chartTextAppearance4.Column = -2;
            chartTextAppearance4.ItemFormatString = "<DATA_VALUE:00>";
            chartTextAppearance4.Row = -2;
            chartTextAppearance4.Visible = true;
            barChartAppearance4.ChartText.Add(chartTextAppearance4);
            this.ultraChart1.BarChart = barChartAppearance4;
            this.ultraChart1.ColorModel.AlphaLevel = ((byte)(150));
            this.ultraChart1.ColorModel.ColorBegin = System.Drawing.Color.Pink;
            this.ultraChart1.ColorModel.ColorEnd = System.Drawing.Color.DarkRed;
            this.ultraChart1.ColorModel.ModelStyle = Infragistics.UltraChart.Shared.Styles.ColorModels.CustomLinear;
            this.ultraChart1.Data.ZeroAligned = true;
            this.ultraChart1.Effects.Effects.Add(gradientEffect4);
            this.ultraChart1.Location = new System.Drawing.Point(3, 3);
            this.ultraChart1.Name = "ultraChart1";
            this.ultraChart1.Size = new System.Drawing.Size(937, 90);
            this.ultraChart1.TabIndex = 5;
            this.ultraChart1.Tooltips.Display = Infragistics.UltraChart.Shared.Styles.TooltipDisplay.Never;
            this.ultraChart1.Tooltips.HighlightFillColor = System.Drawing.Color.DimGray;
            this.ultraChart1.Tooltips.HighlightOutlineColor = System.Drawing.Color.DarkGray;
            // 
            // usageByOfficeExpandableGroupBox
            // 
            this.usageByOfficeExpandableGroupBox.Controls.Add(this.ultraExpandableGroupBoxPanel3);
            this.usageByOfficeExpandableGroupBox.Dock = System.Windows.Forms.DockStyle.Top;
            this.usageByOfficeExpandableGroupBox.ExpandedSize = new System.Drawing.Size(949, 108);
            this.usageByOfficeExpandableGroupBox.Location = new System.Drawing.Point(3, 231);
            this.usageByOfficeExpandableGroupBox.Name = "usageByOfficeExpandableGroupBox";
            this.usageByOfficeExpandableGroupBox.Size = new System.Drawing.Size(949, 108);
            this.usageByOfficeExpandableGroupBox.TabIndex = 2;
            this.usageByOfficeExpandableGroupBox.Text = "Usage by office";
            // 
            // ultraExpandableGroupBoxPanel3
            // 
            this.ultraExpandableGroupBoxPanel3.AutoSize = true;
            this.ultraExpandableGroupBoxPanel3.Controls.Add(this.TextBoxOfficeName);
            this.ultraExpandableGroupBoxPanel3.Controls.Add(this.ButtonSearchForOffice);
            this.ultraExpandableGroupBoxPanel3.Controls.Add(this.ButtonClearForOffice);
            this.ultraExpandableGroupBoxPanel3.Controls.Add(this.ultraLabel10);
            this.ultraExpandableGroupBoxPanel3.Controls.Add(this.DateTimeEndDateForOffice);
            this.ultraExpandableGroupBoxPanel3.Controls.Add(this.ultraLabel11);
            this.ultraExpandableGroupBoxPanel3.Controls.Add(this.DateTimeStartDateForOffice);
            this.ultraExpandableGroupBoxPanel3.Controls.Add(this.ultraLabel12);
            this.ultraExpandableGroupBoxPanel3.Controls.Add(this.ultraChart3);
            this.ultraExpandableGroupBoxPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.ultraExpandableGroupBoxPanel3.Location = new System.Drawing.Point(3, 19);
            this.ultraExpandableGroupBoxPanel3.Name = "ultraExpandableGroupBoxPanel3";
            this.ultraExpandableGroupBoxPanel3.Size = new System.Drawing.Size(943, 86);
            this.ultraExpandableGroupBoxPanel3.TabIndex = 0;
            // 
            // TextBoxOfficeName
            // 
            this.TextBoxOfficeName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.TextBoxOfficeName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
            this.TextBoxOfficeName.Location = new System.Drawing.Point(674, 27);
            this.TextBoxOfficeName.Name = "TextBoxOfficeName";
            this.TextBoxOfficeName.Size = new System.Drawing.Size(163, 23);
            this.TextBoxOfficeName.TabIndex = 5;
            // 
            // ButtonSearchForOffice
            // 
            this.ButtonSearchForOffice.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.ButtonSearchForOffice.ButtonStyle = Infragistics.Win.UIElementButtonStyle.WindowsVistaButton;
            this.ButtonSearchForOffice.Location = new System.Drawing.Point(3, 56);
            this.ButtonSearchForOffice.Name = "ButtonSearchForOffice";
            this.ButtonSearchForOffice.Size = new System.Drawing.Size(87, 25);
            this.ButtonSearchForOffice.TabIndex = 6;
            this.ButtonSearchForOffice.Text = "&Search";
            this.ButtonSearchForOffice.Click += new System.EventHandler(this.ButtonSearchForOffice_Click);
            // 
            // ButtonClearForOffice
            // 
            this.ButtonClearForOffice.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.ButtonClearForOffice.ButtonStyle = Infragistics.Win.UIElementButtonStyle.WindowsVistaButton;
            this.ButtonClearForOffice.Location = new System.Drawing.Point(98, 56);
            this.ButtonClearForOffice.Name = "ButtonClearForOffice";
            this.ButtonClearForOffice.Size = new System.Drawing.Size(87, 25);
            this.ButtonClearForOffice.TabIndex = 7;
            this.ButtonClearForOffice.Text = "&Reset";
            this.ButtonClearForOffice.Click += new System.EventHandler(this.ButtonClearForOffice_Click);
            // 
            // ultraLabel10
            // 
            this.ultraLabel10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            appearance105.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
            appearance105.TextHAlignAsString = "Right";
            this.ultraLabel10.Appearance = appearance105;
            this.ultraLabel10.Location = new System.Drawing.Point(539, 31);
            this.ultraLabel10.Name = "ultraLabel10";
            this.ultraLabel10.Size = new System.Drawing.Size(128, 25);
            this.ultraLabel10.TabIndex = 4;
            this.ultraLabel10.Text = "Office name";
            // 
            // ultraLabel11
            // 
            this.ultraLabel11.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            appearance104.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
            appearance104.TextHAlignAsString = "Right";
            this.ultraLabel11.Appearance = appearance104;
            this.ultraLabel11.Location = new System.Drawing.Point(283, 31);
            this.ultraLabel11.Name = "ultraLabel11";
            this.ultraLabel11.Size = new System.Drawing.Size(87, 25);
            this.ultraLabel11.TabIndex = 2;
            this.ultraLabel11.Text = "* To date";
            // 
            // ultraLabel12
            // 
            this.ultraLabel12.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            appearance103.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
            appearance103.TextHAlignAsString = "Right";
            this.ultraLabel12.Appearance = appearance103;
            this.ultraLabel12.Location = new System.Drawing.Point(5, 31);
            this.ultraLabel12.Name = "ultraLabel12";
            this.ultraLabel12.Size = new System.Drawing.Size(87, 25);
            this.ultraLabel12.TabIndex = 0;
            this.ultraLabel12.Text = "* From date";
            // 
            //			'UltraChart' properties's serialization: Since 'ChartType' changes the way axes look,
            //			'ChartType' must be persisted ahead of any Axes change made in design time.
            //		
            this.ultraChart3.ChartType = Infragistics.UltraChart.Shared.Styles.ChartType.BarChart;
            // 
            // ultraChart3
            // 
            this.ultraChart3.Axis.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(248)))), ((int)(((byte)(220)))));
            paintElement5.ElementType = Infragistics.UltraChart.Shared.Styles.PaintElementType.None;
            paintElement5.Fill = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(248)))), ((int)(((byte)(220)))));
            this.ultraChart3.Axis.PE = paintElement5;
            this.ultraChart3.Axis.X.Extent = 20;
            this.ultraChart3.Axis.X.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart3.Axis.X.Labels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart3.Axis.X.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart3.Axis.X.Labels.ItemFormatString = "<DATA_VALUE:00>";
            this.ultraChart3.Axis.X.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart3.Axis.X.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart3.Axis.X.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart3.Axis.X.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart3.Axis.X.Labels.SeriesLabels.FormatString = "";
            this.ultraChart3.Axis.X.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart3.Axis.X.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart3.Axis.X.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart3.Axis.X.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart3.Axis.X.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart3.Axis.X.LineThickness = 1;
            this.ultraChart3.Axis.X.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart3.Axis.X.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart3.Axis.X.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart3.Axis.X.MajorGridLines.Visible = true;
            this.ultraChart3.Axis.X.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart3.Axis.X.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart3.Axis.X.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart3.Axis.X.MinorGridLines.Visible = true;
            this.ultraChart3.Axis.X.TickmarkInterval = 40;
            this.ultraChart3.Axis.X.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart3.Axis.X.Visible = true;
            this.ultraChart3.Axis.X2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart3.Axis.X2.Labels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart3.Axis.X2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart3.Axis.X2.Labels.ItemFormatString = "<DATA_VALUE:00>";
            this.ultraChart3.Axis.X2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart3.Axis.X2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart3.Axis.X2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart3.Axis.X2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart3.Axis.X2.Labels.SeriesLabels.FormatString = "";
            this.ultraChart3.Axis.X2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart3.Axis.X2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart3.Axis.X2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart3.Axis.X2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart3.Axis.X2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart3.Axis.X2.Labels.Visible = false;
            this.ultraChart3.Axis.X2.LineThickness = 1;
            this.ultraChart3.Axis.X2.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart3.Axis.X2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart3.Axis.X2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart3.Axis.X2.MajorGridLines.Visible = true;
            this.ultraChart3.Axis.X2.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart3.Axis.X2.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart3.Axis.X2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart3.Axis.X2.MinorGridLines.Visible = false;
            this.ultraChart3.Axis.X2.TickmarkInterval = 40;
            this.ultraChart3.Axis.X2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart3.Axis.X2.Visible = false;
            this.ultraChart3.Axis.Y.Extent = 173;
            this.ultraChart3.Axis.Y.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart3.Axis.Y.Labels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart3.Axis.Y.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart3.Axis.Y.Labels.ItemFormatString = "<ITEM_LABEL>";
            this.ultraChart3.Axis.Y.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart3.Axis.Y.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart3.Axis.Y.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart3.Axis.Y.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart3.Axis.Y.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart3.Axis.Y.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart3.Axis.Y.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart3.Axis.Y.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart3.Axis.Y.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart3.Axis.Y.LineThickness = 1;
            this.ultraChart3.Axis.Y.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart3.Axis.Y.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart3.Axis.Y.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart3.Axis.Y.MajorGridLines.Visible = true;
            this.ultraChart3.Axis.Y.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart3.Axis.Y.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart3.Axis.Y.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart3.Axis.Y.MinorGridLines.Visible = true;
            this.ultraChart3.Axis.Y.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart3.Axis.Y.Visible = true;
            this.ultraChart3.Axis.Y2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart3.Axis.Y2.Labels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart3.Axis.Y2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart3.Axis.Y2.Labels.ItemFormatString = "<ITEM_LABEL>";
            this.ultraChart3.Axis.Y2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart3.Axis.Y2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart3.Axis.Y2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart3.Axis.Y2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart3.Axis.Y2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart3.Axis.Y2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart3.Axis.Y2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart3.Axis.Y2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart3.Axis.Y2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart3.Axis.Y2.Labels.Visible = false;
            this.ultraChart3.Axis.Y2.LineThickness = 1;
            this.ultraChart3.Axis.Y2.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart3.Axis.Y2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart3.Axis.Y2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart3.Axis.Y2.MajorGridLines.Visible = true;
            this.ultraChart3.Axis.Y2.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart3.Axis.Y2.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart3.Axis.Y2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart3.Axis.Y2.MinorGridLines.Visible = false;
            this.ultraChart3.Axis.Y2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart3.Axis.Y2.Visible = false;
            this.ultraChart3.Axis.Z.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart3.Axis.Z.Labels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart3.Axis.Z.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart3.Axis.Z.Labels.ItemFormatString = "";
            this.ultraChart3.Axis.Z.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart3.Axis.Z.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart3.Axis.Z.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart3.Axis.Z.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart3.Axis.Z.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart3.Axis.Z.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart3.Axis.Z.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart3.Axis.Z.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart3.Axis.Z.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart3.Axis.Z.Labels.Visible = false;
            this.ultraChart3.Axis.Z.LineThickness = 1;
            this.ultraChart3.Axis.Z.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart3.Axis.Z.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart3.Axis.Z.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart3.Axis.Z.MajorGridLines.Visible = true;
            this.ultraChart3.Axis.Z.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart3.Axis.Z.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart3.Axis.Z.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart3.Axis.Z.MinorGridLines.Visible = false;
            this.ultraChart3.Axis.Z.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart3.Axis.Z.Visible = false;
            this.ultraChart3.Axis.Z2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart3.Axis.Z2.Labels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart3.Axis.Z2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart3.Axis.Z2.Labels.ItemFormatString = "";
            this.ultraChart3.Axis.Z2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart3.Axis.Z2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart3.Axis.Z2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart3.Axis.Z2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart3.Axis.Z2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart3.Axis.Z2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart3.Axis.Z2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart3.Axis.Z2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart3.Axis.Z2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart3.Axis.Z2.Labels.Visible = false;
            this.ultraChart3.Axis.Z2.LineThickness = 1;
            this.ultraChart3.Axis.Z2.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart3.Axis.Z2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart3.Axis.Z2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart3.Axis.Z2.MajorGridLines.Visible = true;
            this.ultraChart3.Axis.Z2.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart3.Axis.Z2.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart3.Axis.Z2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart3.Axis.Z2.MinorGridLines.Visible = false;
            this.ultraChart3.Axis.Z2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart3.Axis.Z2.Visible = false;
            this.ultraChart3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            chartTextAppearance5.ChartTextFont = new System.Drawing.Font("Arial", 7F);
            chartTextAppearance5.Column = -2;
            chartTextAppearance5.ItemFormatString = "<DATA_VALUE:00>";
            chartTextAppearance5.Row = -2;
            chartTextAppearance5.Visible = true;
            barChartAppearance5.ChartText.Add(chartTextAppearance5);
            this.ultraChart3.BarChart = barChartAppearance5;
            this.ultraChart3.ColorModel.AlphaLevel = ((byte)(150));
            this.ultraChart3.ColorModel.ColorBegin = System.Drawing.Color.Pink;
            this.ultraChart3.ColorModel.ColorEnd = System.Drawing.Color.DarkRed;
            this.ultraChart3.ColorModel.ModelStyle = Infragistics.UltraChart.Shared.Styles.ColorModels.CustomLinear;
            this.ultraChart3.Data.ZeroAligned = true;
            this.ultraChart3.Effects.Effects.Add(gradientEffect5);
            this.ultraChart3.Location = new System.Drawing.Point(4, 5);
            this.ultraChart3.Name = "ultraChart3";
            this.ultraChart3.Size = new System.Drawing.Size(833, 188);
            this.ultraChart3.TabIndex = 19;
            this.ultraChart3.Tooltips.Display = Infragistics.UltraChart.Shared.Styles.TooltipDisplay.Never;
            this.ultraChart3.Tooltips.HighlightFillColor = System.Drawing.Color.DimGray;
            this.ultraChart3.Tooltips.HighlightOutlineColor = System.Drawing.Color.DarkGray;
            // 
            // usageByRoleExpandableGroupBox
            // 
            this.usageByRoleExpandableGroupBox.Controls.Add(this.ultraExpandableGroupBoxPanel2);
            this.usageByRoleExpandableGroupBox.Dock = System.Windows.Forms.DockStyle.Top;
            this.usageByRoleExpandableGroupBox.ExpandedSize = new System.Drawing.Size(949, 108);
            this.usageByRoleExpandableGroupBox.Location = new System.Drawing.Point(3, 117);
            this.usageByRoleExpandableGroupBox.Name = "usageByRoleExpandableGroupBox";
            this.usageByRoleExpandableGroupBox.Size = new System.Drawing.Size(949, 108);
            this.usageByRoleExpandableGroupBox.TabIndex = 1;
            this.usageByRoleExpandableGroupBox.Text = "Usage by role";
            // 
            // ultraExpandableGroupBoxPanel2
            // 
            this.ultraExpandableGroupBoxPanel2.AutoSize = true;
            this.ultraExpandableGroupBoxPanel2.Controls.Add(this.DateTimeStartDateForRole);
            this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel6);
            this.ultraExpandableGroupBoxPanel2.Controls.Add(this.TextBoxRoleId);
            this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ButtonSearchForRole);
            this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ButtonClearForRole);
            this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel4);
            this.ultraExpandableGroupBoxPanel2.Controls.Add(this.DateTimeEndDateForRole);
            this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraLabel5);
            this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraChart2);
            this.ultraExpandableGroupBoxPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(3, 19);
            this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
            this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(943, 86);
            this.ultraExpandableGroupBoxPanel2.TabIndex = 0;
            // 
            // ultraLabel6
            // 
            this.ultraLabel6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            appearance100.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
            appearance100.TextHAlignAsString = "Right";
            this.ultraLabel6.Appearance = appearance100;
            this.ultraLabel6.Location = new System.Drawing.Point(5, 31);
            this.ultraLabel6.Name = "ultraLabel6";
            this.ultraLabel6.Size = new System.Drawing.Size(87, 25);
            this.ultraLabel6.TabIndex = 0;
            this.ultraLabel6.Text = "* From date";
            // 
            // TextBoxRoleId
            // 
            this.TextBoxRoleId.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.TextBoxRoleId.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
            this.TextBoxRoleId.Location = new System.Drawing.Point(674, 27);
            this.TextBoxRoleId.Name = "TextBoxRoleId";
            this.TextBoxRoleId.Size = new System.Drawing.Size(163, 23);
            this.TextBoxRoleId.TabIndex = 5;
            // 
            // ButtonSearchForRole
            // 
            this.ButtonSearchForRole.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.ButtonSearchForRole.ButtonStyle = Infragistics.Win.UIElementButtonStyle.WindowsVistaButton;
            this.ButtonSearchForRole.Location = new System.Drawing.Point(3, 56);
            this.ButtonSearchForRole.Name = "ButtonSearchForRole";
            this.ButtonSearchForRole.Size = new System.Drawing.Size(87, 25);
            this.ButtonSearchForRole.TabIndex = 6;
            this.ButtonSearchForRole.Text = "&Search";
            this.ButtonSearchForRole.Click += new System.EventHandler(this.ButtonSearchForRole_Click);
            // 
            // ButtonClearForRole
            // 
            this.ButtonClearForRole.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.ButtonClearForRole.ButtonStyle = Infragistics.Win.UIElementButtonStyle.WindowsVistaButton;
            this.ButtonClearForRole.Location = new System.Drawing.Point(98, 56);
            this.ButtonClearForRole.Name = "ButtonClearForRole";
            this.ButtonClearForRole.Size = new System.Drawing.Size(87, 25);
            this.ButtonClearForRole.TabIndex = 7;
            this.ButtonClearForRole.Text = "&Reset";
            this.ButtonClearForRole.Click += new System.EventHandler(this.ButtonClearForRole_Click);
            // 
            // ultraLabel4
            // 
            this.ultraLabel4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            appearance102.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
            appearance102.TextHAlignAsString = "Right";
            this.ultraLabel4.Appearance = appearance102;
            this.ultraLabel4.Location = new System.Drawing.Point(539, 31);
            this.ultraLabel4.Name = "ultraLabel4";
            this.ultraLabel4.Size = new System.Drawing.Size(128, 25);
            this.ultraLabel4.TabIndex = 4;
            this.ultraLabel4.Text = "Role name";
            // 
            // ultraLabel5
            // 
            this.ultraLabel5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            appearance101.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
            appearance101.TextHAlignAsString = "Right";
            this.ultraLabel5.Appearance = appearance101;
            this.ultraLabel5.Location = new System.Drawing.Point(283, 31);
            this.ultraLabel5.Name = "ultraLabel5";
            this.ultraLabel5.Size = new System.Drawing.Size(87, 25);
            this.ultraLabel5.TabIndex = 2;
            this.ultraLabel5.Text = "* To date";
            // 
            //			'UltraChart' properties's serialization: Since 'ChartType' changes the way axes look,
            //			'ChartType' must be persisted ahead of any Axes change made in design time.
            //		
            this.ultraChart2.ChartType = Infragistics.UltraChart.Shared.Styles.ChartType.BarChart;
            // 
            // ultraChart2
            // 
            this.ultraChart2.Axis.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(248)))), ((int)(((byte)(220)))));
            paintElement6.ElementType = Infragistics.UltraChart.Shared.Styles.PaintElementType.None;
            paintElement6.Fill = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(248)))), ((int)(((byte)(220)))));
            this.ultraChart2.Axis.PE = paintElement6;
            this.ultraChart2.Axis.X.Extent = 20;
            this.ultraChart2.Axis.X.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart2.Axis.X.Labels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart2.Axis.X.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart2.Axis.X.Labels.ItemFormatString = "<DATA_VALUE:00>";
            this.ultraChart2.Axis.X.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart2.Axis.X.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart2.Axis.X.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart2.Axis.X.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart2.Axis.X.Labels.SeriesLabels.FormatString = "";
            this.ultraChart2.Axis.X.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart2.Axis.X.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart2.Axis.X.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart2.Axis.X.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart2.Axis.X.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart2.Axis.X.LineThickness = 1;
            this.ultraChart2.Axis.X.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart2.Axis.X.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart2.Axis.X.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart2.Axis.X.MajorGridLines.Visible = true;
            this.ultraChart2.Axis.X.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart2.Axis.X.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart2.Axis.X.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart2.Axis.X.MinorGridLines.Visible = true;
            this.ultraChart2.Axis.X.TickmarkInterval = 40;
            this.ultraChart2.Axis.X.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart2.Axis.X.Visible = true;
            this.ultraChart2.Axis.X2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart2.Axis.X2.Labels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart2.Axis.X2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart2.Axis.X2.Labels.ItemFormatString = "<DATA_VALUE:00>";
            this.ultraChart2.Axis.X2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart2.Axis.X2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart2.Axis.X2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart2.Axis.X2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart2.Axis.X2.Labels.SeriesLabels.FormatString = "";
            this.ultraChart2.Axis.X2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart2.Axis.X2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart2.Axis.X2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart2.Axis.X2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart2.Axis.X2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart2.Axis.X2.Labels.Visible = false;
            this.ultraChart2.Axis.X2.LineThickness = 1;
            this.ultraChart2.Axis.X2.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart2.Axis.X2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart2.Axis.X2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart2.Axis.X2.MajorGridLines.Visible = true;
            this.ultraChart2.Axis.X2.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart2.Axis.X2.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart2.Axis.X2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart2.Axis.X2.MinorGridLines.Visible = false;
            this.ultraChart2.Axis.X2.TickmarkInterval = 40;
            this.ultraChart2.Axis.X2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart2.Axis.X2.Visible = false;
            this.ultraChart2.Axis.Y.Extent = 153;
            this.ultraChart2.Axis.Y.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart2.Axis.Y.Labels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart2.Axis.Y.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart2.Axis.Y.Labels.ItemFormatString = "<ITEM_LABEL>";
            this.ultraChart2.Axis.Y.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart2.Axis.Y.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart2.Axis.Y.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart2.Axis.Y.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart2.Axis.Y.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart2.Axis.Y.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart2.Axis.Y.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart2.Axis.Y.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart2.Axis.Y.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart2.Axis.Y.LineThickness = 1;
            this.ultraChart2.Axis.Y.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart2.Axis.Y.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart2.Axis.Y.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart2.Axis.Y.MajorGridLines.Visible = true;
            this.ultraChart2.Axis.Y.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart2.Axis.Y.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart2.Axis.Y.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart2.Axis.Y.MinorGridLines.Visible = true;
            this.ultraChart2.Axis.Y.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart2.Axis.Y.Visible = true;
            this.ultraChart2.Axis.Y2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart2.Axis.Y2.Labels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart2.Axis.Y2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart2.Axis.Y2.Labels.ItemFormatString = "<ITEM_LABEL>";
            this.ultraChart2.Axis.Y2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart2.Axis.Y2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart2.Axis.Y2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart2.Axis.Y2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart2.Axis.Y2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart2.Axis.Y2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart2.Axis.Y2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart2.Axis.Y2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart2.Axis.Y2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart2.Axis.Y2.Labels.Visible = false;
            this.ultraChart2.Axis.Y2.LineThickness = 1;
            this.ultraChart2.Axis.Y2.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart2.Axis.Y2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart2.Axis.Y2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart2.Axis.Y2.MajorGridLines.Visible = true;
            this.ultraChart2.Axis.Y2.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart2.Axis.Y2.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart2.Axis.Y2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart2.Axis.Y2.MinorGridLines.Visible = false;
            this.ultraChart2.Axis.Y2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart2.Axis.Y2.Visible = false;
            this.ultraChart2.Axis.Z.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart2.Axis.Z.Labels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart2.Axis.Z.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart2.Axis.Z.Labels.ItemFormatString = "";
            this.ultraChart2.Axis.Z.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart2.Axis.Z.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart2.Axis.Z.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart2.Axis.Z.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart2.Axis.Z.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart2.Axis.Z.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart2.Axis.Z.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart2.Axis.Z.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart2.Axis.Z.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart2.Axis.Z.Labels.Visible = false;
            this.ultraChart2.Axis.Z.LineThickness = 1;
            this.ultraChart2.Axis.Z.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart2.Axis.Z.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart2.Axis.Z.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart2.Axis.Z.MajorGridLines.Visible = true;
            this.ultraChart2.Axis.Z.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart2.Axis.Z.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart2.Axis.Z.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart2.Axis.Z.MinorGridLines.Visible = false;
            this.ultraChart2.Axis.Z.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart2.Axis.Z.Visible = false;
            this.ultraChart2.Axis.Z2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart2.Axis.Z2.Labels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart2.Axis.Z2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart2.Axis.Z2.Labels.ItemFormatString = "";
            this.ultraChart2.Axis.Z2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart2.Axis.Z2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart2.Axis.Z2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart2.Axis.Z2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart2.Axis.Z2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart2.Axis.Z2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart2.Axis.Z2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart2.Axis.Z2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart2.Axis.Z2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart2.Axis.Z2.Labels.Visible = false;
            this.ultraChart2.Axis.Z2.LineThickness = 1;
            this.ultraChart2.Axis.Z2.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart2.Axis.Z2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart2.Axis.Z2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart2.Axis.Z2.MajorGridLines.Visible = true;
            this.ultraChart2.Axis.Z2.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart2.Axis.Z2.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart2.Axis.Z2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart2.Axis.Z2.MinorGridLines.Visible = false;
            this.ultraChart2.Axis.Z2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart2.Axis.Z2.Visible = false;
            this.ultraChart2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            chartTextAppearance6.ChartTextFont = new System.Drawing.Font("Arial", 7F);
            chartTextAppearance6.Column = -2;
            chartTextAppearance6.ItemFormatString = "<DATA_VALUE:00>";
            chartTextAppearance6.Row = -2;
            chartTextAppearance6.Visible = true;
            barChartAppearance6.ChartText.Add(chartTextAppearance6);
            this.ultraChart2.BarChart = barChartAppearance6;
            this.ultraChart2.ColorModel.AlphaLevel = ((byte)(150));
            this.ultraChart2.ColorModel.ColorBegin = System.Drawing.Color.Pink;
            this.ultraChart2.ColorModel.ColorEnd = System.Drawing.Color.DarkRed;
            this.ultraChart2.ColorModel.ModelStyle = Infragistics.UltraChart.Shared.Styles.ColorModels.CustomLinear;
            this.ultraChart2.Data.ZeroAligned = true;
            this.ultraChart2.Effects.Effects.Add(gradientEffect6);
            this.ultraChart2.Location = new System.Drawing.Point(3, 3);
            this.ultraChart2.Name = "ultraChart2";
            this.ultraChart2.Size = new System.Drawing.Size(937, 96);
            this.ultraChart2.TabIndex = 17;
            this.ultraChart2.Tooltips.Display = Infragistics.UltraChart.Shared.Styles.TooltipDisplay.Never;
            this.ultraChart2.Tooltips.HighlightFillColor = System.Drawing.Color.DimGray;
            this.ultraChart2.Tooltips.HighlightOutlineColor = System.Drawing.Color.DarkGray;
            // 
            // usageByUserCountExpandableGroupBox
            // 
            this.usageByUserCountExpandableGroupBox.Controls.Add(this.ultraExpandableGroupBoxPanel10);
            this.usageByUserCountExpandableGroupBox.Dock = System.Windows.Forms.DockStyle.Top;
            this.usageByUserCountExpandableGroupBox.ExpandedSize = new System.Drawing.Size(949, 108);
            this.usageByUserCountExpandableGroupBox.Location = new System.Drawing.Point(3, 573);
            this.usageByUserCountExpandableGroupBox.Name = "usageByUserCountExpandableGroupBox";
            this.usageByUserCountExpandableGroupBox.Size = new System.Drawing.Size(949, 108);
            this.usageByUserCountExpandableGroupBox.TabIndex = 6;
            this.usageByUserCountExpandableGroupBox.Text = "Count of users";
            // 
            // ultraExpandableGroupBoxPanel10
            // 
            this.ultraExpandableGroupBoxPanel10.AutoSize = true;
            this.ultraExpandableGroupBoxPanel10.Controls.Add(this.ButtonClearForCount);
            this.ultraExpandableGroupBoxPanel10.Controls.Add(this.ButtonSearchForCount);
            this.ultraExpandableGroupBoxPanel10.Controls.Add(this.DateTimeEndDateForCount);
            this.ultraExpandableGroupBoxPanel10.Controls.Add(this.ultraLabel23);
            this.ultraExpandableGroupBoxPanel10.Controls.Add(this.DateTimeStartDateForCount);
            this.ultraExpandableGroupBoxPanel10.Controls.Add(this.ultraLabel24);
            this.ultraExpandableGroupBoxPanel10.Controls.Add(this.ultraChart7);
            this.ultraExpandableGroupBoxPanel10.Dock = System.Windows.Forms.DockStyle.Fill;
            this.ultraExpandableGroupBoxPanel10.Location = new System.Drawing.Point(3, 19);
            this.ultraExpandableGroupBoxPanel10.Name = "ultraExpandableGroupBoxPanel10";
            this.ultraExpandableGroupBoxPanel10.Size = new System.Drawing.Size(943, 86);
            this.ultraExpandableGroupBoxPanel10.TabIndex = 0;
            // 
            // ButtonClearForCount
            // 
            this.ButtonClearForCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.ButtonClearForCount.ButtonStyle = Infragistics.Win.UIElementButtonStyle.WindowsVistaButton;
            this.ButtonClearForCount.Location = new System.Drawing.Point(98, 56);
            this.ButtonClearForCount.Name = "ButtonClearForCount";
            this.ButtonClearForCount.Size = new System.Drawing.Size(87, 25);
            this.ButtonClearForCount.TabIndex = 5;
            this.ButtonClearForCount.Text = "&Reset";
            this.ButtonClearForCount.Click += new System.EventHandler(this.ButtonClearForCount_Click);
            // 
            // ButtonSearchForCount
            // 
            this.ButtonSearchForCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.ButtonSearchForCount.ButtonStyle = Infragistics.Win.UIElementButtonStyle.WindowsVistaButton;
            this.ButtonSearchForCount.Location = new System.Drawing.Point(3, 56);
            this.ButtonSearchForCount.Name = "ButtonSearchForCount";
            this.ButtonSearchForCount.Size = new System.Drawing.Size(87, 25);
            this.ButtonSearchForCount.TabIndex = 4;
            this.ButtonSearchForCount.Text = "&Search";
            this.ButtonSearchForCount.Click += new System.EventHandler(this.ButtonSearchForCount_Click);
            // 
            // ultraLabel23
            // 
            this.ultraLabel23.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            appearance127.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
            appearance127.TextHAlignAsString = "Right";
            this.ultraLabel23.Appearance = appearance127;
            this.ultraLabel23.Location = new System.Drawing.Point(283, 31);
            this.ultraLabel23.Name = "ultraLabel23";
            this.ultraLabel23.Size = new System.Drawing.Size(87, 25);
            this.ultraLabel23.TabIndex = 2;
            this.ultraLabel23.Text = "* To date";
            // 
            // ultraLabel24
            // 
            this.ultraLabel24.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            appearance128.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
            appearance128.TextHAlignAsString = "Right";
            this.ultraLabel24.Appearance = appearance128;
            this.ultraLabel24.Location = new System.Drawing.Point(5, 31);
            this.ultraLabel24.Name = "ultraLabel24";
            this.ultraLabel24.Size = new System.Drawing.Size(87, 25);
            this.ultraLabel24.TabIndex = 0;
            this.ultraLabel24.Text = "* From date";
            // 
            //			'UltraChart' properties's serialization: Since 'ChartType' changes the way axes look,
            //			'ChartType' must be persisted ahead of any Axes change made in design time.
            //		
            this.ultraChart7.ChartType = Infragistics.UltraChart.Shared.Styles.ChartType.BarChart;
            // 
            // ultraChart7
            // 
            this.ultraChart7.Axis.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(248)))), ((int)(((byte)(220)))));
            paintElement7.ElementType = Infragistics.UltraChart.Shared.Styles.PaintElementType.None;
            paintElement7.Fill = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(248)))), ((int)(((byte)(220)))));
            this.ultraChart7.Axis.PE = paintElement7;
            this.ultraChart7.Axis.X.Extent = 20;
            this.ultraChart7.Axis.X.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart7.Axis.X.Labels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart7.Axis.X.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart7.Axis.X.Labels.ItemFormatString = "<DATA_VALUE:00>";
            this.ultraChart7.Axis.X.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart7.Axis.X.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart7.Axis.X.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart7.Axis.X.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart7.Axis.X.Labels.SeriesLabels.FormatString = "";
            this.ultraChart7.Axis.X.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart7.Axis.X.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart7.Axis.X.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart7.Axis.X.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart7.Axis.X.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart7.Axis.X.LineThickness = 1;
            this.ultraChart7.Axis.X.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart7.Axis.X.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart7.Axis.X.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart7.Axis.X.MajorGridLines.Visible = true;
            this.ultraChart7.Axis.X.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart7.Axis.X.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart7.Axis.X.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart7.Axis.X.MinorGridLines.Visible = true;
            this.ultraChart7.Axis.X.TickmarkInterval = 20;
            this.ultraChart7.Axis.X.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart7.Axis.X.Visible = true;
            this.ultraChart7.Axis.X2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart7.Axis.X2.Labels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart7.Axis.X2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart7.Axis.X2.Labels.ItemFormatString = "<DATA_VALUE:00>";
            this.ultraChart7.Axis.X2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart7.Axis.X2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart7.Axis.X2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart7.Axis.X2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart7.Axis.X2.Labels.SeriesLabels.FormatString = "";
            this.ultraChart7.Axis.X2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart7.Axis.X2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart7.Axis.X2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart7.Axis.X2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart7.Axis.X2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart7.Axis.X2.Labels.Visible = false;
            this.ultraChart7.Axis.X2.LineThickness = 1;
            this.ultraChart7.Axis.X2.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart7.Axis.X2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart7.Axis.X2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart7.Axis.X2.MajorGridLines.Visible = true;
            this.ultraChart7.Axis.X2.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart7.Axis.X2.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart7.Axis.X2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart7.Axis.X2.MinorGridLines.Visible = false;
            this.ultraChart7.Axis.X2.TickmarkInterval = 20;
            this.ultraChart7.Axis.X2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart7.Axis.X2.Visible = false;
            this.ultraChart7.Axis.Y.Extent = 98;
            this.ultraChart7.Axis.Y.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart7.Axis.Y.Labels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart7.Axis.Y.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
            this.ultraChart7.Axis.Y.Labels.ItemFormatString = "<ITEM_LABEL>";
            this.ultraChart7.Axis.Y.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart7.Axis.Y.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart7.Axis.Y.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart7.Axis.Y.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart7.Axis.Y.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart7.Axis.Y.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart7.Axis.Y.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart7.Axis.Y.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart7.Axis.Y.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart7.Axis.Y.LineThickness = 1;
            this.ultraChart7.Axis.Y.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart7.Axis.Y.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart7.Axis.Y.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart7.Axis.Y.MajorGridLines.Visible = true;
            this.ultraChart7.Axis.Y.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart7.Axis.Y.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart7.Axis.Y.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart7.Axis.Y.MinorGridLines.Visible = true;
            this.ultraChart7.Axis.Y.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart7.Axis.Y.Visible = true;
            this.ultraChart7.Axis.Y2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart7.Axis.Y2.Labels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart7.Axis.Y2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart7.Axis.Y2.Labels.ItemFormatString = "<ITEM_LABEL>";
            this.ultraChart7.Axis.Y2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart7.Axis.Y2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart7.Axis.Y2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart7.Axis.Y2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart7.Axis.Y2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart7.Axis.Y2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart7.Axis.Y2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart7.Axis.Y2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart7.Axis.Y2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart7.Axis.Y2.Labels.Visible = false;
            this.ultraChart7.Axis.Y2.LineThickness = 1;
            this.ultraChart7.Axis.Y2.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart7.Axis.Y2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart7.Axis.Y2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart7.Axis.Y2.MajorGridLines.Visible = true;
            this.ultraChart7.Axis.Y2.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart7.Axis.Y2.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart7.Axis.Y2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart7.Axis.Y2.MinorGridLines.Visible = false;
            this.ultraChart7.Axis.Y2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart7.Axis.Y2.Visible = false;
            this.ultraChart7.Axis.Z.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart7.Axis.Z.Labels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart7.Axis.Z.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart7.Axis.Z.Labels.ItemFormatString = "";
            this.ultraChart7.Axis.Z.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart7.Axis.Z.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart7.Axis.Z.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart7.Axis.Z.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
            this.ultraChart7.Axis.Z.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart7.Axis.Z.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart7.Axis.Z.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart7.Axis.Z.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart7.Axis.Z.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart7.Axis.Z.Labels.Visible = false;
            this.ultraChart7.Axis.Z.LineThickness = 1;
            this.ultraChart7.Axis.Z.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart7.Axis.Z.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart7.Axis.Z.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart7.Axis.Z.MajorGridLines.Visible = true;
            this.ultraChart7.Axis.Z.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart7.Axis.Z.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart7.Axis.Z.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart7.Axis.Z.MinorGridLines.Visible = false;
            this.ultraChart7.Axis.Z.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart7.Axis.Z.Visible = false;
            this.ultraChart7.Axis.Z2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart7.Axis.Z2.Labels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart7.Axis.Z2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart7.Axis.Z2.Labels.ItemFormatString = "";
            this.ultraChart7.Axis.Z2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart7.Axis.Z2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
            this.ultraChart7.Axis.Z2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
            this.ultraChart7.Axis.Z2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
            this.ultraChart7.Axis.Z2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart7.Axis.Z2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
            this.ultraChart7.Axis.Z2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
            this.ultraChart7.Axis.Z2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart7.Axis.Z2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
            this.ultraChart7.Axis.Z2.Labels.Visible = false;
            this.ultraChart7.Axis.Z2.LineThickness = 1;
            this.ultraChart7.Axis.Z2.MajorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart7.Axis.Z2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
            this.ultraChart7.Axis.Z2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart7.Axis.Z2.MajorGridLines.Visible = true;
            this.ultraChart7.Axis.Z2.MinorGridLines.AlphaLevel = ((byte)(255));
            this.ultraChart7.Axis.Z2.MinorGridLines.Color = System.Drawing.Color.LightGray;
            this.ultraChart7.Axis.Z2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
            this.ultraChart7.Axis.Z2.MinorGridLines.Visible = false;
            this.ultraChart7.Axis.Z2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
            this.ultraChart7.Axis.Z2.Visible = false;
            this.ultraChart7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            chartTextAppearance7.ChartTextFont = new System.Drawing.Font("Arial", 7F);
            chartTextAppearance7.Column = -2;
            chartTextAppearance7.ItemFormatString = "<DATA_VALUE:00>";
            chartTextAppearance7.Row = -2;
            chartTextAppearance7.Visible = true;
            barChartAppearance7.ChartText.Add(chartTextAppearance7);
            this.ultraChart7.BarChart = barChartAppearance7;
            this.ultraChart7.ColorModel.AlphaLevel = ((byte)(150));
            this.ultraChart7.ColorModel.ColorBegin = System.Drawing.Color.Pink;
            this.ultraChart7.ColorModel.ColorEnd = System.Drawing.Color.DarkRed;
            this.ultraChart7.ColorModel.ModelStyle = Infragistics.UltraChart.Shared.Styles.ColorModels.CustomLinear;
            this.ultraChart7.Data.ZeroAligned = true;
            this.ultraChart7.Effects.Effects.Add(gradientEffect7);
            this.ultraChart7.Location = new System.Drawing.Point(5, 3);
            this.ultraChart7.Name = "ultraChart7";
            this.ultraChart7.Size = new System.Drawing.Size(833, 216);
            this.ultraChart7.TabIndex = 27;
            this.ultraChart7.TitleBottom.HorizontalAlign = System.Drawing.StringAlignment.Near;
            this.ultraChart7.Tooltips.Display = Infragistics.UltraChart.Shared.Styles.TooltipDisplay.Never;
            this.ultraChart7.Tooltips.HighlightFillColor = System.Drawing.Color.DimGray;
            this.ultraChart7.Tooltips.HighlightOutlineColor = System.Drawing.Color.DarkGray;
            // 
            // UsageLogView
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.AutoScroll = true;
            this.AutoSize = true;
            this.CancelButton = this.ButtonClose;
            this.Controls.Add(this.ultraGroupBox1);
            this.Key = "Usage View";
            this.Name = "UsageLogView";
            this.Size = new System.Drawing.Size(978, 513);
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeStartDateForUser)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeEndDateForUser)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox6)).EndInit();
            this.ultraExpandableGroupBox6.ResumeLayout(false);
            this.ultraExpandableGroupBox6.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeStartDateForRole)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeEndDateForRole)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeEndDateForOffice)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeStartDateForOffice)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeEndDateForModule)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeStartDateForModule)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeEndDateForFunction)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeStartDateForFunction)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeEndDateForCount)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeStartDateForCount)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeEndDateForCountPerModule)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DateTimeStartDateForCountPerModule)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
            this.ultraGroupBox1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
            this.ultraGroupBox2.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            this.tableLayoutPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.usageByFunctionExpandableGroupBox)).EndInit();
            this.usageByFunctionExpandableGroupBox.ResumeLayout(false);
            this.usageByFunctionExpandableGroupBox.PerformLayout();
            this.ultraExpandableGroupBoxPanel8.ResumeLayout(false);
            this.ultraExpandableGroupBoxPanel8.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TextBoxFunctionId)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ultraChart6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.usageByModuleExpandableGroupBox)).EndInit();
            this.usageByModuleExpandableGroupBox.ResumeLayout(false);
            this.usageByModuleExpandableGroupBox.PerformLayout();
            this.ultraExpandableGroupBoxPanel6.ResumeLayout(false);
            this.ultraExpandableGroupBoxPanel6.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TextBoxModuleId)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ultraChart5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.usageByUserCountPerModuleExpandableGroupBox)).EndInit();
            this.usageByUserCountPerModuleExpandableGroupBox.ResumeLayout(false);
            this.usageByUserCountPerModuleExpandableGroupBox.PerformLayout();
            this.ultraExpandableGroupBoxPanel4.ResumeLayout(false);
            this.ultraExpandableGroupBoxPanel4.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TextBoxModuleIdForCount)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ultraChart8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.usageByUserExpandableGroupBox)).EndInit();
            this.usageByUserExpandableGroupBox.ResumeLayout(false);
            this.usageByUserExpandableGroupBox.PerformLayout();
            this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
            this.ultraExpandableGroupBoxPanel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TextBoxUserName)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ultraChart1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.usageByOfficeExpandableGroupBox)).EndInit();
            this.usageByOfficeExpandableGroupBox.ResumeLayout(false);
            this.usageByOfficeExpandableGroupBox.PerformLayout();
            this.ultraExpandableGroupBoxPanel3.ResumeLayout(false);
            this.ultraExpandableGroupBoxPanel3.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TextBoxOfficeName)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ultraChart3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.usageByRoleExpandableGroupBox)).EndInit();
            this.usageByRoleExpandableGroupBox.ResumeLayout(false);
            this.usageByRoleExpandableGroupBox.PerformLayout();
            this.ultraExpandableGroupBoxPanel2.ResumeLayout(false);
            this.ultraExpandableGroupBoxPanel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TextBoxRoleId)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ultraChart2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.usageByUserCountExpandableGroupBox)).EndInit();
            this.usageByUserCountExpandableGroupBox.ResumeLayout(false);
            this.usageByUserCountExpandableGroupBox.PerformLayout();
            this.ultraExpandableGroupBoxPanel10.ResumeLayout(false);
            this.ultraExpandableGroupBoxPanel10.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ultraChart7)).EndInit();
            this.ResumeLayout(false);

        }