1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
|
<?php
/*
* Copyright 2005-2016 OCSInventory-NG/OCSInventory-ocsreports contributors.
* See the Contributors file for more details about them.
*
* This file is part of OCSInventory-NG/OCSInventory-ocsreports.
*
* OCSInventory-NG/OCSInventory-ocsreports is free software: you can redistribute
* it and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 2 of the License,
* or (at your option) any later version.
*
* OCSInventory-NG/OCSInventory-ocsreports is distributed in the hope that it
* will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with OCSInventory-NG/OCSInventory-ocsreports. if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
/**
* Renders the stats charts
*/
class StatsChartsRenderer {
public $colorsList = array(
"#1941A5", //Dark Blue
"#AFD8F8",
"#F6BD0F",
"#8BBA00",
"#A66EDD",
"#F984A1",
"#CCCC00", //Chrome Yellow+Green
"#999999", //Grey
"#0099CC", //Blue Shade
"#FF0000", //Bright Red
"#006F00", //Dark Green
"#0099FF",//Blue (Light)
"#FF66CC", //Dark Pink
"#669966", //Dirty green
"#7C7CB4", //Violet shade of blue
"#FF9933", //Orange
"#9900FF", //Violet
"#99FFCC", //Blue+Green Light
"#CCCCFF", //Light violet
"#669900", //Shade of green
);
/**
* @param type $name : name of the canvas
* @param type $legend : show legend or not ?
*/
public function createChartCanvas($name, $legend = true, $offset = true){
if($legend){
$mainClass = "col-md-6";
}else{
$mainClass = "col-md-12";
}
if($offset){
$offset = "col-md-offset-2";
}else{
$offset = "";
}
?>
<div class='row <?php echo $offset ?>'>
<div class='<?php echo $mainClass ?>'>
<canvas id="<?php echo $name?>" height="150"/>
</div>
<?php if($legend){ ?>
<div class='col-md-6 text-left'>
<div id="<?php echo $name ?>legend" class="span-charts"> </div>
</div>
<?php } ?>
</div>
<?php
}
/**
* @param string $canvasName Name of the canvas
* @param array $labels Labals array
* @param array $data Data arrays
*/
public function createPieChart($canvasName, $displayName, $labels, $datas){
?>
<script>
var config = {
type: 'doughnut',
data: {
datasets: [{
data: [
<?php
foreach ($datas as $data) {
echo "$data ,";
}
?>
],
backgroundColor: [
<?php
self::generateColorList(count($labels));
?>
],
label: 'Stats'
}],
labels: [
<?php
foreach ($labels as $label) {
echo "'$label' ,";
}
?>
]
},
options: {
responsive: true,
legend: {
display: false,
},
title: {
display: false,
text: "<?php echo $displayName ?>"
},
animation: {
animateScale: true,
animateRotate: true
}
}
};
window.onload = function() {
var ctx = document.getElementById("<?php echo $canvasName ?>").getContext("2d");
window.myDoughnut = new Chart(ctx, config);
document.getElementById("<?php echo $canvasName."legend" ?>").innerHTML = window.myDoughnut.generateLegend();
};
</script>
<?php
}
public function createPointChart($canvasName , $labels, $datas, $dataLbl){
?>
<script>
var config = {
type: 'line',
data: {
labels: [<?php
foreach ($labels as $label) {
echo "'$label' ,";
}
?>],
datasets: [{
label: "<?php echo $dataLbl ?>",
backgroundColor: "#961b7e",
borderColor: "#961b7e",
data: [
<?php
foreach ($datas as $data) {
echo "$data ,";
}
?>
],
fill: false,
}]
},
options: {
responsive: true,
title:{
display:false,
},
tooltips: {
mode: 'index',
intersect: false,
},
hover: {
mode: 'nearest',
intersect: true
},
scales: {
xAxes: [{
display: true,
scaleLabel: {
display: true,
labelString: 'Day'
}
}],
yAxes: [{
display: true,
scaleLabel: {
display: true,
labelString: 'Value'
}
}]
}
}
};
window.onload = function() {
var ctx = document.getElementById("<?php echo $canvasName ?>").getContext("2d");
window.myLine = new Chart(ctx, config);
};
</script>
<?php
}
/**
* @param int $nb number of color to create in the list
*/
static public function generateColorList($nb){
$stats = new self();
for ($i = 0; $i <= $nb; $i++) {
echo "'".$stats->colorsList[$i]."' ,";
}
}
}
|