-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStatistics.Designer.cs
More file actions
142 lines (137 loc) · 5.63 KB
/
Statistics.Designer.cs
File metadata and controls
142 lines (137 loc) · 5.63 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
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
namespace ConstHard
{
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()
{
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.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
System.Windows.Forms.DataVisualization.Charting.Legend legend2 = new System.Windows.Forms.DataVisualization.Charting.Legend();
groupBox1 = new GroupBox();
userstat = new Button();
chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
groupBox2 = new GroupBox();
taskstatus = new Button();
chart2 = new System.Windows.Forms.DataVisualization.Charting.Chart();
groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)chart1).BeginInit();
groupBox2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)chart2).BeginInit();
SuspendLayout();
//
// groupBox1
//
groupBox1.BackColor = Color.FromArgb(215, 192, 174);
groupBox1.Controls.Add(userstat);
groupBox1.Controls.Add(chart1);
groupBox1.Location = new Point(12, 44);
groupBox1.Name = "groupBox1";
groupBox1.Size = new Size(488, 446);
groupBox1.TabIndex = 0;
groupBox1.TabStop = false;
groupBox1.Text = "Number of finalized tasks/user";
//
// userstat
//
userstat.Location = new Point(388, 144);
userstat.Name = "userstat";
userstat.Size = new Size(94, 29);
userstat.TabIndex = 1;
userstat.Text = "User stats";
userstat.UseVisualStyleBackColor = true;
userstat.Click += userstat_Click;
//
// chart1
//
chartArea1.Name = "ChartArea1";
chart1.ChartAreas.Add(chartArea1);
legend1.Name = "Legend1";
chart1.Legends.Add(legend1);
chart1.Location = new Point(6, 26);
chart1.Name = "chart1";
chart1.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Light;
chart1.Size = new Size(369, 414);
chart1.TabIndex = 0;
chart1.Text = "chart1";
//
// groupBox2
//
groupBox2.BackColor = Color.FromArgb(215, 192, 174);
groupBox2.Controls.Add(taskstatus);
groupBox2.Controls.Add(chart2);
groupBox2.Location = new Point(594, 44);
groupBox2.Name = "groupBox2";
groupBox2.Size = new Size(551, 446);
groupBox2.TabIndex = 1;
groupBox2.TabStop = false;
groupBox2.Text = "Tasks by status";
//
// taskstatus
//
taskstatus.Location = new Point(441, 144);
taskstatus.Name = "taskstatus";
taskstatus.Size = new Size(94, 29);
taskstatus.TabIndex = 1;
taskstatus.Text = "Task status";
taskstatus.UseVisualStyleBackColor = true;
taskstatus.Click += taskstatus_Click;
//
// chart2
//
chartArea2.Name = "ChartArea1";
chart2.ChartAreas.Add(chartArea2);
legend2.Name = "Legend1";
chart2.Legends.Add(legend2);
chart2.Location = new Point(15, 26);
chart2.Name = "chart2";
chart2.Size = new Size(405, 414);
chart2.TabIndex = 0;
chart2.Text = "chart2";
//
// Statistics
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.FromArgb(252, 239, 203);
ClientSize = new Size(1178, 545);
Controls.Add(groupBox2);
Controls.Add(groupBox1);
Name = "Statistics";
Text = "Statistics";
groupBox1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)chart1).EndInit();
groupBox2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)chart2).EndInit();
ResumeLayout(false);
}
#endregion
private GroupBox groupBox1;
private GroupBox groupBox2;
private System.Windows.Forms.DataVisualization.Charting.Chart chart1;
private System.Windows.Forms.DataVisualization.Charting.Chart chart2;
private Button userstat;
private Button taskstatus;
}
}