diff options
author | Samuel Fadel <samuelfadel@gmail.com> | 2016-01-17 17:03:19 +0100 |
---|---|---|
committer | Samuel Fadel <samuelfadel@gmail.com> | 2016-01-17 17:03:19 +0100 |
commit | 47bcc9b08a8473298d564cee495cd609909ddcbc (patch) | |
tree | 8766797aed704e72615b00d960bc1f2483127560 | |
parent | afb965a6127d363ef8d7e132e086fccfb3e8d504 (diff) |
Added option to toggle the visibility of scatterplots.
-rw-r--r-- | main_view.qml | 9 |
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 |