PTMagic/Monitor/wwwroot/assets/pages/jquery.leads.init.js

54 lines
1.5 KiB
JavaScript
Raw Normal View History

2018-05-22 10:11:50 +02:00
/**
* Theme: Ubold Admin Template
* Author: Coderthemes
* Leads
*/
!function($) {
"use strict";
var LeadsCharts = function() {};
//creates Stacked chart
LeadsCharts.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',
resize: true, //defaulted to true
gridLineColor: '#2f3e47',
gridTextColor: '#98a6ad',
barColors: lineColors
});
},
LeadsCharts.prototype.init = function() {
//creating Stacked chart
var $stckedData = [
{ y: 'Mon', a: 45, b: 180 },
{ y: 'Tue', a: 75, b: 65 },
{ y: 'Wed', a: 100, b: 90 },
{ y: 'Thur', a: 75, b: 65 },
{ y: 'Fri', a: 100, b: 90 },
{ y: 'Sat', a: 75, b: 65 },
{ y: 'Sun', a: 50, b: 40 }
];
this.createStackedChart('morris-bar-stacked', $stckedData, 'y', ['a', 'b'], ['Series A', 'Series B'], ['#5d9cec', '#ebeff2']);
},
//init
$.LeadsCharts = new LeadsCharts, $.LeadsCharts.Constructor = LeadsCharts
}(window.jQuery),
//initializing
function($) {
"use strict";
$.LeadsCharts.init();
}(window.jQuery);