The above example shows you how to create LineChart
using ApexCharts 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.
<?php
require_once "../../../../load.koolreport.php";
require_once "MyReport.php";
$report = new MyReport;
$report->run()->render();
<?php
class MyReport extends \koolreport\KoolReport
{
}
<div class="report-content">
<div class="text-center">
<h1>LineChart</h1>
<p class="lead">
This example shows how to create beautiful LineChart
</p>
</div>
<style>
.apexcharts-canvas {
margin: 0 auto;
}
</style>
<div style="margin-bottom:50px;">
<?php
$data = [
['data'],
[34],
[44],
[54],
[21],
[12],
[43],
[33],
[23],
[66],
[66],
[58]
];
\koolreport\apexcharts\LineChart::create(array(
"title" => "Step Line Chart",
"dataSource" => $data,
"columns" => array(
"data" => []
),
"options" => [
"markers | hover | sizeOffset" => 4,
],
"strokeCurve" => "stepline",
// "showLabel" => true,
"showLegend" => false,
// "height" => "600px",
"maxWidth" => 800,
));
?>
</div>
</div>