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/area-as-line.html | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 public/bower_components/morris.js/examples/area-as-line.html (limited to 'public/bower_components/morris.js/examples/area-as-line.html') diff --git a/public/bower_components/morris.js/examples/area-as-line.html b/public/bower_components/morris.js/examples/area-as-line.html new file mode 100644 index 0000000..1e198d2 --- /dev/null +++ b/public/bower_components/morris.js/examples/area-as-line.html @@ -0,0 +1,31 @@ + + + + + + + + + + + + +

Area charts behaving like line charts

+
+
+// Use Morris.Area instead of Morris.Line
+Morris.Area({
+  element: 'graph',
+  behaveLikeLine: true,
+  data: [
+    {x: '2011 Q1', y: 3, z: 3},
+    {x: '2011 Q2', y: 2, z: 1},
+    {x: '2011 Q3', y: 2, z: 4},
+    {x: '2011 Q4', y: 3, z: 3}
+  ],
+  xkey: 'x',
+  ykeys: ['y', 'z'],
+  labels: ['Y', 'Z']
+});
+
+ -- cgit v1.2.3