aboutsummaryrefslogtreecommitdiff
path: root/main_view.qml
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2016-01-17 17:03:19 +0100
committerSamuel Fadel <samuelfadel@gmail.com>2016-01-17 17:03:19 +0100
commit47bcc9b08a8473298d564cee495cd609909ddcbc (patch)
tree8766797aed704e72615b00d960bc1f2483127560 /main_view.qml
parentafb965a6127d363ef8d7e132e086fccfb3e8d504 (diff)
Added option to toggle the visibility of scatterplots.
Diffstat (limited to 'main_view.qml')
-rw-r--r--main_view.qml9
1 files changed, 9 insertions, 0 deletions
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