Disable labels on bottom of chart
How do I disable this here? I tried a few things:


return [
'datasets' => [
...
],
'labels' => ['labels'], // or empty string
];protected static ?array $options = [
'scales' => [
'y' => [
'grid' => [
'display' => false,
],
'ticks' => [
'display' => false,
],
],
'x' => [
'grid' => [
'display' => false,
],
'ticks' => [
'display' => false,
],
],
],
];