Current path: home/webdevt/www/schtroumpf.fr/modules/ets_superspeed/views/js/
?? Go up: /home/webdevt/www/schtroumpf.fr/modules/ets_superspeed/views
/**
* Copyright ETS Software Technology Co., Ltd
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 website only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future.
*
* @author ETS Software Technology Co., Ltd
* @copyright ETS Software Technology Co., Ltd
* @license Valid for 1 website (or project) for each purchase of license
*/
window.onload = function() {
var config_image_optimize = {
type: 'doughnut',
data: {
datasets: [{
data: [percent_optimized_images,percent_unoptimized_images],
backgroundColor: [
'#12addd',
'#ff718c',
],
borderWidth: percent_optimized_images==0|| percent_unoptimized_images==0 ? 0:1,
label: image_text,
padding:20,
}],
labels: [
Optimized_text,
Unoptimized_text,
]
},
options: {
tooltips: {
callbacks: {
label: function(tooltipItem, data) {
return data['labels'][tooltipItem['index']]+':'+data['datasets'][0]['data'][tooltipItem['index']]+'%';
}
}
},
responsive: true,
legend: {
display: false,
},
cutoutPercentage:65,
}
};
var ctx_image_optimize = document.getElementById('sp-image-chart-area').getContext('2d');
chart_image_optimize = new Chart(ctx_image_optimize, config_image_optimize);
};