LaravelDaily / laravel-charts

Package to draw charts in Laravel with Chart.js
MIT License
531 stars 118 forks source link

error : undefined array key "stacked" #109

Closed comsatsTaha closed 1 year ago

comsatsTaha commented 1 year ago

$chartOptionsDaily = [ 'chart_title' => 'Per Day Applications', 'report_type' => 'group_by_date', 'model' => 'App\Models\Candidate', 'group_by_field' => 'created_at', 'group_by_period' => 'day', 'chart_type' => 'bar', 'chart_color' => '255,0,0', ]; $chartDaily = new LaravelChart($chartOptionsDaily);

Error Showing on : {!! $chartDaily ->renderJs() !!}

PovilasKorop commented 1 year ago

@comsatsTaha add option 'stacked' => false, we will fix this in the next release.