1. Go to this page and download the library: Download zaimealabs/charts library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
$donut = Charts::donutChart()
->addData([200, 240, 300])
->setTitle('Top 3 active users from group.')
->setSubtitle('Season 2024.')
->setLabels(['User 3', 'User 10', 'User 91']);
$radial = Charts::radialChart()
->addData([4275, 105])
->setTitle('Work efficiency.')
->setSubtitle('How many working hours and sick leave a user has.')
->setLabels(['Worked', 'Sick leave'])
->setColors(['#D32F2F', '#03A9F4']);
$line = Charts::lineChart()
->addData('Hours worked', [138, 138, 145, 145, 131, 82])
->addData('Hours expected', [138, 140, 138, 145, 134, 82])
->setTitle('Hours worked during 2024.')
->setSubtitle('Hours worked vs Hours expected.')
->setXAxis(['January', 'February', 'March', 'April', 'May', 'June']);
$area = Charts::areaChart()
->addData('Hours worked', [138, 138, 145, 145, 131, 82])
->addData('Hours expected', [138, 140, 138, 145, 134, 82])
->setTitle('Hours worked during 2024.')
->setSubtitle('Hours worked vs Hours expected.')
->setXAxis(['January', 'February', 'March', 'April', 'May', 'June']);
$bar = Charts::barChart()
->addData('User 3', [6, 9, 3, 4, 10, 8])
->addData('User 91', [7, 3, 8, 2, 6, 4])
->setTitle('User 3 vs User 91.')
->setSubtitle('Working hours during season 2024.')
->setXAxis(['January', 'February', 'March', 'April', 'May', 'June']);