lukejames1111

Results 11 comments of lukejames1111

Did this ever get implemented? I have a need for adding a way of disabling specific times on a specific date.

I desperately want this too, but I can't find any way 🙁 I can only disable entire days, which I don't want to do.

Ok, I've actually figured it out myself 😄 First we get the dates and times in a multidimensional array and JSON encode the array (I'm using PHP, but the logic...

I agree, this would definitely make things easier, but I don't recall this being in the original game 😂

I'm wondering if you ever found a fix for this as I'm looking for the same solution too?

> I can't fix this without making a PR that would introduce a breaking change. I was waiting for an answer by the author. I ended up not using this...

How are you populating the labels? It works fine for me using a donut chart: `->setLabels(['label one', 'label two']);`

Hmm, only difference I have is that I'm calling it slightly differently, but this works for me: ```php public function build(array $data, array $labels): \ArielMejiaDev\LarapexCharts\DonutChart { return $this->chart->donutChart() ->setTitle('Valuations Outcome')...

Yes, installed it today. Did you create the chart using `php artisan make:chart ChartName`? Can you share your app/Charts and your method which you use to call it?

I too am struggling with the `->setOptions($options)` feature. I'm trying to do something similar: ``` $options = [ 'yaxis' => [ 'decimalsInFloat' => 0, ] ]; ``` ``` $chart =...