mirror of
https://git.imnavajas.es/jjimenez/erp-imprimelibros.git
synced 2026-01-24 09:40:21 +00:00
primer commit. añadido tema Velzon
This commit is contained in:
449
src/main/resources/static/assets/js/pages/job-statistics.init.js
Normal file
449
src/main/resources/static/assets/js/pages/job-statistics.init.js
Normal file
@ -0,0 +1,449 @@
|
||||
/*
|
||||
Template Name: Velzon - Admin & Dashboard Template
|
||||
Author: Themesbrand
|
||||
Website: https://Themesbrand.com/
|
||||
Contact: Themesbrand@gmail.com
|
||||
File: job-statistics init js
|
||||
*/
|
||||
|
||||
// get colors array from the string
|
||||
function getChartColorsArray(chartId) {
|
||||
if (document.getElementById(chartId) !== null) {
|
||||
var colors = document.getElementById(chartId).getAttribute("data-colors");
|
||||
colors = JSON.parse(colors);
|
||||
return colors.map(function (value) {
|
||||
var newValue = value.replace(" ", "");
|
||||
if (newValue.indexOf(",") === -1) {
|
||||
var color = getComputedStyle(document.documentElement).getPropertyValue(newValue);
|
||||
if (color) return color;
|
||||
else return newValue;;
|
||||
} else {
|
||||
var val = value.split(',');
|
||||
if (val.length == 2) {
|
||||
var rgbaColor = getComputedStyle(document.documentElement).getPropertyValue(val[0]);
|
||||
rgbaColor = "rgba(" + rgbaColor + "," + val[1] + ")";
|
||||
return rgbaColor;
|
||||
} else {
|
||||
return newValue;
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// results_sparkline_charts
|
||||
var areachartbitcoinColors = getChartColorsArray("results_sparkline_charts");
|
||||
if (areachartbitcoinColors) {
|
||||
var options = {
|
||||
series: [{
|
||||
name: "Results",
|
||||
data: [0, 36, 110, 95, 130],
|
||||
},],
|
||||
chart: {
|
||||
width: 140,
|
||||
type: "area",
|
||||
sparkline: {
|
||||
enabled: true,
|
||||
},
|
||||
toolbar: {
|
||||
show: false,
|
||||
},
|
||||
},
|
||||
dataLabels: {
|
||||
enabled: false,
|
||||
},
|
||||
stroke: {
|
||||
curve: "smooth",
|
||||
width: 1.5,
|
||||
},
|
||||
fill: {
|
||||
type: "gradient",
|
||||
gradient: {
|
||||
shadeIntensity: 1,
|
||||
inverseColors: false,
|
||||
opacityFrom: 0.45,
|
||||
opacityTo: 0.05,
|
||||
stops: [50, 100, 100, 100],
|
||||
},
|
||||
},
|
||||
colors: areachartbitcoinColors,
|
||||
};
|
||||
var chart = new ApexCharts(document.querySelector("#results_sparkline_charts"), options);
|
||||
chart.render();
|
||||
}
|
||||
|
||||
|
||||
// results_sparkline_charts
|
||||
var areachartbitcoinColors = getChartColorsArray("results_sparkline_charts2");
|
||||
if (areachartbitcoinColors) {
|
||||
var options = {
|
||||
series: [{
|
||||
name: "Results",
|
||||
data: [0, 98, 85, 90, 67],
|
||||
},],
|
||||
chart: {
|
||||
width: 140,
|
||||
type: "area",
|
||||
sparkline: {
|
||||
enabled: true,
|
||||
},
|
||||
toolbar: {
|
||||
show: false,
|
||||
},
|
||||
},
|
||||
dataLabels: {
|
||||
enabled: false,
|
||||
},
|
||||
stroke: {
|
||||
curve: "smooth",
|
||||
width: 1.5,
|
||||
},
|
||||
fill: {
|
||||
type: "gradient",
|
||||
gradient: {
|
||||
shadeIntensity: 1,
|
||||
inverseColors: false,
|
||||
opacityFrom: 0.45,
|
||||
opacityTo: 0.05,
|
||||
stops: [50, 100, 100, 100],
|
||||
},
|
||||
},
|
||||
colors: areachartbitcoinColors,
|
||||
};
|
||||
var chart = new ApexCharts(document.querySelector("#results_sparkline_charts2"), options);
|
||||
chart.render();
|
||||
}
|
||||
|
||||
// results_sparkline_charts
|
||||
var areachartbitcoinColors = getChartColorsArray("results_sparkline_charts3");
|
||||
if (areachartbitcoinColors) {
|
||||
var options = {
|
||||
series: [{
|
||||
name: "Results",
|
||||
data: [0, 110, 95, 75, 120],
|
||||
},],
|
||||
chart: {
|
||||
width: 140,
|
||||
type: "area",
|
||||
sparkline: {
|
||||
enabled: true,
|
||||
},
|
||||
toolbar: {
|
||||
show: false,
|
||||
},
|
||||
},
|
||||
dataLabels: {
|
||||
enabled: false,
|
||||
},
|
||||
stroke: {
|
||||
curve: "smooth",
|
||||
width: 1.5,
|
||||
},
|
||||
fill: {
|
||||
type: "gradient",
|
||||
gradient: {
|
||||
shadeIntensity: 1,
|
||||
inverseColors: false,
|
||||
opacityFrom: 0.45,
|
||||
opacityTo: 0.05,
|
||||
stops: [50, 100, 100, 100],
|
||||
},
|
||||
},
|
||||
colors: areachartbitcoinColors,
|
||||
};
|
||||
var chart = new ApexCharts(document.querySelector("#results_sparkline_charts3"), options);
|
||||
chart.render();
|
||||
}
|
||||
|
||||
|
||||
// results_sparkline_charts
|
||||
var areachartbitcoinColors = getChartColorsArray("results_sparkline_charts4");
|
||||
if (areachartbitcoinColors) {
|
||||
var options = {
|
||||
series: [{
|
||||
name: "Results",
|
||||
data: [0, 68, 35, 90, 99],
|
||||
},],
|
||||
chart: {
|
||||
width: 140,
|
||||
type: "area",
|
||||
sparkline: {
|
||||
enabled: true,
|
||||
},
|
||||
toolbar: {
|
||||
show: false,
|
||||
},
|
||||
},
|
||||
dataLabels: {
|
||||
enabled: false,
|
||||
},
|
||||
stroke: {
|
||||
curve: "smooth",
|
||||
width: 1.5,
|
||||
},
|
||||
fill: {
|
||||
type: "gradient",
|
||||
gradient: {
|
||||
shadeIntensity: 1,
|
||||
inverseColors: false,
|
||||
opacityFrom: 0.45,
|
||||
opacityTo: 0.05,
|
||||
stops: [50, 100, 100, 100],
|
||||
},
|
||||
},
|
||||
colors: areachartbitcoinColors,
|
||||
};
|
||||
var chart = new ApexCharts(document.querySelector("#results_sparkline_charts4"), options);
|
||||
chart.render();
|
||||
}
|
||||
|
||||
// Distributed Treemap
|
||||
|
||||
var chartTreemapDistributedColors = getChartColorsArray("distributed_treemap");
|
||||
if (chartTreemapDistributedColors) {
|
||||
var options = {
|
||||
series: [{
|
||||
data: [{
|
||||
x: 'USA',
|
||||
y: 321
|
||||
},
|
||||
{
|
||||
x: 'Russia',
|
||||
y: 165
|
||||
},
|
||||
{
|
||||
x: 'India',
|
||||
y: 184
|
||||
},
|
||||
{
|
||||
x: 'China',
|
||||
y: 98
|
||||
},
|
||||
{
|
||||
x: 'Canada',
|
||||
y: 84
|
||||
},
|
||||
{
|
||||
x: 'Brazil',
|
||||
y: 31
|
||||
},
|
||||
{
|
||||
x: 'UK',
|
||||
y: 70
|
||||
},
|
||||
{
|
||||
x: 'Australia',
|
||||
y: 30
|
||||
},
|
||||
{
|
||||
x: 'Germany',
|
||||
y: 44
|
||||
},
|
||||
{
|
||||
x: 'Italy',
|
||||
y: 68
|
||||
},
|
||||
{
|
||||
x: 'Israel',
|
||||
y: 28
|
||||
},
|
||||
{
|
||||
x: 'Indonesia',
|
||||
y: 19
|
||||
},
|
||||
{
|
||||
x: 'Bangladesh',
|
||||
y: 29
|
||||
}
|
||||
]
|
||||
}],
|
||||
legend: {
|
||||
show: false
|
||||
},
|
||||
chart: {
|
||||
height: 350,
|
||||
type: 'treemap',
|
||||
toolbar: {
|
||||
show: false
|
||||
}
|
||||
},
|
||||
title: {
|
||||
text: 'Visitors Location',
|
||||
align: 'center',
|
||||
style: {
|
||||
fontWeight: 500,
|
||||
}
|
||||
},
|
||||
colors: chartTreemapDistributedColors,
|
||||
plotOptions: {
|
||||
treemap: {
|
||||
distributed: true,
|
||||
enableShades: false
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
var chart = new ApexCharts(document.querySelector("#distributed_treemap"), options);
|
||||
chart.render();
|
||||
}
|
||||
|
||||
|
||||
// User by devices
|
||||
var dountchartUserDeviceColors = getChartColorsArray("user_device_pie_charts");
|
||||
if (dountchartUserDeviceColors) {
|
||||
var options = {
|
||||
series: [78.56, 105.02, 42.89],
|
||||
labels: ["Desktop", "Mobile", "Tablet"],
|
||||
chart: {
|
||||
type: "donut",
|
||||
height: 219,
|
||||
},
|
||||
plotOptions: {
|
||||
pie: {
|
||||
size: 100,
|
||||
donut: {
|
||||
size: "76%",
|
||||
},
|
||||
},
|
||||
},
|
||||
dataLabels: {
|
||||
enabled: false,
|
||||
},
|
||||
legend: {
|
||||
show: false,
|
||||
position: 'bottom',
|
||||
horizontalAlign: 'center',
|
||||
offsetX: 0,
|
||||
offsetY: 0,
|
||||
markers: {
|
||||
width: 20,
|
||||
height: 6,
|
||||
radius: 2,
|
||||
},
|
||||
itemMargin: {
|
||||
horizontal: 12,
|
||||
vertical: 0
|
||||
},
|
||||
},
|
||||
stroke: {
|
||||
width: 0
|
||||
},
|
||||
yaxis: {
|
||||
labels: {
|
||||
formatter: function (value) {
|
||||
return value + "k" + " Users";
|
||||
}
|
||||
},
|
||||
tickAmount: 4,
|
||||
min: 0
|
||||
},
|
||||
colors: dountchartUserDeviceColors,
|
||||
};
|
||||
var chart = new ApexCharts(document.querySelector("#user_device_pie_charts"), options);
|
||||
chart.render();
|
||||
}
|
||||
|
||||
|
||||
// Deal Type Charts
|
||||
var dealTypeChartsColors = getChartColorsArray("deal-type-charts");
|
||||
if (dealTypeChartsColors) {
|
||||
var options = {
|
||||
series: [{
|
||||
name: 'Following',
|
||||
data: [80, 50, 30, 40, 100, 20],
|
||||
},
|
||||
{
|
||||
name: 'Followers',
|
||||
data: [20, 30, 40, 80, 20, 80],
|
||||
}],
|
||||
chart: {
|
||||
height: 341,
|
||||
type: 'radar',
|
||||
dropShadow: {
|
||||
enabled: true,
|
||||
blur: 1,
|
||||
left: 1,
|
||||
top: 1
|
||||
},
|
||||
toolbar: {
|
||||
show: false
|
||||
},
|
||||
},
|
||||
stroke: {
|
||||
width: 2
|
||||
},
|
||||
fill: {
|
||||
opacity: 0.2
|
||||
},
|
||||
legend: {
|
||||
show: true,
|
||||
fontWeight: 500,
|
||||
offsetX: 0,
|
||||
offsetY: -8,
|
||||
markers: {
|
||||
width: 8,
|
||||
height: 8,
|
||||
radius: 6,
|
||||
},
|
||||
itemMargin: {
|
||||
horizontal: 10,
|
||||
vertical: 0
|
||||
}
|
||||
},
|
||||
markers: {
|
||||
size: 0
|
||||
},
|
||||
colors: dealTypeChartsColors,
|
||||
xaxis: {
|
||||
categories: ['2016', '2017', '2018', '2019', '2020', '2021']
|
||||
}
|
||||
};
|
||||
var chart = new ApexCharts(document.querySelector("#deal-type-charts"), options);
|
||||
chart.render();
|
||||
}
|
||||
|
||||
// Balance Overview charts
|
||||
var revenueExpensesChartsColors = getChartColorsArray("revenue-expenses-charts");
|
||||
if (revenueExpensesChartsColors) {
|
||||
var options = {
|
||||
series: [{
|
||||
name: 'Application Sent ',
|
||||
data: [33, 28, 30, 35, 40, 55, 70, 110, 150, 180, 210, 250]
|
||||
}, {
|
||||
name: ' Interviews',
|
||||
data: [20, 26, 45, 32, 42, 53, 59, 70, 78, 97, 110, 125]
|
||||
},
|
||||
{
|
||||
name: ' Hired',
|
||||
data: [12, 17, 45, 42, 24, 35, 42, 75, 102, 108, 156, 199]
|
||||
},
|
||||
{
|
||||
name: ' Rejected',
|
||||
data: [8, 13, 22, 27, 32, 34, 46, 59, 65, 97, 100, 110]
|
||||
}],
|
||||
chart: {
|
||||
height: 320,
|
||||
type: 'area',
|
||||
toolbar: 'false',
|
||||
},
|
||||
dataLabels: {
|
||||
enabled: false
|
||||
},
|
||||
stroke: {
|
||||
curve: 'smooth',
|
||||
width: 2,
|
||||
},
|
||||
xaxis: {
|
||||
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
|
||||
},
|
||||
colors: revenueExpensesChartsColors,
|
||||
fill: {
|
||||
opacity: 0.06,
|
||||
colors: revenueExpensesChartsColors,
|
||||
type: 'solid'
|
||||
}
|
||||
};
|
||||
var chart = new ApexCharts(document.querySelector("#revenue-expenses-charts"), options);
|
||||
chart.render();
|
||||
}
|
||||
Reference in New Issue
Block a user