After upgrading from v2 to v3 some of my charts now have a 2nd y axis
Previously in v2 this problem did not happen
How do I remove the 0.1, 0.2, 0.3?
Here is my configuration code for the chart
protected static ?array $options = [
'scales' => [
'yAxes' => [
'ticks' => [
'stepSize' => 1,
],
],
],
];
protected static ?array $options = [
'scales' => [
'yAxes' => [
'ticks' => [
'stepSize' => 1,
],
],
],
];
protected function getData(): array
{
$newUsers = [];
$labels = [];
$colors = [];
for ($daysBackwards = $this->filter; $daysBackwards >= 0; $daysBackwards--) {