Skip to content

Instantly share code, notes, and snippets.

@luiseduardobraschi
Created April 27, 2025 20:41
Show Gist options
  • Save luiseduardobraschi/6499e86c8d98d3713612dd39aadf8c9b to your computer and use it in GitHub Desktop.
Save luiseduardobraschi/6499e86c8d98d3713612dd39aadf8c9b to your computer and use it in GitHub Desktop.
How to remove the X and Y axes in Filament doughnut charts
<?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