1. Go to this page and download the library: Download hasnayeen/glow-chart 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/ */
hasnayeen / glow-chart example snippets
namespace App\Filament\Widgets;
use Hasnayeen\GlowChart\Glowchart;
use Hasnayeen\GlowChart\Chart;
use Hasnayeen\GlowChart\Enums\ChartType;
use Hasnayeen\GlowChart\Options;
use Hasnayeen\GlowChart\Series;
class BlogPostsChart extends GlowChart
{
protected static string $id = 'BlogPostsChart';
protected static ?string $heading = 'Chart';
protected function options(Options $options): Options
{
return $options
->chart(
Chart::make(ChartType::{{ type }})
);
}
protected function series(Series $series): Series
{
return $series
->data();
}
}