From 47bcc9b08a8473298d564cee495cd609909ddcbc Mon Sep 17 00:00:00 2001 From: Samuel Fadel Date: Sun, 17 Jan 2016 17:03:19 +0100 Subject: Added option to toggle the visibility of scatterplots. --- main_view.qml | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'main_view.qml') diff --git a/main_view.qml b/main_view.qml index 51f29d5..09bcdd4 100644 --- a/main_view.qml +++ b/main_view.qml @@ -198,6 +198,15 @@ ApplicationWindow { GridLayout { columns: 2 + Label { text: "Display:" } + CheckBox { + checked: true + onClicked: { + cpPlot.visible = this.checked + plot.visible = this.checked + } + } + Label { text: "Colors:" } ComboBox { id: colormapCombo -- cgit v1.2.3