F
Filament11mo ago
Anthony

Disable labels on bottom of chart

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