Teren-app/app/Charts/ExampleChart.php
Simon Pocrnjič 90a5858320 first commit
2024-10-28 21:08:16 +01:00

28 lines
714 B
PHP

<?php
namespace App\Charts;
use ArielMejiaDev\LarapexCharts\LarapexChart;
class ExampleChart
{
protected $chart;
public function __construct(LarapexChart $chart)
{
$this->chart = $chart;
}
public function build($options = null)
{
return $this->chart->areaChart()
->setTitle('Contracts during last six months.')
->setSubtitle('New and Completed.')
->addData('New', [4, 9, 5, 2, 1, 8])
->addData('Completed', [7, 2, 7, 2, 5, 4])
->setColors(['#1A56DB', '#ff6384'])
->setXAxis(['January', 'February', 'March', 'April', 'May', 'June'])
->setToolbar(true)
->toVue();
}
}