asantibanez / livewire-charts

Neat Livewire Charts for your Laravel projects
MIT License
805 stars 120 forks source link

->setHorizontal(true); doesn't seem to change charts #29

Closed mmucraigward closed 3 years ago

mmucraigward commented 3 years ago

Describe the bug I have implemented a chart using $myChart = (new ColumnChartModel());

The chart works fine and all data displays correctly. I would like to implement the chart horizontally, however, setting $myChart->setHorizontal(true); doesn;t seem to change the output. I've looked through the code, and I can see the package is capturing the true that I am setting but it doesn't look like its reaching the chart.

Is this something I am doing, or the chart implmentation?