-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRealTimeChart.Designer.cs
More file actions
78 lines (73 loc) · 3.35 KB
/
Copy pathRealTimeChart.Designer.cs
File metadata and controls
78 lines (73 loc) · 3.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
namespace Estes_GSW
{
partial class RealTimeChart
{
/// <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 Component 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.Legend legend3 = new System.Windows.Forms.DataVisualization.Charting.Legend();
System.Windows.Forms.DataVisualization.Charting.Title title3 = new System.Windows.Forms.DataVisualization.Charting.Title();
this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
this.SuspendLayout();
//
// chart1
//
this.chart1.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.chart1.BackColor = System.Drawing.SystemColors.WindowText;
legend3.BackColor = System.Drawing.Color.Black;
legend3.ForeColor = System.Drawing.Color.White;
legend3.Name = "Legend1";
legend3.TitleBackColor = System.Drawing.Color.Black;
legend3.TitleForeColor = System.Drawing.Color.White;
this.chart1.Legends.Add(legend3);
this.chart1.Location = new System.Drawing.Point(0, 0);
this.chart1.Margin = new System.Windows.Forms.Padding(0);
this.chart1.Name = "chart1";
this.chart1.Size = new System.Drawing.Size(368, 136);
this.chart1.TabIndex = 0;
this.chart1.Text = "chart1";
title3.Alignment = System.Drawing.ContentAlignment.TopCenter;
title3.ForeColor = System.Drawing.Color.White;
title3.Name = "Title1";
title3.Text = "Real Time Graph";
this.chart1.Titles.Add(title3);
//
// RealTimeChart
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Gainsboro;
this.Controls.Add(this.chart1);
this.Margin = new System.Windows.Forms.Padding(0);
this.Name = "RealTimeChart";
this.Size = new System.Drawing.Size(368, 136);
((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataVisualization.Charting.Chart chart1;
}
}