I have laravel application and i want to display a chart. I have install Laravel Chart and Chartisan/Chartjs. But i dont know how to configure stacked bar.
@section('customScript')
<script>
const chart = new Chartisan({
el: '#chart',
url: "@chart('application_by_state_chart')",
hooks: new ChartisanHooks()
.colors(['#ECC94B', '#4299E1'])
.responsive()
.beginAtZero()
.legend({ position: 'bottom' })
.title('This is a sample chart using chartisan!')
});
</script>
@endsection