The above example shows you how to create LineChart
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.
This example shows how to build a basic line chart with the value of the x-axis being time.
<?php
if(session_status() !== PHP_SESSION_ACTIVE) session_start();
require_once "../../../../load.koolreport.php";
require_once "MyReport.php";
$report = new MyReport;
$report->run();
?>
<?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'>Timeseries Chart</h1>
<?php
$data = [
['x' => '2013-01-01', 'data1' => 30, 'data2' => 130],
['x' => '2013-01-02', 'data1' => 200, 'data2' => 340],
['x' => '2013-01-03', 'data1' => 100, 'data2' => 200],
['x' => '2013-01-04', 'data1' => 400, 'data2' => 500],
['x' => '2013-01-05', 'data1' => 150, 'data2' => 250],
['x' => '2013-01-06', 'data1' => 250, 'data2' => 350]
];
$series = array();
if (!isset($_POST['command'])) {
$_SESSION['data'] = $data;
$series = array('x' => array(
"type" => "date",
"xDisplayFormat" => "%Y-%m-%d"
), 'data1', 'data2');
}
if (isset($_POST['command']) && $_POST['command'] == 'final') {
$data3 = [400, 500, 450, 700, 600, 500];
for ($i = 0; $i < count($_SESSION['data']); $i++) {
$_SESSION['data'][$i]['data3'] = $data3[$i];
}
$series = array('x' => array(
"type" => "date",
"xDisplayFormat" => "%Y-%m-%d"
), 'data1', 'data2', 'data3');
}
\koolreport\d3\LineChart::create(array(
"dataSource" => $_SESSION['data'],
"columns" => $series,
));
?>
</div>