1
0

Moved docs, added screenshots + fixed merge error

This commit is contained in:
Christiaan Goossens 2017-04-03 19:34:06 +02:00
parent 5618e147f3
commit d6511f3eb7
10 changed files with 4 additions and 5 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

View File

@ -1,6 +1,4 @@
<?php include '__header.phtml'; ?>
<a class="btn btn-default pull-left" href="rekeningen/<?= $rekeningnr ?>" role="button">Terug</a>
<canvas id="grafiek" height="100"></canvas>
<?php
if (!$statistieken) {
?>
@ -11,8 +9,8 @@ if (!$statistieken) {
} else {
?>
<a class="btn btn-default pull-left" href="rekeningen/<?= $rekeningnr?>" role="button">Terug</a>
<canvas id="myChart" height="100"></canvas>
<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");
@ -61,6 +59,7 @@ if (!$statistieken) {
});
<?php
} ?>
</script>
<?php include '__footer.phtml'; ?>