970 lines
31 KiB
JavaScript
970 lines
31 KiB
JavaScript
"use strict";
|
|
|
|
!function (NioApp, $) {
|
|
"use strict";
|
|
|
|
var salesOverview = {
|
|
labels: ["01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30"],
|
|
dataUnit: 'BTC',
|
|
lineTension: 0.1,
|
|
datasets: [{
|
|
label: "Sales Overview",
|
|
color: "#798bff",
|
|
background: NioApp.hexRGB('#798bff', .3),
|
|
data: [8200, 7800, 9500, 5500, 9200, 9690, 8200, 7800, 9500, 5500, 9200, 9690, 8200, 7800, 9500, 5500, 9200, 9690, 8200, 7800, 9500, 5500, 9200, 9690, 8200, 7800, 9500, 5500, 9200, 9690]
|
|
}]
|
|
};
|
|
|
|
function lineSalesOverview(selector, set_data) {
|
|
var $selector = selector ? $(selector) : $('.sales-overview-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,
|
|
pointBorderColor: "transparent",
|
|
pointBackgroundColor: "transparent",
|
|
pointHoverBackgroundColor: "#fff",
|
|
pointHoverBorderColor: _get_data.datasets[i].color,
|
|
pointBorderWidth: 2,
|
|
pointHoverRadius: 3,
|
|
pointHoverBorderWidth: 2,
|
|
pointRadius: 3,
|
|
pointHitRadius: 3,
|
|
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,
|
|
labels: {
|
|
boxWidth: 30,
|
|
padding: 20,
|
|
fontColor: '#6783b8'
|
|
}
|
|
},
|
|
maintainAspectRatio: false,
|
|
tooltips: {
|
|
enabled: true,
|
|
rtl: NioApp.State.isRTL,
|
|
callbacks: {
|
|
title: function title(tooltipItem, data) {
|
|
return data['labels'][tooltipItem[0]['index']];
|
|
},
|
|
label: function label(tooltipItem, data) {
|
|
return data.datasets[tooltipItem.datasetIndex]['data'][tooltipItem['index']] + ' ' + _get_data.dataUnit;
|
|
}
|
|
},
|
|
backgroundColor: '#eff6ff',
|
|
titleFontSize: 13,
|
|
titleFontColor: '#6783b8',
|
|
titleMarginBottom: 6,
|
|
bodyFontColor: '#9eaecf',
|
|
bodyFontSize: 12,
|
|
bodySpacing: 4,
|
|
yPadding: 10,
|
|
xPadding: 10,
|
|
footerMarginTop: 0,
|
|
displayColors: false
|
|
},
|
|
scales: {
|
|
yAxes: [{
|
|
display: true,
|
|
stacked: _get_data.stacked ? _get_data.stacked : false,
|
|
position: NioApp.State.isRTL ? "right" : "left",
|
|
ticks: {
|
|
beginAtZero: true,
|
|
fontSize: 11,
|
|
fontColor: '#9eaecf',
|
|
padding: 10,
|
|
callback: function callback(value, index, values) {
|
|
return '$ ' + value;
|
|
},
|
|
min: 100,
|
|
stepSize: 3000
|
|
},
|
|
gridLines: {
|
|
color: NioApp.hexRGB("#526484", .2),
|
|
tickMarkLength: 0,
|
|
zeroLineColor: NioApp.hexRGB("#526484", .2)
|
|
}
|
|
}],
|
|
xAxes: [{
|
|
display: true,
|
|
stacked: _get_data.stacked ? _get_data.stacked : false,
|
|
ticks: {
|
|
fontSize: 9,
|
|
fontColor: '#9eaecf',
|
|
source: 'auto',
|
|
padding: 10,
|
|
reverse: NioApp.State.isRTL
|
|
},
|
|
gridLines: {
|
|
color: "transparent",
|
|
tickMarkLength: 0,
|
|
zeroLineColor: 'transparent'
|
|
}
|
|
}]
|
|
}
|
|
}
|
|
});
|
|
});
|
|
} // init chart
|
|
|
|
|
|
NioApp.coms.docReady.push(function () {
|
|
lineSalesOverview();
|
|
});
|
|
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: "#c4cefe",
|
|
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: "#798bff",
|
|
dash: 0,
|
|
background: NioApp.hexRGB('#798bff', .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,
|
|
labels: {
|
|
boxWidth: 12,
|
|
padding: 20,
|
|
fontColor: '#6783b8'
|
|
}
|
|
},
|
|
maintainAspectRatio: false,
|
|
tooltips: {
|
|
enabled: true,
|
|
rtl: NioApp.State.isRTL,
|
|
callbacks: {
|
|
title: function title(tooltipItem, data) {
|
|
return data['labels'][tooltipItem[0]['index']];
|
|
},
|
|
label: function label(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();
|
|
});
|
|
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: "#9cabff",
|
|
background: "#9cabff",
|
|
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,
|
|
labels: {
|
|
boxWidth: 12,
|
|
padding: 20,
|
|
fontColor: '#6783b8'
|
|
}
|
|
},
|
|
maintainAspectRatio: false,
|
|
tooltips: {
|
|
enabled: true,
|
|
rtl: NioApp.State.isRTL,
|
|
callbacks: {
|
|
title: function title(tooltipItem, data) {
|
|
return false; //data['labels'][tooltipItem[0]['index']];
|
|
},
|
|
label: function label(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 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: "#798bff",
|
|
background: NioApp.hexRGB('#798bff', .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]
|
|
}]
|
|
};
|
|
|
|
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,
|
|
labels: {
|
|
boxWidth: 12,
|
|
padding: 20,
|
|
fontColor: '#6783b8'
|
|
}
|
|
},
|
|
maintainAspectRatio: false,
|
|
tooltips: {
|
|
enabled: true,
|
|
rtl: NioApp.State.isRTL,
|
|
callbacks: {
|
|
title: function title(tooltipItem, data) {
|
|
return false; //data['labels'][tooltipItem[0]['index']];
|
|
},
|
|
label: function label(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 deviceStatusData = {
|
|
labels: ["Desktop", "Mobile", "Tablet"],
|
|
dataUnit: 'People',
|
|
legend: false,
|
|
datasets: [{
|
|
borderColor: "#fff",
|
|
background: ["#9cabff", "#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: ["#798bff", "#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,
|
|
labels: {
|
|
boxWidth: 12,
|
|
padding: 20,
|
|
fontColor: '#6783b8'
|
|
}
|
|
},
|
|
rotation: -1.5,
|
|
cutoutPercentage: 70,
|
|
maintainAspectRatio: false,
|
|
tooltips: {
|
|
enabled: true,
|
|
rtl: NioApp.State.isRTL,
|
|
callbacks: {
|
|
title: function title(tooltipItem, data) {
|
|
return data['labels'][tooltipItem[0]['index']];
|
|
},
|
|
label: function label(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 totalDeposit = {
|
|
labels: ["01 Jan", "02 Jan", "03 Jan", "04 Jan", "05 Jan", "06 Jan", "07 Jan"],
|
|
dataUnit: 'USD',
|
|
stacked: true,
|
|
datasets: [{
|
|
label: "Active User",
|
|
color: [NioApp.hexRGB("#6576ff", .2), NioApp.hexRGB("#6576ff", .2), NioApp.hexRGB("#6576ff", .2), NioApp.hexRGB("#6576ff", .2), NioApp.hexRGB("#6576ff", .2), NioApp.hexRGB("#6576ff", .2), "#6576ff"],
|
|
// @v2.0
|
|
data: [7200, 8200, 7800, 9500, 5500, 9200, 9690]
|
|
}]
|
|
};
|
|
|
|
function ivDataChart(selector, set_data) {
|
|
var $selector = selector ? $(selector) : $('.iv-data-chart');
|
|
$selector.each(function () {
|
|
var $self = $(this),
|
|
_self_id = $self.attr('id'),
|
|
_get_data = typeof set_data === 'undefined' ? eval(_self_id) : set_data,
|
|
_d_legend = typeof _get_data.legend === 'undefined' ? false : _get_data.legend;
|
|
|
|
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,
|
|
data: _get_data.datasets[i].data,
|
|
// Styles
|
|
backgroundColor: _get_data.datasets[i].color,
|
|
borderWidth: 2,
|
|
borderColor: 'transparent',
|
|
hoverBorderColor: 'transparent',
|
|
borderSkipped: 'bottom',
|
|
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,
|
|
labels: {
|
|
boxWidth: 30,
|
|
padding: 20,
|
|
fontColor: '#6783b8'
|
|
}
|
|
},
|
|
maintainAspectRatio: false,
|
|
tooltips: {
|
|
enabled: true,
|
|
rtl: NioApp.State.isRTL,
|
|
callbacks: {
|
|
title: function title(tooltipItem, data) {
|
|
return false;
|
|
},
|
|
label: function label(tooltipItem, data) {
|
|
return data['labels'][tooltipItem['index']] + ' ' + data.datasets[tooltipItem.datasetIndex]['data'][tooltipItem['index']];
|
|
}
|
|
},
|
|
backgroundColor: '#eff6ff',
|
|
titleFontSize: 11,
|
|
titleFontColor: '#6783b8',
|
|
titleMarginBottom: 4,
|
|
bodyFontColor: '#9eaecf',
|
|
bodyFontSize: 10,
|
|
bodySpacing: 3,
|
|
yPadding: 8,
|
|
xPadding: 8,
|
|
footerMarginTop: 0,
|
|
displayColors: false
|
|
},
|
|
scales: {
|
|
yAxes: [{
|
|
display: false,
|
|
stacked: _get_data.stacked ? _get_data.stacked : false,
|
|
ticks: {
|
|
beginAtZero: true
|
|
}
|
|
}],
|
|
xAxes: [{
|
|
display: false,
|
|
stacked: _get_data.stacked ? _get_data.stacked : false,
|
|
ticks: {
|
|
reverse: NioApp.State.isRTL
|
|
}
|
|
}]
|
|
}
|
|
}
|
|
});
|
|
});
|
|
} // init chart
|
|
|
|
|
|
NioApp.coms.docReady.push(function () {
|
|
ivDataChart();
|
|
});
|
|
var orderOverview = {
|
|
labels: ["19 Dec", "20 Dec", "21 Dec", "22 Dec", "23 Dec", "24 Dec", "25 Dec", "26 Dec", "27 Dec", "28 Dec", "29 Dec", "30 Dec", "31 Dec", "01 Jan"],
|
|
dataUnit: 'USD',
|
|
datasets: [{
|
|
label: "Buy Orders",
|
|
color: "#8feac5",
|
|
data: [1740, 2500, 1820, 1200, 1600, 2500, 1820, 1200, 1700, 1820, 1400, 1600, 1930, 2100]
|
|
}, {
|
|
label: "Sell Orders",
|
|
color: "#9cabff",
|
|
data: [2420, 1820, 3000, 5000, 2450, 1820, 2700, 5000, 2400, 2600, 4000, 2380, 2120, 1700]
|
|
}]
|
|
};
|
|
|
|
function orderOverviewChart(selector, set_data) {
|
|
var $selector = selector ? $(selector) : $('.order-overview-chart');
|
|
$selector.each(function () {
|
|
var $self = $(this),
|
|
_self_id = $self.attr('id'),
|
|
_get_data = typeof set_data === 'undefined' ? eval(_self_id) : set_data,
|
|
_d_legend = typeof _get_data.legend === 'undefined' ? false : _get_data.legend;
|
|
|
|
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,
|
|
data: _get_data.datasets[i].data,
|
|
// Styles
|
|
backgroundColor: _get_data.datasets[i].color,
|
|
borderWidth: 2,
|
|
borderColor: 'transparent',
|
|
hoverBorderColor: 'transparent',
|
|
borderSkipped: 'bottom',
|
|
barPercentage: .8,
|
|
categoryPercentage: .6
|
|
});
|
|
}
|
|
|
|
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,
|
|
labels: {
|
|
boxWidth: 30,
|
|
padding: 20,
|
|
fontColor: '#6783b8'
|
|
}
|
|
},
|
|
maintainAspectRatio: false,
|
|
tooltips: {
|
|
enabled: true,
|
|
rtl: NioApp.State.isRTL,
|
|
callbacks: {
|
|
title: function title(tooltipItem, data) {
|
|
return data.datasets[tooltipItem[0].datasetIndex].label;
|
|
},
|
|
label: function label(tooltipItem, data) {
|
|
return data.datasets[tooltipItem.datasetIndex]['data'][tooltipItem['index']] + ' ' + _get_data.dataUnit;
|
|
}
|
|
},
|
|
backgroundColor: '#eff6ff',
|
|
titleFontSize: 13,
|
|
titleFontColor: '#6783b8',
|
|
titleMarginBottom: 6,
|
|
bodyFontColor: '#9eaecf',
|
|
bodyFontSize: 12,
|
|
bodySpacing: 4,
|
|
yPadding: 10,
|
|
xPadding: 10,
|
|
footerMarginTop: 0,
|
|
displayColors: false
|
|
},
|
|
scales: {
|
|
yAxes: [{
|
|
display: true,
|
|
stacked: _get_data.stacked ? _get_data.stacked : false,
|
|
position: NioApp.State.isRTL ? "right" : "left",
|
|
ticks: {
|
|
beginAtZero: true,
|
|
fontSize: 11,
|
|
fontColor: '#9eaecf',
|
|
padding: 10,
|
|
callback: function callback(value, index, values) {
|
|
return '$ ' + value;
|
|
},
|
|
min: 100,
|
|
max: 5000,
|
|
stepSize: 1200
|
|
},
|
|
gridLines: {
|
|
color: NioApp.hexRGB("#526484", .2),
|
|
tickMarkLength: 0,
|
|
zeroLineColor: NioApp.hexRGB("#526484", .2)
|
|
}
|
|
}],
|
|
xAxes: [{
|
|
display: true,
|
|
stacked: _get_data.stacked ? _get_data.stacked : false,
|
|
ticks: {
|
|
fontSize: 9,
|
|
fontColor: '#9eaecf',
|
|
source: 'auto',
|
|
padding: 10,
|
|
reverse: NioApp.State.isRTL
|
|
},
|
|
gridLines: {
|
|
color: "transparent",
|
|
tickMarkLength: 0,
|
|
zeroLineColor: 'transparent'
|
|
}
|
|
}]
|
|
}
|
|
}
|
|
});
|
|
});
|
|
} // init chart
|
|
|
|
|
|
NioApp.coms.docReady.push(function () {
|
|
orderOverviewChart();
|
|
});
|
|
var userActivity = {
|
|
labels: ["01 Nov", "02 Nov", "03 Nov", "04 Nov", "05 Nov", "06 Nov", "07 Nov", "08 Nov", "09 Nov", "10 Nov", "11 Nov", "12 Nov", "13 Nov", "14 Nov", "15 Nov", "16 Nov", "17 Nov", "18 Nov", "19 Nov", "20 Nov", "21 Nov"],
|
|
dataUnit: 'USD',
|
|
stacked: true,
|
|
datasets: [{
|
|
label: "Direct Join",
|
|
color: "#9cabff",
|
|
data: [110, 80, 125, 55, 95, 75, 90, 110, 80, 125, 55, 95, 75, 90, 110, 80, 125, 55, 95, 75, 90]
|
|
}, {
|
|
label: "Referral Join",
|
|
color: NioApp.hexRGB("#9cabff", .4),
|
|
data: [125, 55, 95, 75, 90, 110, 80, 125, 55, 95, 75, 90, 110, 80, 125, 55, 95, 75, 90, 75, 90]
|
|
}]
|
|
};
|
|
|
|
function userActivityChart(selector, set_data) {
|
|
var $selector = selector ? $(selector) : $('.usera-activity-chart');
|
|
$selector.each(function () {
|
|
var $self = $(this),
|
|
_self_id = $self.attr('id'),
|
|
_get_data = typeof set_data === 'undefined' ? eval(_self_id) : set_data,
|
|
_d_legend = typeof _get_data.legend === 'undefined' ? false : _get_data.legend;
|
|
|
|
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,
|
|
data: _get_data.datasets[i].data,
|
|
// Styles
|
|
backgroundColor: _get_data.datasets[i].color,
|
|
borderWidth: 2,
|
|
borderColor: 'transparent',
|
|
hoverBorderColor: 'transparent',
|
|
borderSkipped: 'bottom',
|
|
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,
|
|
labels: {
|
|
boxWidth: 30,
|
|
padding: 20,
|
|
fontColor: '#6783b8'
|
|
}
|
|
},
|
|
maintainAspectRatio: false,
|
|
tooltips: {
|
|
enabled: true,
|
|
rtl: NioApp.State.isRTL,
|
|
callbacks: {
|
|
title: function title(tooltipItem, data) {
|
|
return data.datasets[tooltipItem[0].datasetIndex].label;
|
|
},
|
|
label: function label(tooltipItem, data) {
|
|
return data.datasets[tooltipItem.datasetIndex]['data'][tooltipItem['index']] + ' ' + _get_data.dataUnit;
|
|
}
|
|
},
|
|
backgroundColor: '#eff6ff',
|
|
titleFontSize: 13,
|
|
titleFontColor: '#6783b8',
|
|
titleMarginBottom: 6,
|
|
bodyFontColor: '#9eaecf',
|
|
bodyFontSize: 12,
|
|
bodySpacing: 4,
|
|
yPadding: 10,
|
|
xPadding: 10,
|
|
footerMarginTop: 0,
|
|
displayColors: false
|
|
},
|
|
scales: {
|
|
yAxes: [{
|
|
display: false,
|
|
stacked: _get_data.stacked ? _get_data.stacked : false,
|
|
ticks: {
|
|
beginAtZero: true
|
|
}
|
|
}],
|
|
xAxes: [{
|
|
display: false,
|
|
stacked: _get_data.stacked ? _get_data.stacked : false,
|
|
ticks: {
|
|
reverse: NioApp.State.isRTL
|
|
}
|
|
}]
|
|
}
|
|
}
|
|
});
|
|
});
|
|
} // init chart
|
|
|
|
|
|
NioApp.coms.docReady.push(function () {
|
|
userActivityChart();
|
|
});
|
|
}(NioApp, jQuery); |