Skip to content
Snippets Groups Projects
Commit 1847b90c authored by Krzysztof Piasecki's avatar Krzysztof Piasecki
Browse files

Add missing morris-line-chart example

parent 61131dfe
No related branches found
No related tags found
No related merge requests found
......@@ -114,4 +114,20 @@ $(function() {
resize: true
});
Morris.Line({
element: 'morris-line-chart',
data: [
{ y: '2006', a: 100, b: 90 },
{ y: '2007', a: 75, b: 65 },
{ y: '2008', a: 50, b: 40 },
{ y: '2009', a: 75, b: 65 },
{ y: '2010', a: 50, b: 40 },
{ y: '2011', a: 75, b: 65 },
{ y: '2012', a: 100, b: 90 }
],
xkey: 'y',
ykeys: ['a', 'b'],
labels: ['Series A', 'Series B']
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment