56 lines
1.3 KiB
JavaScript
Vendored
56 lines
1.3 KiB
JavaScript
Vendored
$(function() {
|
|
"use strict";
|
|
// Dashboard 1 Morris-chart
|
|
Morris.Area({
|
|
element: 'morris-area-chart',
|
|
data: [{
|
|
period: '2010',
|
|
iphone: 0,
|
|
ipad: 0,
|
|
itouch: 0
|
|
}, {
|
|
period: '2011',
|
|
iphone: 130,
|
|
ipad: 100,
|
|
itouch: 80
|
|
}, {
|
|
period: '2012',
|
|
iphone: 80,
|
|
ipad: 60,
|
|
itouch: 70
|
|
}, {
|
|
period: '2013',
|
|
iphone: 70,
|
|
ipad: 200,
|
|
itouch: 140
|
|
}, {
|
|
period: '2014',
|
|
iphone: 180,
|
|
ipad: 150,
|
|
itouch: 140
|
|
}, {
|
|
period: '2015',
|
|
iphone: 105,
|
|
ipad: 100,
|
|
itouch: 80
|
|
}, {
|
|
period: '2016',
|
|
iphone: 250,
|
|
ipad: 150,
|
|
itouch: 200
|
|
}],
|
|
xkey: 'period',
|
|
ykeys: ['iphone', 'ipad'],
|
|
labels: ['iPhone', 'iPad'],
|
|
pointSize: 0,
|
|
fillOpacity: 0,
|
|
pointStrokeColors: ['#f62d51', '#7460ee', '#009efb'],
|
|
behaveLikeLine: true,
|
|
gridLineColor: '#f6f6f6',
|
|
lineWidth: 1,
|
|
hideHover: 'auto',
|
|
lineColors: ['#009efb', '#7460ee', '#009efb'],
|
|
resize: true
|
|
});
|
|
|
|
}); |