F
Filament14mo ago
Anthony

Disable labels on bottom of chart

How do I disable this here? I tried a few things:
6 Replies
Anthony
AnthonyOP14mo ago
No description
Anthony
AnthonyOP14mo ago
No description
Anthony
AnthonyOP14mo ago
bump
Lara Zeus
Lara Zeus14mo ago
I think this
return [
'datasets' => [
...
],
'labels' => ['labels'], // or empty string
];
return [
'datasets' => [
...
],
'labels' => ['labels'], // or empty string
];
Anthony
AnthonyOP14mo ago
iirc i tried this and when hovering over the entries it woiuldnt show then
Lara Zeus
Lara Zeus14mo ago
so you only want to hide them try play around the options of chartjs
protected static ?array $options = [
'scales' => [
'y' => [
'grid' => [
'display' => false,
],
'ticks' => [
'display' => false,
],
],
'x' => [
'grid' => [
'display' => false,
],
'ticks' => [
'display' => false,
],
],
],
];
protected static ?array $options = [
'scales' => [
'y' => [
'grid' => [
'display' => false,
],
'ticks' => [
'display' => false,
],
],
'x' => [
'grid' => [
'display' => false,
],
'ticks' => [
'display' => false,
],
],
],
];

Did you find this page helpful?