Click here to Skip to main content
15,881,172 members
Articles / Programming Languages / C#

Simple Column Chart Generator

Rate me:
Please Sign up or sign in to vote.
4.79/5 (15 votes)
26 Jan 2008CPOL3 min read 74.7K   2.7K   68  
With this library, it’s possible to generate some column chart images easily
namespace ForLogic.ColumnChartGenerator.Tests
{
	partial class MainForm
	{
		/// <summary>
		/// Designer variable used to keep track of non-visual components.
		/// </summary>
		private System.ComponentModel.IContainer components = null;
		
		/// <summary>
		/// Disposes resources used by the form.
		/// </summary>
		/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
		protected override void Dispose(bool disposing)
		{
			if (disposing) {
				if (components != null) {
					components.Dispose();
				}
			}
			base.Dispose(disposing);
		}
		
		/// <summary>
		/// This method is required for Windows Forms designer support.
		/// Do not change the method contents inside the source code editor. The Forms designer might
		/// not be able to load this method if it was changed manually.
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.pct = new System.Windows.Forms.PictureBox();
			this.mnu = new System.Windows.Forms.ContextMenuStrip(this.components);
			this.mnuSaveAs = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuUpdateChart = new System.Windows.Forms.ToolStripMenuItem();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.nudDepth = new System.Windows.Forms.NumericUpDown();
			this.nudMargins = new System.Windows.Forms.NumericUpDown();
			this.nudColumnSpacing = new System.Windows.Forms.NumericUpDown();
			this.nudHeight = new System.Windows.Forms.NumericUpDown();
			this.nudWidth = new System.Windows.Forms.NumericUpDown();
			this.nudFontSize = new System.Windows.Forms.NumericUpDown();
			this.chkShowGuideLines = new System.Windows.Forms.CheckBox();
			this.chkShowValues = new System.Windows.Forms.CheckBox();
			this.chkShowDescriptions = new System.Windows.Forms.CheckBox();
			this.label2 = new System.Windows.Forms.Label();
			this.label10 = new System.Windows.Forms.Label();
			this.label6 = new System.Windows.Forms.Label();
			this.label5 = new System.Windows.Forms.Label();
			this.label4 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.label1 = new System.Windows.Forms.Label();
			this.txtValueFormat = new System.Windows.Forms.TextBox();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.cboColumnColor = new System.Windows.Forms.ComboBox();
			this.txtColumnDescription = new System.Windows.Forms.TextBox();
			this.btnAddColumn = new System.Windows.Forms.Button();
			this.nudColumnValue = new System.Windows.Forms.NumericUpDown();
			this.label7 = new System.Windows.Forms.Label();
			this.label9 = new System.Windows.Forms.Label();
			this.label8 = new System.Windows.Forms.Label();
			this.lvwColumns = new System.Windows.Forms.ListView();
			this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
			this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
			this.groupBox3 = new System.Windows.Forms.GroupBox();
			this.btnRemoveColumn = new System.Windows.Forms.Button();
			this.panel1 = new System.Windows.Forms.Panel();
			this.tip = new System.Windows.Forms.ToolTip(this.components);
			this.sfd = new System.Windows.Forms.SaveFileDialog();
			this.label11 = new System.Windows.Forms.Label();
			this.nudGuideLinesCount = new System.Windows.Forms.NumericUpDown();
			((System.ComponentModel.ISupportInitialize)(this.pct)).BeginInit();
			this.mnu.SuspendLayout();
			this.groupBox1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.nudDepth)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.nudMargins)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.nudColumnSpacing)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.nudHeight)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.nudWidth)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.nudFontSize)).BeginInit();
			this.groupBox2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.nudColumnValue)).BeginInit();
			this.groupBox3.SuspendLayout();
			this.panel1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.nudGuideLinesCount)).BeginInit();
			this.SuspendLayout();
			// 
			// pct
			// 
			this.pct.ContextMenuStrip = this.mnu;
			this.pct.Location = new System.Drawing.Point(3, 3);
			this.pct.Name = "pct";
			this.pct.Size = new System.Drawing.Size(260, 175);
			this.pct.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
			this.pct.TabIndex = 1;
			this.pct.TabStop = false;
			// 
			// mnu
			// 
			this.mnu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuSaveAs,
            this.mnuUpdateChart});
			this.mnu.Name = "mnu";
			this.mnu.Size = new System.Drawing.Size(151, 48);
			// 
			// mnuSaveAs
			// 
			this.mnuSaveAs.Name = "mnuSaveAs";
			this.mnuSaveAs.Size = new System.Drawing.Size(150, 22);
			this.mnuSaveAs.Text = "Save As...";
			this.mnuSaveAs.Click += new System.EventHandler(this.MnuSaveAsClick);
			// 
			// mnuUpdateChart
			// 
			this.mnuUpdateChart.Name = "mnuUpdateChart";
			this.mnuUpdateChart.Size = new System.Drawing.Size(150, 22);
			this.mnuUpdateChart.Text = "Update Chart";
			this.mnuUpdateChart.Click += new System.EventHandler(this.BtnUpdateChartClick);
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.nudGuideLinesCount);
			this.groupBox1.Controls.Add(this.nudDepth);
			this.groupBox1.Controls.Add(this.nudMargins);
			this.groupBox1.Controls.Add(this.nudColumnSpacing);
			this.groupBox1.Controls.Add(this.nudHeight);
			this.groupBox1.Controls.Add(this.nudWidth);
			this.groupBox1.Controls.Add(this.nudFontSize);
			this.groupBox1.Controls.Add(this.chkShowGuideLines);
			this.groupBox1.Controls.Add(this.chkShowValues);
			this.groupBox1.Controls.Add(this.chkShowDescriptions);
			this.groupBox1.Controls.Add(this.label2);
			this.groupBox1.Controls.Add(this.label10);
			this.groupBox1.Controls.Add(this.label11);
			this.groupBox1.Controls.Add(this.label6);
			this.groupBox1.Controls.Add(this.label5);
			this.groupBox1.Controls.Add(this.label4);
			this.groupBox1.Controls.Add(this.label3);
			this.groupBox1.Controls.Add(this.label1);
			this.groupBox1.Controls.Add(this.txtValueFormat);
			this.groupBox1.Location = new System.Drawing.Point(7, 4);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(197, 234);
			this.groupBox1.TabIndex = 0;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "Column Chart Properties";
			// 
			// nudDepth
			// 
			this.nudDepth.Location = new System.Drawing.Point(109, 100);
			this.nudDepth.Name = "nudDepth";
			this.nudDepth.Size = new System.Drawing.Size(67, 20);
			this.nudDepth.TabIndex = 4;
			this.nudDepth.Value = new decimal(new int[] {
            20,
            0,
            0,
            0});
			this.nudDepth.ValueChanged += new System.EventHandler(this.BtnUpdateChartClick);
			// 
			// nudMargins
			// 
			this.nudMargins.Location = new System.Drawing.Point(109, 79);
			this.nudMargins.Name = "nudMargins";
			this.nudMargins.Size = new System.Drawing.Size(67, 20);
			this.nudMargins.TabIndex = 3;
			this.nudMargins.Value = new decimal(new int[] {
            10,
            0,
            0,
            0});
			this.nudMargins.ValueChanged += new System.EventHandler(this.BtnUpdateChartClick);
			// 
			// nudColumnSpacing
			// 
			this.nudColumnSpacing.Location = new System.Drawing.Point(109, 58);
			this.nudColumnSpacing.Name = "nudColumnSpacing";
			this.nudColumnSpacing.Size = new System.Drawing.Size(67, 20);
			this.nudColumnSpacing.TabIndex = 2;
			this.nudColumnSpacing.Value = new decimal(new int[] {
            5,
            0,
            0,
            0});
			this.nudColumnSpacing.ValueChanged += new System.EventHandler(this.BtnUpdateChartClick);
			// 
			// nudHeight
			// 
			this.nudHeight.Increment = new decimal(new int[] {
            10,
            0,
            0,
            0});
			this.nudHeight.Location = new System.Drawing.Point(109, 37);
			this.nudHeight.Maximum = new decimal(new int[] {
            1000,
            0,
            0,
            0});
			this.nudHeight.Name = "nudHeight";
			this.nudHeight.Size = new System.Drawing.Size(67, 20);
			this.nudHeight.TabIndex = 1;
			this.nudHeight.Value = new decimal(new int[] {
            280,
            0,
            0,
            0});
			this.nudHeight.ValueChanged += new System.EventHandler(this.BtnUpdateChartClick);
			// 
			// nudWidth
			// 
			this.nudWidth.Increment = new decimal(new int[] {
            10,
            0,
            0,
            0});
			this.nudWidth.Location = new System.Drawing.Point(109, 16);
			this.nudWidth.Maximum = new decimal(new int[] {
            1000,
            0,
            0,
            0});
			this.nudWidth.Name = "nudWidth";
			this.nudWidth.Size = new System.Drawing.Size(67, 20);
			this.nudWidth.TabIndex = 0;
			this.nudWidth.Value = new decimal(new int[] {
            250,
            0,
            0,
            0});
			this.nudWidth.ValueChanged += new System.EventHandler(this.BtnUpdateChartClick);
			// 
			// nudFontSize
			// 
			this.nudFontSize.DecimalPlaces = 1;
			this.nudFontSize.Location = new System.Drawing.Point(109, 142);
			this.nudFontSize.Name = "nudFontSize";
			this.nudFontSize.Size = new System.Drawing.Size(67, 20);
			this.nudFontSize.TabIndex = 6;
			this.nudFontSize.Value = new decimal(new int[] {
            8,
            0,
            0,
            0});
			this.nudFontSize.ValueChanged += new System.EventHandler(this.BtnUpdateChartClick);
			// 
			// chkShowGuideLines
			// 
			this.chkShowGuideLines.Checked = true;
			this.chkShowGuideLines.CheckState = System.Windows.Forms.CheckState.Checked;
			this.chkShowGuideLines.Location = new System.Drawing.Point(28, 217);
			this.chkShowGuideLines.Name = "chkShowGuideLines";
			this.chkShowGuideLines.Size = new System.Drawing.Size(157, 16);
			this.chkShowGuideLines.TabIndex = 10;
			this.chkShowGuideLines.Text = "Show Guide Lines";
			this.chkShowGuideLines.UseVisualStyleBackColor = true;
			this.chkShowGuideLines.CheckedChanged += new System.EventHandler(this.BtnUpdateChartClick);
			// 
			// chkShowValues
			// 
			this.chkShowValues.Checked = true;
			this.chkShowValues.CheckState = System.Windows.Forms.CheckState.Checked;
			this.chkShowValues.Location = new System.Drawing.Point(28, 201);
			this.chkShowValues.Name = "chkShowValues";
			this.chkShowValues.Size = new System.Drawing.Size(157, 16);
			this.chkShowValues.TabIndex = 9;
			this.chkShowValues.Text = "Show Columns Values";
			this.chkShowValues.UseVisualStyleBackColor = true;
			this.chkShowValues.CheckedChanged += new System.EventHandler(this.BtnUpdateChartClick);
			// 
			// chkShowDescriptions
			// 
			this.chkShowDescriptions.Checked = true;
			this.chkShowDescriptions.CheckState = System.Windows.Forms.CheckState.Checked;
			this.chkShowDescriptions.Location = new System.Drawing.Point(28, 184);
			this.chkShowDescriptions.Name = "chkShowDescriptions";
			this.chkShowDescriptions.Size = new System.Drawing.Size(157, 16);
			this.chkShowDescriptions.TabIndex = 8;
			this.chkShowDescriptions.Text = "Show Columns Descriptions";
			this.chkShowDescriptions.UseVisualStyleBackColor = true;
			this.chkShowDescriptions.CheckedChanged += new System.EventHandler(this.BtnUpdateChartClick);
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(13, 35);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(95, 20);
			this.label2.TabIndex = 1;
			this.label2.Text = "Height:";
			this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label10
			// 
			this.label10.Location = new System.Drawing.Point(20, 140);
			this.label10.Name = "label10";
			this.label10.Size = new System.Drawing.Size(88, 20);
			this.label10.TabIndex = 1;
			this.label10.Text = "Font Size:";
			this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(20, 120);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(88, 20);
			this.label6.TabIndex = 1;
			this.label6.Text = "Value Format:";
			this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(20, 99);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(88, 20);
			this.label5.TabIndex = 1;
			this.label5.Text = "Depth:";
			this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(8, 77);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(101, 20);
			this.label4.TabIndex = 1;
			this.label4.Text = "Margins:";
			this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(8, 56);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(100, 20);
			this.label3.TabIndex = 1;
			this.label3.Text = "Column Spacing:";
			this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(14, 14);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(95, 20);
			this.label1.TabIndex = 1;
			this.label1.Text = "Width:";
			this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// txtValueFormat
			// 
			this.txtValueFormat.Location = new System.Drawing.Point(109, 121);
			this.txtValueFormat.Name = "txtValueFormat";
			this.txtValueFormat.Size = new System.Drawing.Size(67, 20);
			this.txtValueFormat.TabIndex = 5;
			this.txtValueFormat.Text = "$ ###0.00";
			this.txtValueFormat.TextChanged += new System.EventHandler(this.BtnUpdateChartClick);
			// 
			// groupBox2
			// 
			this.groupBox2.Controls.Add(this.cboColumnColor);
			this.groupBox2.Controls.Add(this.txtColumnDescription);
			this.groupBox2.Controls.Add(this.btnAddColumn);
			this.groupBox2.Controls.Add(this.nudColumnValue);
			this.groupBox2.Controls.Add(this.label7);
			this.groupBox2.Controls.Add(this.label9);
			this.groupBox2.Controls.Add(this.label8);
			this.groupBox2.Location = new System.Drawing.Point(450, 3);
			this.groupBox2.Name = "groupBox2";
			this.groupBox2.Size = new System.Drawing.Size(234, 130);
			this.groupBox2.TabIndex = 2;
			this.groupBox2.TabStop = false;
			this.groupBox2.Text = "New Column";
			// 
			// cboColumnColor
			// 
			this.cboColumnColor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cboColumnColor.FormattingEnabled = true;
			this.cboColumnColor.Items.AddRange(new object[] {
            "Red",
            "DarkRed",
            "Green",
            "DarkGreen",
            "Blue",
            "DarkBlue",
            "Orange",
            "DarkOrange",
            "Gray",
            "DarkGray",
            "Black"});
			this.cboColumnColor.Location = new System.Drawing.Point(110, 71);
			this.cboColumnColor.Name = "cboColumnColor";
			this.cboColumnColor.Size = new System.Drawing.Size(106, 21);
			this.cboColumnColor.TabIndex = 2;
			// 
			// txtColumnDescription
			// 
			this.txtColumnDescription.Location = new System.Drawing.Point(110, 46);
			this.txtColumnDescription.Name = "txtColumnDescription";
			this.txtColumnDescription.Size = new System.Drawing.Size(106, 20);
			this.txtColumnDescription.TabIndex = 1;
			this.txtColumnDescription.Text = "Test";
			// 
			// btnAddColumn
			// 
			this.btnAddColumn.Location = new System.Drawing.Point(140, 98);
			this.btnAddColumn.Name = "btnAddColumn";
			this.btnAddColumn.Size = new System.Drawing.Size(76, 23);
			this.btnAddColumn.TabIndex = 3;
			this.btnAddColumn.Text = "&Add Column";
			this.btnAddColumn.UseVisualStyleBackColor = true;
			this.btnAddColumn.Click += new System.EventHandler(this.BtnAddColumnClick);
			// 
			// nudColumnValue
			// 
			this.nudColumnValue.DecimalPlaces = 2;
			this.nudColumnValue.Increment = new decimal(new int[] {
            10,
            0,
            0,
            0});
			this.nudColumnValue.Location = new System.Drawing.Point(110, 21);
			this.nudColumnValue.Minimum = new decimal(new int[] {
            100,
            0,
            0,
            -2147483648});
			this.nudColumnValue.Name = "nudColumnValue";
			this.nudColumnValue.Size = new System.Drawing.Size(106, 20);
			this.nudColumnValue.TabIndex = 0;
			this.nudColumnValue.Value = new decimal(new int[] {
            20,
            0,
            0,
            0});
			// 
			// label7
			// 
			this.label7.Location = new System.Drawing.Point(10, 20);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(100, 20);
			this.label7.TabIndex = 1;
			this.label7.Text = "Value:";
			this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label9
			// 
			this.label9.Location = new System.Drawing.Point(10, 70);
			this.label9.Name = "label9";
			this.label9.Size = new System.Drawing.Size(101, 20);
			this.label9.TabIndex = 1;
			this.label9.Text = "Column Color:";
			this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// label8
			// 
			this.label8.Location = new System.Drawing.Point(10, 45);
			this.label8.Name = "label8";
			this.label8.Size = new System.Drawing.Size(101, 20);
			this.label8.TabIndex = 1;
			this.label8.Text = "Column Description:";
			this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// lvwColumns
			// 
			this.lvwColumns.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader1,
            this.columnHeader2});
			this.lvwColumns.FullRowSelect = true;
			this.lvwColumns.Location = new System.Drawing.Point(12, 19);
			this.lvwColumns.Name = "lvwColumns";
			this.lvwColumns.Size = new System.Drawing.Size(188, 177);
			this.lvwColumns.TabIndex = 0;
			this.lvwColumns.UseCompatibleStateImageBehavior = false;
			this.lvwColumns.View = System.Windows.Forms.View.Details;
			this.lvwColumns.SelectedIndexChanged += new System.EventHandler(this.LvwColumnsSelectedIndexChanged);
			// 
			// columnHeader1
			// 
			this.columnHeader1.Text = "Value";
			this.columnHeader1.Width = 65;
			// 
			// columnHeader2
			// 
			this.columnHeader2.Text = "Description";
			this.columnHeader2.Width = 102;
			// 
			// groupBox3
			// 
			this.groupBox3.Controls.Add(this.lvwColumns);
			this.groupBox3.Controls.Add(this.btnRemoveColumn);
			this.groupBox3.Location = new System.Drawing.Point(221, 4);
			this.groupBox3.Name = "groupBox3";
			this.groupBox3.Size = new System.Drawing.Size(211, 234);
			this.groupBox3.TabIndex = 1;
			this.groupBox3.TabStop = false;
			this.groupBox3.Text = "Chart Columns";
			// 
			// btnRemoveColumn
			// 
			this.btnRemoveColumn.Enabled = false;
			this.btnRemoveColumn.Location = new System.Drawing.Point(92, 202);
			this.btnRemoveColumn.Name = "btnRemoveColumn";
			this.btnRemoveColumn.Size = new System.Drawing.Size(108, 23);
			this.btnRemoveColumn.TabIndex = 1;
			this.btnRemoveColumn.Text = "&Remove Selected";
			this.btnRemoveColumn.UseVisualStyleBackColor = true;
			this.btnRemoveColumn.Click += new System.EventHandler(this.BtnRemoveColumnClick);
			// 
			// 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.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.panel1.Controls.Add(this.pct);
			this.panel1.Location = new System.Drawing.Point(7, 242);
			this.panel1.Name = "panel1";
			this.panel1.Size = new System.Drawing.Size(676, 289);
			this.panel1.TabIndex = 5;
			// 
			// sfd
			// 
			this.sfd.Filter = "PNG Files (*.png)|*.png|All Files (*.*)|*.*";
			// 
			// label11
			// 
			this.label11.Location = new System.Drawing.Point(11, 161);
			this.label11.Name = "label11";
			this.label11.Size = new System.Drawing.Size(97, 20);
			this.label11.TabIndex = 1;
			this.label11.Text = "Guide Lines Count:";
			this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// nudGuideLinesCount
			// 
			this.nudGuideLinesCount.Location = new System.Drawing.Point(109, 163);
			this.nudGuideLinesCount.Name = "nudGuideLinesCount";
			this.nudGuideLinesCount.Size = new System.Drawing.Size(67, 20);
			this.nudGuideLinesCount.TabIndex = 7;
			this.nudGuideLinesCount.Value = new decimal(new int[] {
            6,
            0,
            0,
            0});
			this.nudGuideLinesCount.ValueChanged += new System.EventHandler(this.BtnUpdateChartClick);
			// 
			// MainForm
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(692, 536);
			this.Controls.Add(this.panel1);
			this.Controls.Add(this.groupBox3);
			this.Controls.Add(this.groupBox2);
			this.Controls.Add(this.groupBox1);
			this.Name = "MainForm";
			this.Text = "ForLogic.ColumnChartGenerator Test";
			((System.ComponentModel.ISupportInitialize)(this.pct)).EndInit();
			this.mnu.ResumeLayout(false);
			this.groupBox1.ResumeLayout(false);
			this.groupBox1.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.nudDepth)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.nudMargins)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.nudColumnSpacing)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.nudHeight)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.nudWidth)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.nudFontSize)).EndInit();
			this.groupBox2.ResumeLayout(false);
			this.groupBox2.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.nudColumnValue)).EndInit();
			this.groupBox3.ResumeLayout(false);
			this.panel1.ResumeLayout(false);
			this.panel1.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.nudGuideLinesCount)).EndInit();
			this.ResumeLayout(false);

		}
		private System.Windows.Forms.CheckBox chkShowGuideLines;
		private System.Windows.Forms.SaveFileDialog sfd;
		private System.Windows.Forms.ToolStripMenuItem mnuUpdateChart;
		private System.Windows.Forms.ToolStripMenuItem mnuSaveAs;
		private System.Windows.Forms.ContextMenuStrip mnu;
		private System.Windows.Forms.ToolTip tip;
		private System.Windows.Forms.CheckBox chkShowValues;
		private System.Windows.Forms.Panel panel1;
		private System.Windows.Forms.NumericUpDown nudColumnValue;
		private System.Windows.Forms.NumericUpDown nudDepth;
		private System.Windows.Forms.NumericUpDown nudColumnSpacing;
		private System.Windows.Forms.NumericUpDown nudMargins;
		private System.Windows.Forms.NumericUpDown nudWidth;
		private System.Windows.Forms.NumericUpDown nudHeight;
		private System.Windows.Forms.NumericUpDown nudFontSize;
		private System.Windows.Forms.Label label10;
		private System.Windows.Forms.ComboBox cboColumnColor;
		private System.Windows.Forms.Label label9;
		private System.Windows.Forms.Button btnRemoveColumn;
		private System.Windows.Forms.Button btnAddColumn;
		private System.Windows.Forms.TextBox txtColumnDescription;
		private System.Windows.Forms.ListView lvwColumns;
		private System.Windows.Forms.TextBox txtValueFormat;
		private System.Windows.Forms.GroupBox groupBox3;
		private System.Windows.Forms.Label label8;
		private System.Windows.Forms.Label label7;
		private System.Windows.Forms.ColumnHeader columnHeader2;
		private System.Windows.Forms.ColumnHeader columnHeader1;
		private System.Windows.Forms.GroupBox groupBox2;
		private System.Windows.Forms.CheckBox chkShowDescriptions;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.Label label5;
		private System.Windows.Forms.Label label6;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.GroupBox groupBox1;
		private System.Windows.Forms.PictureBox pct;
		private System.Windows.Forms.NumericUpDown nudGuideLinesCount;
		private System.Windows.Forms.Label label11;
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer ForLogic Software
Brazil Brazil
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions