From 52e7e4f029b0db51fa26c9b8f1e63d22d4084530 Mon Sep 17 00:00:00 2001 From: Kolan Sh Date: Fri, 27 Oct 2017 18:51:45 +0300 Subject: [PATCH] Date+Time button added. --- test/ChartTest.vala | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/test/ChartTest.vala b/test/ChartTest.vala index 9a3e203..11c88a7 100644 --- a/test/ChartTest.vala +++ b/test/ChartTest.vala @@ -225,6 +225,7 @@ int main (string[] args) { var button5 = new Button.with_label("rm Axis Titles"); var button6 = new Button.with_label("Dates only"); var button7 = new Button.with_label("Times only"); + var button8 = new Button.with_label("Date+Time"); plot_chart1 (chart1); plot_chart2 (chart2); @@ -304,8 +305,17 @@ int main (string[] args) { button7.clicked.connect (() => { for (var i = 0; i < chart.series.length; ++i) { var s = chart.series[i]; - s.axis_x.time_format = ""; - s.axis_x.date_format = "%H:%M:%S"; + s.axis_x.date_format = ""; + s.axis_x.time_format = "%H:%M:%S"; + } + da.queue_draw_area(0, 0, da.get_allocated_width(), da.get_allocated_height()); + }); + + button8.clicked.connect (() => { + for (var i = 0; i < chart.series.length; ++i) { + var s = chart.series[i]; + s.axis_x.date_format = "%Y.%m.%d"; + s.axis_x.time_format = "%H:%M:%S"; } da.queue_draw_area(0, 0, da.get_allocated_width(), da.get_allocated_height()); }); @@ -447,6 +457,7 @@ int main (string[] args) { vbox2.pack_start(button5, false, false, 0); vbox2.pack_start(button6, false, false, 0); vbox2.pack_start(button7, false, false, 0); + vbox2.pack_start(button8, false, false, 0); vbox2.pack_start(radio_button1, false, false, 0); vbox2.pack_start(radio_button2, false, false, 0); vbox2.pack_start(radio_button3, false, false, 0);