如何在 Chartisan 中制作堆叠条形图

How to make stacked bar chart in Chartisan

我有 laravel 应用程序,我想显示图表。我已经安装了 Laravel Chart 和 Chartisan/Chartjs。但是我不知道怎么配置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

抱歉这个含糊的问题,实际上我只是想在我的图表上进行自定义,因为我正在使用带有 chartjs 插件的 chartisan。我再次浏览了文档,发现有一种叫做自定义挂钩的东西。下面的 link 是我尝试使用自定义挂钩所做的事情,因为 chartisan 文档没有指定如何使用自定义挂钩。

https://github.com/Chartisan/Chartisan/issues/7#issuecomment-774745067