94 lines
3.2 KiB
JavaScript
94 lines
3.2 KiB
JavaScript
|
|
/**
|
|
* Theme: Ubold Admin Template
|
|
* Author: Coderthemes
|
|
* Dashboard 1
|
|
*/
|
|
|
|
!function($) {
|
|
"use strict";
|
|
|
|
var Dashboard1 = function() {
|
|
this.$realData = []
|
|
};
|
|
|
|
//creates Stacked chart
|
|
Dashboard1.prototype.createStackedChart = function(element, data, xkey, ykeys, labels, lineColors) {
|
|
Morris.Bar({
|
|
element: element,
|
|
data: data,
|
|
xkey: xkey,
|
|
ykeys: ykeys,
|
|
stacked: true,
|
|
labels: labels,
|
|
hideHover: 'auto',
|
|
barSizeRatio: 0.5,
|
|
resize: true, //defaulted to true
|
|
gridLineColor: '#2f3e47',
|
|
gridTextColor: '#98a6ad',
|
|
barColors: lineColors
|
|
});
|
|
},
|
|
|
|
//creates area chart with dotted
|
|
Dashboard1.prototype.createAreaChartDotted = function(element, pointSize, lineWidth, data, xkey, ykeys, labels, Pfillcolor, Pstockcolor, lineColors) {
|
|
Morris.Area({
|
|
element: element,
|
|
pointSize: 0,
|
|
lineWidth: 0,
|
|
data: data,
|
|
xkey: xkey,
|
|
ykeys: ykeys,
|
|
labels: labels,
|
|
hideHover: 'auto',
|
|
pointFillColors: Pfillcolor,
|
|
pointStrokeColors: Pstockcolor,
|
|
resize: true,
|
|
gridLineColor: '#2f3e47',
|
|
gridTextColor: '#98a6ad',
|
|
lineColors: lineColors
|
|
});
|
|
|
|
},
|
|
|
|
|
|
Dashboard1.prototype.init = function() {
|
|
|
|
//creating Stacked chart
|
|
var $stckedData = [
|
|
{ y: '2005', a: 45, b: 180, c: 100 },
|
|
{ y: '2006', a: 75, b: 65, c: 80 },
|
|
{ y: '2007', a: 100, b: 90, c: 56 },
|
|
{ y: '2008', a: 75, b: 65, c: 89 },
|
|
{ y: '2009', a: 100, b: 90, c: 120 },
|
|
{ y: '2010', a: 75, b: 65, c: 110 },
|
|
{ y: '2011', a: 50, b: 40, c: 85 },
|
|
{ y: '2012', a: 75, b: 65, c: 52 },
|
|
{ y: '2013', a: 50, b: 40, c: 77 },
|
|
{ y: '2014', a: 75, b: 65, c: 90 },
|
|
{ y: '2015', a: 100, b: 90, c: 130 }
|
|
];
|
|
this.createStackedChart('morris-bar-stacked', $stckedData, 'y', ['a', 'b', 'c'], ['Desktops', 'Tablets', 'Mobiles'], ['#2dc4b9', '#5d9cec', '#505e6b']);
|
|
|
|
//creating area chart
|
|
var $areaDotData = [
|
|
{ y: '2009', a: 10, b: 20, c:30 },
|
|
{ y: '2010', a: 75, b: 65, c:30 },
|
|
{ y: '2011', a: 50, b: 40, c:30 },
|
|
{ y: '2012', a: 75, b: 65, c:30 },
|
|
{ y: '2013', a: 50, b: 40, c:30 },
|
|
{ y: '2014', a: 75, b: 65, c:30 },
|
|
{ y: '2015', a: 90, b: 60, c:30 }
|
|
];
|
|
this.createAreaChartDotted('morris-area-with-dotted', 0, 0, $areaDotData, 'y', ['a', 'b', 'c'], ['Desktops ', 'Tablets ', 'Mobiles '],['#ffffff'],['#999999'], ['#2dc4b9', '#5d9cec','#505e6b']);
|
|
|
|
},
|
|
//init
|
|
$.Dashboard1 = new Dashboard1, $.Dashboard1.Constructor = Dashboard1
|
|
}(window.jQuery),
|
|
|
|
//initializing
|
|
function($) {
|
|
"use strict";
|
|
$.Dashboard1.init();
|
|
}(window.jQuery); |