1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

66 lines
2.0 KiB
PHTML

<?php include '__header.phtml'; ?>
<?php
if (!$statistieken) {
?>
<div class="alert alert-danger" role="alert"><b>Fout!</b> Dit is niet een aan jouw account gekoppelde rekening.</div>
<?php
} else {
?>
<a class="btn btn-default pull-left" href="rekeningen/<?= $rekeningnr ?>" role="button">Terug</a>
<canvas id="grafiek" height="100"></canvas>
<script>
Chart.defaults.global.legend.display = false;//Geen legenda
var grafiek = document.getElementById("grafiek");
var myChart = new Chart(grafiek, {
type: "line",
options: {
title: {
display: true,
text: "Saldo van de afgelopen maand"
},
scales: {
xAxes: [{
type: "time",
unit: "day",
time: {
displayFormats: {
"day": "D MMM"
}
}
}],
yAxes: [{
ticks: {
min: 0
}
}]
}
},
data: {
//Laad de dagen in
labels: <?php echo json_encode($statistieken['x-as']); ?>,
datasets: [{
label: "Saldo",
//Laad de saldo's in
data: <?php echo json_encode($statistieken['y-as']); ?>,
borderWidth: 2,
lineTension: 0, //Rechte lijnen
fill: false,
borderColor: "black",
pointRadius: 5,
pointBorderColor: "rgba(0, 0, 0, 0)", //Onzichtbare punten
pointBackgroundColor: "rgba(0, 0, 0, 0)",
pointHoverRadius: 5,
pointHoverBackgroundColor: "black"
}]
}
});
<?php
} ?>
</script>
<?php include '__footer.phtml'; ?>