forked from Alkazuz/AdvancedBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStatistics.Designer.cs
146 lines (140 loc) · 7.01 KB
/
Statistics.Designer.cs
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
namespace AdvancedBot
{
partial class Statistics
{
/// <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()
{
this.components = new System.ComponentModel.Container();
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();
System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
System.Windows.Forms.DataVisualization.Charting.Series series3 = new System.Windows.Forms.DataVisualization.Charting.Series();
this.lblInfo = new System.Windows.Forms.Label();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.ioSpeedChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
this.groupBox1 = new System.Windows.Forms.GroupBox();
((System.ComponentModel.ISupportInitialize)(this.ioSpeedChart)).BeginInit();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// lblInfo
//
this.lblInfo.AutoSize = true;
this.lblInfo.Location = new System.Drawing.Point(12, 9);
this.lblInfo.Name = "lblInfo";
this.lblInfo.Size = new System.Drawing.Size(0, 13);
this.lblInfo.TabIndex = 0;
//
// timer1
//
this.timer1.Enabled = true;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// ioSpeedChart
//
this.ioSpeedChart.BackColor = System.Drawing.SystemColors.Control;
chartArea1.Area3DStyle.LightStyle = System.Windows.Forms.DataVisualization.Charting.LightStyle.Realistic;
chartArea1.Area3DStyle.PointDepth = 50;
chartArea1.Area3DStyle.WallWidth = 4;
chartArea1.Name = "ChartArea1";
chartArea1.Position.Auto = false;
chartArea1.Position.Height = 100F;
chartArea1.Position.Width = 100F;
this.ioSpeedChart.ChartAreas.Add(chartArea1);
this.ioSpeedChart.Dock = System.Windows.Forms.DockStyle.Fill;
legend1.BackColor = System.Drawing.Color.Transparent;
legend1.BorderWidth = 0;
legend1.DockedToChartArea = "ChartArea1";
legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
legend1.Font = new System.Drawing.Font("Microsoft Sans Serif", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
legend1.IsTextAutoFit = false;
legend1.LegendStyle = System.Windows.Forms.DataVisualization.Charting.LegendStyle.Row;
legend1.MaximumAutoSize = 10F;
legend1.Name = "Legend1";
legend1.TextWrapThreshold = 10;
this.ioSpeedChart.Legends.Add(legend1);
this.ioSpeedChart.Location = new System.Drawing.Point(3, 16);
this.ioSpeedChart.Margin = new System.Windows.Forms.Padding(0);
this.ioSpeedChart.Name = "ioSpeedChart";
series1.ChartArea = "ChartArea1";
series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
series1.Color = System.Drawing.Color.DodgerBlue;
series1.Legend = "Legend1";
series1.LegendText = "I";
series1.Name = "input";
series2.ChartArea = "ChartArea1";
series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
series2.Color = System.Drawing.Color.Red;
series2.Legend = "Legend1";
series2.LegendText = "O";
series2.Name = "output";
series3.ChartArea = "ChartArea1";
series3.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
series3.Color = System.Drawing.Color.Green;
series3.Legend = "Legend1";
series3.LegendText = "% CPU";
series3.Name = "cpu";
this.ioSpeedChart.Series.Add(series1);
this.ioSpeedChart.Series.Add(series2);
this.ioSpeedChart.Series.Add(series3);
this.ioSpeedChart.Size = new System.Drawing.Size(264, 98);
this.ioSpeedChart.TabIndex = 1;
this.ioSpeedChart.Text = "chart1";
//
// groupBox1
//
this.groupBox1.Controls.Add(this.ioSpeedChart);
this.groupBox1.Location = new System.Drawing.Point(15, 118);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(270, 117);
this.groupBox1.TabIndex = 2;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Histórico";
//
// Statistics
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(297, 247);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.lblInfo);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.MaximizeBox = false;
this.Name = "Statistics";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Estatísticas";
this.Load += new System.EventHandler(this.Statistics_Load);
((System.ComponentModel.ISupportInitialize)(this.ioSpeedChart)).EndInit();
this.groupBox1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblInfo;
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.DataVisualization.Charting.Chart ioSpeedChart;
private System.Windows.Forms.GroupBox groupBox1;
}
}