-
Notifications
You must be signed in to change notification settings - Fork 15
/
configure-labels.vala
93 lines (74 loc) · 2.98 KB
/
configure-labels.vala
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
public class Example : Gtk.ApplicationWindow {
public Example(Gtk.Application app) {
Object (application: app);
this.title = "LiveChart Demo";
// this.destroy.connect(Gtk.main_quit);
this.set_default_size(800, 350);
var heap = new LiveChart.Serie("HEAP", new LiveChart.SmoothLineArea());
heap.line.color = { 0.3f, 0.8f, 0.1f, 1.0f };
var rss = new LiveChart.Serie("RSS", new LiveChart.Line());
rss.line.color = { 0.8f, 0.1f, 0.1f, 1.0f };
rss.line.dash = LiveChart.Dash() { dashes = {5} };
rss.line.width = 4;
var config = new LiveChart.Config();
config.y_axis.unit = "MB";
config.x_axis.tick_length = 60;
config.x_axis.tick_interval = 10;
config.x_axis.lines.visible = false;
config.x_axis.labels.font.size = 8;
config.x_axis.labels.font.color = { 0f, 1f, 1f, 1f };
config.x_axis.labels.font.weight = Cairo.FontWeight.BOLD;
config.y_axis.labels.font.size = 15;
config.y_axis.labels.font.color = { 1f, 0f, 1f, 0.8f };
config.y_axis.labels.font.weight = Cairo.FontWeight.NORMAL;
config.y_axis.labels.font.slant = Cairo.FontSlant.ITALIC;
var chart = new LiveChart.Chart(config);
chart.vexpand = true;
chart.vexpand = true;
chart.legend.labels.font.size = 14;
chart.legend.labels.font.color = { 1f, 1f, 0f, 1f };
chart.legend.labels.font.weight = Cairo.FontWeight.BOLD;
chart.add_serie(heap);
chart.add_serie(rss);
double rss_value = 200.0;
Timeout.add(1000, () => {
if (Random.double_range(0.0, 1.0) > 0.13) {
var new_value = Random.double_range(-50, 50.0);
if (rss_value + new_value > 0) rss_value += new_value;
}
rss.add(rss_value);
return true;
});
var heap_value = 200.0;
heap.add(heap_value);
Timeout.add(2000, () => {
if (Random.double_range(0.0, 1.0) > 0.2) {
var new_value = Random.double_range(-100, 100.0);
if (heap_value + new_value > 0) heap_value += new_value;
}
heap.add(heap_value);
return true;
});
var export_button = new Gtk.Button.with_label("Export to PNG");
export_button.clicked.connect (() => {
try {
chart.to_png("export-labels.png");
} catch (Error e) {
GLib.error(e.message);
}
});
Gtk.Box box = new Gtk.Box(Gtk.Orientation.VERTICAL, 0);
box.append(export_button);
box.append(chart);
this.child = box;
}
}
static int main (string[] args) {
Gtk.init();
var app = new Gtk.Application ("com.github.live-chart", GLib.ApplicationFlags.FLAGS_NONE);
app.activate.connect (() => {
var view = new Example(app);
view.present();
});
return app.run (args);
}