From 6fcfb7c04d32e1c8b26a312295bf7ac3ec2d2ad7 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 13 Jul 2018 19:06:45 +0200 Subject: Fixed many permissions and began admin interface --- .../morris.js/examples/stacked_bars.html | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 public/bower_components/morris.js/examples/stacked_bars.html (limited to 'public/bower_components/morris.js/examples/stacked_bars.html') diff --git a/public/bower_components/morris.js/examples/stacked_bars.html b/public/bower_components/morris.js/examples/stacked_bars.html new file mode 100644 index 0000000..81568e6 --- /dev/null +++ b/public/bower_components/morris.js/examples/stacked_bars.html @@ -0,0 +1,31 @@ + + + + + + + + + + + + +

Stacked Bars chart

+
+
+// Use Morris.Bar
+Morris.Bar({
+  element: 'graph',
+  data: [
+    {x: '2011 Q1', y: 3, z: 2, a: 3},
+    {x: '2011 Q2', y: 2, z: null, a: 1},
+    {x: '2011 Q3', y: 0, z: 2, a: 4},
+    {x: '2011 Q4', y: 2, z: 4, a: 3}
+  ],
+  xkey: 'x',
+  ykeys: ['y', 'z', 'a'],
+  labels: ['Y', 'Z', 'A'],
+  stacked: true
+});
+
+ -- cgit v1.2.3