90 lines
3.3 KiB
C#
90 lines
3.3 KiB
C#
namespace Deckungsbeitrag.AA_Forms
|
|
{
|
|
partial class FehlmengeChart
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
|
|
System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
|
|
System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
|
|
this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
|
|
this.checkBox1 = new System.Windows.Forms.CheckBox();
|
|
((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// chart1
|
|
//
|
|
chartArea1.Name = "ChartArea1";
|
|
this.chart1.ChartAreas.Add(chartArea1);
|
|
this.chart1.Dock = System.Windows.Forms.DockStyle.Top;
|
|
legend1.Name = "Legend1";
|
|
this.chart1.Legends.Add(legend1);
|
|
this.chart1.Location = new System.Drawing.Point(0, 0);
|
|
this.chart1.Name = "chart1";
|
|
series1.ChartArea = "ChartArea1";
|
|
series1.Legend = "Legend1";
|
|
series1.Name = "Series1";
|
|
this.chart1.Series.Add(series1);
|
|
this.chart1.Size = new System.Drawing.Size(585, 413);
|
|
this.chart1.TabIndex = 0;
|
|
this.chart1.Text = "chart1";
|
|
//
|
|
// checkBox1
|
|
//
|
|
this.checkBox1.AutoSize = true;
|
|
this.checkBox1.Checked = true;
|
|
this.checkBox1.CheckState = System.Windows.Forms.CheckState.Indeterminate;
|
|
this.checkBox1.Location = new System.Drawing.Point(163, 472);
|
|
this.checkBox1.Name = "checkBox1";
|
|
this.checkBox1.Size = new System.Drawing.Size(80, 17);
|
|
this.checkBox1.TabIndex = 1;
|
|
this.checkBox1.Text = "checkBox1";
|
|
this.checkBox1.ThreeState = true;
|
|
this.checkBox1.UseVisualStyleBackColor = true;
|
|
//
|
|
// FehlmengeChart
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(585, 582);
|
|
this.Controls.Add(this.checkBox1);
|
|
this.Controls.Add(this.chart1);
|
|
this.Name = "FehlmengeChart";
|
|
this.Text = "FehlmengeChart";
|
|
this.Load += new System.EventHandler(this.FehlmengeChart_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DataVisualization.Charting.Chart chart1;
|
|
private System.Windows.Forms.CheckBox checkBox1;
|
|
}
|
|
} |