F
Filament16mo ago
Anthony

Disable labels on bottom of chart

How do I disable this here? I tried a few things:
6 Replies
Anthony
AnthonyOP16mo ago
No description
Anthony
AnthonyOP16mo ago
No description
Anthony
AnthonyOP16mo ago
bump
Lara Zeus
Lara Zeus16mo ago
I think this
return [
'datasets' => [
...
],
'labels' => ['labels'], // or empty string
];
return [
'datasets' => [
...
],
'labels' => ['labels'], // or empty string
];
Anthony
AnthonyOP16mo ago
iirc i tried this and when hovering over the entries it woiuldnt show then
Lara Zeus
Lara Zeus16mo 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?