Created
April 27, 2025 20:41
-
-
Save luiseduardobraschi/6499e86c8d98d3713612dd39aadf8c9b to your computer and use it in GitHub Desktop.
How to remove the X and Y axes in Filament doughnut charts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
protected function getOptions(): array | RawJs | null | |
{ | |
return [ | |
'scales' => [ | |
'x' => ['display' => false,], | |
'y' => ['display' => false,], | |
], | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment