105 lines
3.1 KiB
JavaScript
105 lines
3.1 KiB
JavaScript
|
|
/**
|
|
* Theme: Zircos Admin Template
|
|
* Author: Coderthemes
|
|
* Dashboard
|
|
*/
|
|
|
|
!function($) {
|
|
"use strict";
|
|
|
|
var Dashboard1 = function() {
|
|
this.$realData = []
|
|
};
|
|
|
|
//creates Bar chart
|
|
Dashboard1.prototype.createBarChart = function(element, data, xkey, ykeys, labels, lineColors) {
|
|
Morris.Bar({
|
|
element: element,
|
|
data: data,
|
|
xkey: xkey,
|
|
ykeys: ykeys,
|
|
labels: labels,
|
|
hideHover: 'auto',
|
|
resize: true, //defaulted to true
|
|
gridLineColor: '#eeeeee',
|
|
barSizeRatio: 0.2,
|
|
barColors: lineColors,
|
|
postUnits: 'k'
|
|
});
|
|
},
|
|
|
|
//creates line chart
|
|
Dashboard1.prototype.createLineChart = function(element, data, xkey, ykeys, labels, opacity, Pfillcolor, Pstockcolor, lineColors) {
|
|
Morris.Line({
|
|
element: element,
|
|
data: data,
|
|
xkey: xkey,
|
|
ykeys: ykeys,
|
|
labels: labels,
|
|
fillOpacity: opacity,
|
|
pointFillColors: Pfillcolor,
|
|
pointStrokeColors: Pstockcolor,
|
|
behaveLikeLine: true,
|
|
gridLineColor: '#eef0f2',
|
|
hideHover: 'auto',
|
|
resize: true, //defaulted to true
|
|
pointSize: 0,
|
|
lineColors: lineColors,
|
|
postUnits: 'k'
|
|
});
|
|
},
|
|
|
|
//creates Donut chart
|
|
Dashboard1.prototype.createDonutChart = function(element, data, colors) {
|
|
Morris.Donut({
|
|
element: element,
|
|
data: data,
|
|
resize: true, //defaulted to true
|
|
colors: colors
|
|
});
|
|
},
|
|
|
|
|
|
Dashboard1.prototype.init = function() {
|
|
|
|
//creating bar chart
|
|
var $barData = [
|
|
{ y: '01/16', a: 42 },
|
|
{ y: '02/16', a: 75 },
|
|
{ y: '03/16', a: 38 },
|
|
{ y: '04/16', a: 19 },
|
|
{ y: '05/16', a: 93 }
|
|
];
|
|
this.createBarChart('morris-bar-example', $barData, 'y', ['a'], ['Statistics'], ['#3bafda']);
|
|
|
|
//create line chart
|
|
var $data = [
|
|
{ y: '2008', a: 50, b: 0 },
|
|
{ y: '2009', a: 75, b: 50 },
|
|
{ y: '2010', a: 30, b: 80 },
|
|
{ y: '2011', a: 50, b: 50 },
|
|
{ y: '2012', a: 75, b: 10 },
|
|
{ y: '2013', a: 50, b: 40 },
|
|
{ y: '2014', a: 75, b: 50 },
|
|
{ y: '2015', a: 100, b: 70 }
|
|
];
|
|
this.createLineChart('morris-line-example', $data, 'y', ['a','b'], ['Series A','Series B'],['0.9'],['#ffffff'],['#999999'], ['#10c469','#188ae2']);
|
|
|
|
//creating donut chart
|
|
var $donutData = [
|
|
{label: "Download Sales", value: 12},
|
|
{label: "In-Store Sales", value: 30},
|
|
{label: "Mail-Order Sales", value: 20}
|
|
];
|
|
this.createDonutChart('morris-donut-example', $donutData, ['#3ac9d6', '#f5707a', "#4bd396"]);
|
|
},
|
|
//init
|
|
$.Dashboard1 = new Dashboard1, $.Dashboard1.Constructor = Dashboard1
|
|
}(window.jQuery),
|
|
|
|
//initializing
|
|
function($) {
|
|
"use strict";
|
|
$.Dashboard1.init();
|
|
}(window.jQuery); |