Loading...
Searching...
No Matches
Form1.Designer.cs
1namespace Markowitz
2{
3 partial class Form1
4 {
8 private System.ComponentModel.IContainer components = null;
9
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22
23 #region Windows Form Designer generated code
24
29 private void InitializeComponent()
30 {
31 System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
32 System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
33 this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
34 ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
35 this.SuspendLayout();
36 //
37 // chart1
38 //
39 chartArea1.Name = "ChartArea1";
40 this.chart1.ChartAreas.Add(chartArea1);
41 this.chart1.Location = new System.Drawing.Point(12, 12);
42 this.chart1.Name = "chart1";
43 series1.ChartArea = "ChartArea1";
44 series1.Name = "Series1";
45 this.chart1.Series.Add(series1);
46 this.chart1.Size = new System.Drawing.Size(475, 392);
47 this.chart1.TabIndex = 0;
48 this.chart1.Text = "chart1";
49 //
50 // Form1
51 //
52 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
53 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
54 this.ClientSize = new System.Drawing.Size(499, 416);
55 this.Controls.Add(this.chart1);
56 this.Name = "Form1";
57 this.Text = "Form1";
58 ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
59 this.ResumeLayout(false);
60
61 }
62
63 #endregion
64
65 private System.Windows.Forms.DataVisualization.Charting.Chart chart1;
66 }
67}
68
override void Dispose(bool disposing)
Clean up any resources being used.