asantibanez / livewire-charts

Neat Livewire Charts for your Laravel projects
MIT License
787 stars 116 forks source link

How to remove X axis data label? #92

Open nurkhamid opened 1 year ago

nurkhamid commented 1 year ago

I tried to using withoutDataLabels() but the chart still showing the X axis label

jonelpatrick commented 11 months ago

try css

faakher commented 8 months ago

I tried to using withoutDataLabels() but the chart still showing the X axis label

use

->setXAxisVisible(false)

to completely hide

or use custom jsconfig

->setJsonConfig([
    'xaxis.labels.show' => false
])