Bar Chart

The above example shows you how to create BarChart using D3 package. In this example, for purpose of chart demonstration only, we do use mock-up data from array. As you can see, the KoolReport's widget in general support dataSource could be DataStore, Process, DataSource or even simple array.

The example show how to create basic bar chart.

<?php
if(session_status() !== PHP_SESSION_ACTIVE) session_start();
require_once "../../../../load.koolreport.php";
require_once "MyReport.php";
$report = new MyReport;
$report->run();
// $report->render();
?>
<?php
if (isset($_POST['command'])) {
?>
    <div id="report_render">
        <?php
        $report->render();
        ?>
    </div>
<?php
    exit;
}
?>
<?php
if (!isset($_POST['command'])) {
?>
    <div id="report_render">
        <?php
        $report->render();
        ?>
    </div>
<?php
}
?>

<script>
    setTimeout(function() {
        $.ajax({
            type: "POST",
            url: 'run.php',
            data: {
                command: "final"
            },
            success: function(response) {
                $('#report_render').html(response);
            },
        });
    }, 1000);
</script>
<?php

class MyReport extends \koolreport\KoolReport
{

}
<div id="report_render">
    <h1 class="title">Bar Chart</h1>
    <?php
    $data = [
        ['data1' => 30, 'data2' => 130],
        ['data1' => 200, 'data2' => 100],
        ['data1' => 100, 'data2' => 140],
        ['data1' => 400, 'data2' => 200],
        ['data1' => 150, 'data2' => 150],
        ['data1' => 250, 'data2' => 50]
    ];

    $series = array();
    if (!isset($_POST['command'])) {
        $_SESSION['data'] = $data;
        $series = array('data1', 'data2');
    }

    if (isset($_POST['command']) && $_POST['command'] == 'final') {
        $data3 = [130, -150, 200, 300, -200, 100];
        for ($i = 0; $i < count($_SESSION['data']); $i++) {
            $_SESSION['data'][$i]['data3'] = $data3[$i];
        }
        $series = array('data1', 'data2', 'data3');
    }

    \koolreport\d3\ColumnChart::create(array(
        "dataSource" => $_SESSION['data'],
        "columns" => $series,
        "options" => array(
            "data" => array(
                "bar" => array(
                    "width" => array(
                        "ratio" => 0.5
                    )
                )
            )
        )
    ));
    ?>
</div>

What People Are Saying

"KoolReport helps me very much in creating data report for my corporate! Keep up your good work!"
-- Alain Melsens

"The first use of your product. I was impressed by its easiness and powerfulness. This product is a great and amazing."
-- Dr. Lew Choy Onn

"Fantastic framework for reporting!"
-- Greg Schneider

Download KoolReport Get KoolReport Pro