score:0

Accepted answer

you must have some global settings or other code that is causing the x-axis to be displayed, as it is not configured in your options above and is not the default.

i put together a sample chart that shows the x-axis being displayed similar to yours.

enter image description here

if you turn this off in your options, that should no longer be shown. you can toggle that setting to show/not show in the demo to see the difference.

options: {
    cutoutpercentage: 80,
    legend: {
        display: false
    },
    tooltips: {
        enabled: false,
    },
    scales: {
        xaxes: [{ display: false }] // <-- add this
    }
}

Related Query

More Query from same tag