summaryrefslogtreecommitdiff
path: root/includes/helper/graph_helper.php
blob: 12c7df6c4c067160740c66669c54ef7282168b43 (plain)
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
<?php

/**
 * Renders a bargraph
 *
 * @param string $dom_id
 * @param string $key       key name of the x-axis
 * @param array  $row_names key names for the data rows
 * @param array  $colors    colors for the data rows
 * @param array  $data      the data
 * @return string
 */
function bargraph($dom_id, $key, $row_names, $colors, $data)
{
    $labels = [];
    foreach ($data as $dataset) {
        $labels[] = $dataset[$key];
    }

    $datasets = [];
    foreach ($row_names as $row_key => $name) {
        $values = [];
        foreach ($data as $dataset) {
            $values[] = $dataset[$row_key];
        }
        $datasets[] = [
            'label'     => $name,
            'fillColor' => $colors[$row_key],
            'data'      => $values
        ];
    }

    return '<canvas id="' . $dom_id . '" style="width: 100%; height: 300px;"></canvas>
      <script type="text/javascript">
      $(function(){
        var ctx = $("#' . $dom_id . '").get(0).getContext("2d");
        var chart = new Chart(ctx).Bar(' . json_encode([
            'labels'   => $labels,
            'datasets' => $datasets
        ]) . ');
      });
      </script>';
}