PNG IHDR x sBIT|d pHYs + tEXtSoftware www.inkscape.org< ,tEXtComment
!(function (NioApp, $) {
"use strict";
// Vector Map
var worldMap = {
map: 'world_en',
data : {"af":"16.63","al":"11.58","dz":"158.97","ao":"85.81","ag":"1.1","ar":"351.02","am":"8.83","au":"1219.72","at":"366.26","az":"52.17","bs":"7.54","bh":"21.73","bd":"105.4","bb":"3.96","by":"52.89","be":"461.33","bz":"1.43","bj":"6.49","bt":"1.4","bo":"19.18","ba":"16.2","bw":"12.5","br":"2023.53","bn":"11.96","bg":"44.84","bf":"8.67","bi":"1.47","kh":"11.36","cm":"21.88","ca":"1563.66","cv":"1.57","cf":"2.11","td":"7.59","cl":"199.18","cn":"5745.13","co":"283.11","km":"0.56","cd":"12.6","cg":"11.88","cr":"35.02","ci":"22.38","hr":"59.92","cy":"22.75","cz":"195.23","dk":"304.56","dj":"1.14","dm":"0.38","do":"50.87","ec":"61.49","eg":"216.83","sv":"21.8","gq":"14.55","er":"2.25","ee":"19.22","et":"30.94","fj":"3.15","fi":"231.98","fr":"2555.44","ga":"12.56","gm":"1.04","ge":"11.23","de":"3305.9","gh":"18.06","gr":"305.01","gd":"0.65","gt":"40.77","gn":"4.34","gw":"0.83","gy":"2.2","ht":"6.5","hn":"15.34","hk":"226.49","hu":"132.28","is":"12.77","in":"1430.02","id":"695.06","ir":"337.9","iq":"84.14","ie":"204.14","il":"201.25","it":"2036.69","jm":"13.74","jp":"5390.9","jo":"27.13","kz":"129.76","ke":"32.42","ki":"0.15","kr":"986.26","undefined":"5.73","kw":"117.32","kg":"4.44","la":"6.34","lv":"23.39","lb":"39.15","ls":"1.8","lr":"0.98","ly":"77.91","lt":"35.73","lu":"52.43","mk":"9.58","mg":"8.33","mw":"5.04","my":"218.95","mv":"1.43","ml":"9.08","mt":"7.8","mr":"3.49","mu":"9.43","mx":"1004.04","md":"5.36","mn":"5.81","me":"3.88","ma":"91.7","mz":"10.21","mm":"35.65","na":"11.45","np":"15.11","nl":"770.31","nz":"138","ni":"6.38","ne":"5.6","ng":"206.66","no":"413.51","om":"53.78","pk":"174.79","pa":"27.2","pg":"8.81","py":"17.17","pe":"153.55","ph":"189.06","pl":"438.88","pt":"223.7","qa":"126.52","ro":"158.39","ru":"1476.91","rw":"5.69","ws":"0.55","st":"0.19","sa":"434.44","sn":"12.66","rs":"38.92","sc":"0.92","sl":"1.9","sg":"217.38","sk":"86.26","si":"46.44","sb":"0.67","za":"354.41","es":"1374.78","lk":"48.24","kn":"0.56","lc":"1","vc":"0.58","sd":"65.93","sr":"3.3","sz":"3.17","se":"444.59","ch":"522.44","sy":"59.63","tw":"426.98","tj":"5.58","tz":"22.43","th":"312.61","tl":"0.62","tg":"3.07","to":"0.3","tt":"21.2","tn":"43.86","tr":"729.05","tm":0,"ug":"17.12","ua":"136.56","ae":"239.65","gb":"2258.57","us":"14624.18","uy":"40.71","uz":"37.72","vu":"0.72","ve":"285.21","vn":"101.99","ye":"30.02","zm":"15.69","zw":"5.57"}
};
function jqvmap_init () {
var elm = '.vector-map';
if($(elm).exists() && typeof($.fn.vectorMap) === 'function') {
$(elm).each(function(){
var $self = $(this), _self_id = $self.attr('id'), map_data = eval(_self_id);
$self.vectorMap({
map: map_data.map,
backgroundColor: 'transparent',
borderColor: '#dee6ed',
borderOpacity: 1,
borderWidth: 1,
color: '#ccd7e2',
enableZoom: false,
hoverColor: '#6baafe',
hoverOpacity: null,
normalizeFunction: 'linear',
scaleColors: ['#ccd7e2', '#3a8dfe'],
selectedColor: '#0971fe',
showTooltip: true,
values: map_data.data,
onLabelShow: function(event, label, code)
{
var mapData = JQVMap.maps, what = Object.keys(mapData)[0], name = mapData[what].paths[code]['name'];
label.html(name + ' - ' + (map_data.data[code] || 0));
}
});
});
}
};
NioApp.coms.docReady.push(jqvmap_init);
// Charts
var deviceStatusData = {
labels : ["Desktop", "Mobile", "Tablet"],
dataUnit : 'People',
legend: false,
datasets : [{
borderColor : "#fff",
background : ["#6baafe","#b8acff","#7de1f8"],
data: [84.5, 14.2, 1.3]
}]
};
var TrafficChannelDoughnutData = {
labels : ["Organic Search", "Social Media", "Referrals", "Others"],
dataUnit : 'People',
legend: false,
datasets : [{
borderColor : "#fff",
background : ["#3a8dfe","#b8acff","#ffa9ce","#f9db7b"],
data: [4305, 859, 482, 138]
}]
};
function analyticsDoughnut(selector, set_data){
var $selector = (selector) ? $(selector) : $('.analytics-doughnut');
$selector.each(function(){
var $self = $(this), _self_id = $self.attr('id'), _get_data = (typeof set_data === 'undefined') ? eval(_self_id) : set_data;
var selectCanvas = document.getElementById(_self_id).getContext("2d");
var chart_data = [];
for (var i = 0; i < _get_data.datasets.length; i++) {
chart_data.push({
backgroundColor: _get_data.datasets[i].background,
borderWidth:2,
borderColor: _get_data.datasets[i].borderColor,
hoverBorderColor: _get_data.datasets[i].borderColor,
data: _get_data.datasets[i].data,
});
}
var chart = new Chart(selectCanvas, {
type: 'doughnut',
data: {
labels: _get_data.labels,
datasets: chart_data,
},
options: {
legend: {
display: (_get_data.legend) ? _get_data.legend : false,
rtl: NioApp.State.isRTL,
labels: {
boxWidth:12,
padding:20,
fontColor: '#6783b8',
}
},
rotation: -1.5,
cutoutPercentage:70,
maintainAspectRatio: false,
tooltips: {
enabled: true,
rtl: NioApp.State.isRTL,
callbacks: {
title: function(tooltipItem, data) {
return data['labels'][tooltipItem[0]['index']];
},
label: function(tooltipItem, data) {
return data.datasets[tooltipItem.datasetIndex]['data'][tooltipItem['index']] + ' ' + _get_data.dataUnit;
}
},
backgroundColor: '#fff',
borderColor:'#eff6ff',
borderWidth:2,
titleFontSize: 13,
titleFontColor: '#6783b8',
titleMarginBottom: 6,
bodyFontColor: '#9eaecf',
bodyFontSize: 12,
bodySpacing:4,
yPadding: 10,
xPadding: 10,
footerMarginTop: 0,
displayColors: false
},
}
});
})
}
// init chart
NioApp.coms.docReady.push(function(){ analyticsDoughnut(); });
var OrganicSearchData = {
labels : ["01 Jan", "02 Jan", "03 Jan", "04 Jan", "05 Jan", "06 Jan", "07 Jan", "08 Jan", "09 Jan", "10 Jan", "11 Jan", "12 Jan"],
dataUnit : 'People',
lineTension : .1,
datasets : [{
label : "Organic Search",
color : "#3a8dfe",
background : NioApp.hexRGB('#3a8dfe',.25),
data: [110, 80, 125, 65, 95, 75, 90, 110, 80, 125, 70, 95]
}]
};
var SocialMediaData = {
labels : ["01 Jan", "02 Jan", "03 Jan", "04 Jan", "05 Jan", "06 Jan", "07 Jan", "08 Jan", "09 Jan", "10 Jan", "11 Jan", "12 Jan"],
dataUnit : 'People',
lineTension : .1,
datasets : [{
label : "Social Media",
color : "#b8acff",
background : NioApp.hexRGB('#b8acff',.25),
data: [110, 80, 125, 65, 95, 75, 90, 110, 80, 125, 70, 95]
}]
};
var ReferralsData = {
labels : ["01 Jan", "02 Jan", "03 Jan", "04 Jan", "05 Jan", "06 Jan", "07 Jan", "08 Jan", "09 Jan", "10 Jan", "11 Jan", "12 Jan"],
dataUnit : 'People',
lineTension : .1,
datasets : [{
label : "Referrals",
color : "#ffa9ce",
background : NioApp.hexRGB('#ffa9ce',.25),
data: [110, 80, 125, 65, 95, 75, 90, 110, 80, 125, 70, 95]
}]
};
var OthersData = {
labels : ["01 Jan", "02 Jan", "03 Jan", "04 Jan", "05 Jan", "06 Jan", "07 Jan", "08 Jan", "09 Jan", "10 Jan", "11 Jan", "12 Jan"],
dataUnit : 'People',
lineTension : .1,
datasets : [{
label : "Others",
color : "#f9db7b",
background : NioApp.hexRGB('#f9db7b',.25),
data: [110, 80, 125, 65, 95, 75, 90, 110, 80, 125, 70, 95]
}]
};
var BounceRateData = {
labels : ["01 Jan", "02 Jan", "03 Jan", "04 Jan", "05 Jan", "06 Jan", "07 Jan", "08 Jan", "09 Jan", "10 Jan", "11 Jan", "12 Jan"],
dataUnit : 'People',
lineTension : .1,
datasets : [{
label : "Bounce Rate",
color : "#3a8dfe",
background : NioApp.hexRGB('#3a8dfe',.25),
data: [110, 80, 125, 65, 95, 75, 90, 110, 80, 125, 70, 95]
}]
};
var PageviewsData = {
labels : ["01 Jan", "02 Jan", "03 Jan", "04 Jan", "05 Jan", "06 Jan", "07 Jan", "08 Jan", "09 Jan", "10 Jan", "11 Jan", "12 Jan"],
dataUnit : 'People',
lineTension : .1,
datasets : [{
label : "Pageviews",
color : "#9a89ff",
background : NioApp.hexRGB('#9a89ff',.25),
data: [110, 80, 125, 65, 95, 75, 90, 110, 80, 125, 70, 95]
}]
};
var NewUsersData = {
labels : ["01 Jan", "02 Jan", "03 Jan", "04 Jan", "05 Jan", "06 Jan", "07 Jan", "08 Jan", "09 Jan", "10 Jan", "11 Jan", "12 Jan"],
dataUnit : 'People',
lineTension : .1,
datasets : [{
label : "New Users",
color : "#3a8dfe",
background : NioApp.hexRGB('#3a8dfe',.25),
data: [110, 80, 125, 65, 95, 75, 90, 110, 80, 125, 70, 95]
}]
};
var TimeOnSiteData = {
labels : ["01 Jan", "02 Jan", "03 Jan", "04 Jan", "05 Jan", "06 Jan", "07 Jan", "08 Jan", "09 Jan", "10 Jan", "11 Jan", "12 Jan"],
dataUnit : 'Hours',
lineTension : .1,
datasets : [{
label : "Time on Site",
color : "#9a89ff",
background : NioApp.hexRGB('#9a89ff',.25),
data: [110, 80, 125, 65, 95, 75, 90, 110, 80, 125, 70, 95]
}]
};
function analyticsLineSmall(selector, set_data){
var $selector = (selector) ? $(selector) : $('.analytics-line-small');
$selector.each(function(){
var $self = $(this), _self_id = $self.attr('id'), _get_data = (typeof set_data === 'undefined') ? eval(_self_id) : set_data;
var selectCanvas = document.getElementById(_self_id).getContext("2d");
var chart_data = [];
for (var i = 0; i < _get_data.datasets.length; i++) {
chart_data.push({
label: _get_data.datasets[i].label,
tension:_get_data.lineTension,
backgroundColor: _get_data.datasets[i].background,
borderWidth:2,
borderColor: _get_data.datasets[i].color,
pointBorderColor: 'transparent',
pointBackgroundColor: 'transparent',
pointHoverBackgroundColor: "#fff",
pointHoverBorderColor: _get_data.datasets[i].color,
pointBorderWidth: 2,
pointHoverRadius: 4,
pointHoverBorderWidth: 2,
pointRadius: 4,
pointHitRadius: 4,
data: _get_data.datasets[i].data,
});
}
var chart = new Chart(selectCanvas, {
type: 'line',
data: {
labels: _get_data.labels,
datasets: chart_data,
},
options: {
legend: {
display: (_get_data.legend) ? _get_data.legend : false,
rtl: NioApp.State.isRTL,
labels: {
boxWidth:12,
padding:20,
fontColor: '#6783b8',
}
},
maintainAspectRatio: false,
tooltips: {
enabled: true,
rtl: NioApp.State.isRTL,
callbacks: {
title: function(tooltipItem, data) {
return false; //data['labels'][tooltipItem[0]['index']];
},
label: function(tooltipItem, data) {
return data.datasets[tooltipItem.datasetIndex]['data'][tooltipItem['index']];
}
},
backgroundColor: '#eff6ff',
titleFontSize: 9,
titleFontColor: '#6783b8',
titleMarginBottom: 6,
bodyFontColor: '#9eaecf',
bodyFontSize: 9,
bodySpacing:4,
yPadding: 6,
xPadding: 6,
footerMarginTop: 0,
displayColors: false
},
scales: {
yAxes: [{
display: false,
ticks: {
beginAtZero: false,
fontSize:12,
fontColor:'#9eaecf',
padding: 0
},
gridLines: {
color: NioApp.hexRGB("#526484",.2),
tickMarkLength:0,
zeroLineColor: NioApp.hexRGB("#526484",.2)
},
}],
xAxes: [{
display: false,
ticks: {
fontSize:12,
fontColor:'#9eaecf',
source: 'auto',
padding: 0,
reverse: NioApp.State.isRTL
},
gridLines: {
color: "transparent",
tickMarkLength:0,
zeroLineColor: NioApp.hexRGB("#526484",.2),
offsetGridLines: true,
}
}]
}
}
});
})
}
// init chart
NioApp.coms.docReady.push(function(){ analyticsLineSmall(); });
var analyticAuData = {
labels : ["01 Jan", "02 Jan", "03 Jan", "04 Jan", "05 Jan", "06 Jan", "07 Jan", "08 Jan", "09 Jan", "10 Jan", "11 Jan", "12 Jan","13 Jan", "14 Jan", "15 Jan", "16 Jan", "17 Jan", "18 Jan", "19 Jan", "20 Jan", "21 Jan", "22 Jan", "23 Jan", "24 Jan", "25 Jan", "26 Jan", "27 Jan", "28 Jan", "29 Jan", "30 Jan"],
dataUnit : 'People',
lineTension : .1,
datasets : [{
label : "Active Users",
color : "#6baafe",
background : "#6baafe",
data: [1110, 1220, 1310, 980, 900, 770, 1060, 830, 690, 730, 790, 950, 1100, 800, 1250, 850, 950, 450, 900, 1000, 1200, 1250, 900, 950,1300, 1200, 1250, 650, 950, 750]
}]
};
function analyticsAu(selector, set_data){
var $selector = (selector) ? $(selector) : $('.analytics-au-chart');
$selector.each(function(){
var $self = $(this), _self_id = $self.attr('id'), _get_data = (typeof set_data === 'undefined') ? eval(_self_id) : set_data;
var selectCanvas = document.getElementById(_self_id).getContext("2d");
var chart_data = [];
for (var i = 0; i < _get_data.datasets.length; i++) {
chart_data.push({
label: _get_data.datasets[i].label,
tension:_get_data.lineTension,
backgroundColor: _get_data.datasets[i].background,
borderWidth:2,
borderColor: _get_data.datasets[i].color,
data: _get_data.datasets[i].data,
barPercentage : .7,
categoryPercentage : .7
});
}
var chart = new Chart(selectCanvas, {
type: 'bar',
data: {
labels: _get_data.labels,
datasets: chart_data,
},
options: {
legend: {
display: (_get_data.legend) ? _get_data.legend : false,
rtl: NioApp.State.isRTL,
labels: {
boxWidth:12,
padding:20,
fontColor: '#6783b8',
}
},
maintainAspectRatio: false,
tooltips: {
enabled: true,
rtl: NioApp.State.isRTL,
callbacks: {
title: function(tooltipItem, data) {
return false; //data['labels'][tooltipItem[0]['index']];
},
label: function(tooltipItem, data) {
return data.datasets[tooltipItem.datasetIndex]['data'][tooltipItem['index']];
}
},
backgroundColor: '#eff6ff',
titleFontSize: 9,
titleFontColor: '#6783b8',
titleMarginBottom: 6,
bodyFontColor: '#9eaecf',
bodyFontSize: 9,
bodySpacing:4,
yPadding: 6,
xPadding: 6,
footerMarginTop: 0,
displayColors: false
},
scales: {
yAxes: [{
display: true,
position : NioApp.State.isRTL ? "right" : "left",
ticks: {
beginAtZero: false,
fontSize:12,
fontColor:'#9eaecf',
padding: 0,
display: false,
stepSize:300
},
gridLines: {
color: NioApp.hexRGB("#526484",.2),
tickMarkLength:0,
zeroLineColor: NioApp.hexRGB("#526484",.2),
},
}],
xAxes: [{
display: false,
ticks: {
fontSize:12,
fontColor:'#9eaecf',
source: 'auto',
padding: 0,
reverse: NioApp.State.isRTL
},
gridLines: {
color: "transparent",
tickMarkLength:0,
zeroLineColor: 'transparent',
offsetGridLines: true,
}
}]
}
}
});
})
}
// init chart
NioApp.coms.docReady.push(function(){ analyticsAu(); });
var analyticOvData = {
labels : ["01 Jan", "02 Jan", "03 Jan", "04 Jan", "05 Jan", "06 Jan", "07 Jan", "08 Jan", "09 Jan", "10 Jan", "11 Jan", "12 Jan","13 Jan", "14 Jan", "15 Jan", "16 Jan", "17 Jan", "18 Jan", "19 Jan", "20 Jan", "21 Jan", "22 Jan", "23 Jan", "24 Jan", "25 Jan", "26 Jan", "27 Jan", "28 Jan", "29 Jan", "30 Jan"],
dataUnit : 'People',
lineTension : .1,
datasets : [{
label : "Current Month",
color : "#a9cdff",
dash : [5],
background : "transparent",
data: [3910, 4420, 4110, 5180, 4400, 5170, 6460, 8830, 5290, 5430, 4690, 4350, 4600, 5200, 5650, 6850, 6950, 4150, 4300, 6000, 6800, 2250, 6900, 7950,6900, 4200, 6250, 7650, 8950, 9750]
},{
label : "Current Month",
color : "#3a8dfe",
dash : 0,
background : NioApp.hexRGB('#3a8dfe',.15),
data: [4110, 4220, 4810, 5480, 4600, 5670, 6660, 4830, 5590, 5730, 4790, 4950, 5100, 5800, 5950, 5850, 5950, 4450, 4900, 8000, 7200, 7250, 7900, 8950,6300, 7200, 7250, 7650, 6950, 4750]
}]
};
function analyticsLineLarge(selector, set_data){
var $selector = (selector) ? $(selector) : $('.analytics-line-large');
$selector.each(function(){
var $self = $(this), _self_id = $self.attr('id'), _get_data = (typeof set_data === 'undefined') ? eval(_self_id) : set_data;
var selectCanvas = document.getElementById(_self_id).getContext("2d");
var chart_data = [];
for (var i = 0; i < _get_data.datasets.length; i++) {
chart_data.push({
label: _get_data.datasets[i].label,
tension:_get_data.lineTension,
backgroundColor: _get_data.datasets[i].background,
borderWidth:2,
borderDash:_get_data.datasets[i].dash,
borderColor: _get_data.datasets[i].color,
pointBorderColor: 'transparent',
pointBackgroundColor: 'transparent',
pointHoverBackgroundColor: "#fff",
pointHoverBorderColor: _get_data.datasets[i].color,
pointBorderWidth: 2,
pointHoverRadius: 4,
pointHoverBorderWidth: 2,
pointRadius: 4,
pointHitRadius: 4,
data: _get_data.datasets[i].data,
});
}
var chart = new Chart(selectCanvas, {
type: 'line',
data: {
labels: _get_data.labels,
datasets: chart_data,
},
options: {
legend: {
display: (_get_data.legend) ? _get_data.legend : false,
rtl: NioApp.State.isRTL,
labels: {
boxWidth:12,
padding:20,
fontColor: '#6783b8',
}
},
maintainAspectRatio: false,
tooltips: {
enabled: true,
rtl: NioApp.State.isRTL,
callbacks: {
title: function(tooltipItem, data) {
return data['labels'][tooltipItem[0]['index']];
},
label: function(tooltipItem, data) {
return data.datasets[tooltipItem.datasetIndex]['data'][tooltipItem['index']];
}
},
backgroundColor: '#fff',
borderColor:'#eff6ff',
borderWidth:2,
titleFontSize: 13,
titleFontColor: '#6783b8',
titleMarginBottom: 6,
bodyFontColor: '#9eaecf',
bodyFontSize: 12,
bodySpacing:4,
yPadding: 10,
xPadding: 10,
footerMarginTop: 0,
displayColors: false
},
scales: {
yAxes: [{
display: true,
position : NioApp.State.isRTL ? "right" : "left",
ticks: {
beginAtZero: true,
fontSize:12,
fontColor:'#9eaecf',
padding: 8,
stepSize:2400
},
gridLines: {
color: NioApp.hexRGB("#526484",.2),
tickMarkLength:0,
zeroLineColor: NioApp.hexRGB("#526484",.2),
},
}],
xAxes: [{
display: false,
ticks: {
fontSize:12,
fontColor:'#9eaecf',
source: 'auto',
padding: 0,
reverse: NioApp.State.isRTL
},
gridLines: {
color: "transparent",
tickMarkLength:0,
zeroLineColor: 'transparent',
offsetGridLines: true,
}
}]
}
}
});
})
}
// init chart
NioApp.coms.docReady.push(function(){ analyticsLineLarge(); });
})(NioApp, jQuery);
b IDATxytVսϓ22 A@IR:hCiZ[v*E:WũZA ^dQeQ @ !jZ'>gsV仿$|?g)&x-E