aboutsummaryrefslogtreecommitdiff
path: root/main_view.qml
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2016-01-07 15:10:20 +0100
committerSamuel Fadel <samuelfadel@gmail.com>2016-01-07 15:10:20 +0100
commit7676a38ea8a06d3d31228cb7eb1be00f90de46d3 (patch)
tree3082a0a466938f1a78c8738e30a7f37731717e3f /main_view.qml
parentd17979519423b8afb67d9178820a458bf6a5474a (diff)
Added a bar chart.
* HistoryGraph replaced by BarChart * HistoryGraph not removed from code, might be useful in the future
Diffstat (limited to 'main_view.qml')
-rw-r--r--main_view.qml12
1 files changed, 9 insertions, 3 deletions
diff --git a/main_view.qml b/main_view.qml
index a9c1c18..1be06d0 100644
--- a/main_view.qml
+++ b/main_view.qml
@@ -107,11 +107,17 @@ ApplicationWindow {
border.width: 1
border.color: "#cccccc"
- HistoryGraph {
- id: history
- objectName: "history"
+ BarChart {
+ id: barChart
+ objectName: "barChart"
anchors.fill: parent
}
+
+ //HistoryGraph {
+ // id: history
+ // objectName: "history"
+ // anchors.fill: parent
+ //}
}
}