-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathFormDashboard.cs
125 lines (98 loc) · 3.29 KB
/
FormDashboard.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Sample_OOP_Pro.Forms
{
public partial class FormDashboard : Form
{
Config config = new Config();
public_vars vars = new public_vars();
public FormDashboard()
{
InitializeComponent();
}
private void FormDashboard_Load(object sender, EventArgs e)
{
loadChartSample_Static();
loadChart_from_DB();
loadChartSample_Static_line();
}
void loadChartSample_Static()
{
/*
* SERIES MALE
*/
// Array Legend
string[] X = { "BSIT", "BSED" };
// Add item to array Legend
X = X.Concat(new string[] { "AB" }).ToArray();
// new X is "BSIT", "BSED", "AB"
// Array Value
int[] Y = { 12, 14 };
// Add item to array
Y = Y.Concat(new int[] { 2 }).ToArray();
// Y = 12, 14, 2
// Pass to Chart Methods = Male Series
config.visualizer.chart(chartRight, "Male", X, Y, "Column");
//_________________________________________________________________________________
/*
* NEW SERIES FEMALE
*/
// new
string[] x2 = { "BSIT", "BSED", "AB" };
int[] y2 = { 6, 0, 16 };
// Female
config.visualizer.chart(chartRight, "Female", x2, y2, "Column");
}
void loadChart_from_DB()
{
/*
* SERIES SEX
*/
string[] X = { };
int[] Y = { };
var reader = config.db.select("select count(*) as c, sex from users group by sex");
while (reader.Read())
{
X = X.Concat(new string[] { reader["sex"].ToString() }).ToArray();
Y = Y.Concat(new int[] { Int32.Parse(reader["c"].ToString()) }).ToArray();
}
// Chart Methods
// ChartSeries = "Sex"; ChartType = "Column";
config.visualizer.chart(chartLeft, "Sex", X, Y, "Column");
}
void loadChartSample_Static_line()
{
/*
* SERIES MALE
*/
// Array Legend
string[] X = { "BSIT", "BSED" };
// Add item to array Legend
X = X.Concat(new string[] { "AB" }).ToArray();
// new X is "BSIT", "BSED", "AB"
// Array Value
int[] Y = { 12, 14 };
// Add item to array
Y = Y.Concat(new int[] { 2 }).ToArray();
// Y = 12, 14, 2
// Pass to Chart Methods = Male Series
config.visualizer.chart(chartTop, "Male", X, Y, "Line");
//_________________________________________________________________________________
/*
* NEW SERIES FEMALE
*/
// new
string[] x2 = { "BSIT", "BSED", "AB" };
int[] y2 = { 6, 0, 16 };
// Female
config.visualizer.chart(chartTop, "Female", x2, y2, "Line");
}
}
}