ApexCharts don't showing toolbar

1.5k Views Asked by At

I'm using ApexCharts with React and i'm using a line's chart and it's not showing the toolbar, someone can help me?

enter image description here

My summed up state of options:

const [propriedades, setPropriedades] = useState({
    options: {
        chart: {
            height: 150,
            type: 'line',
            selection: {
                enabled: true
            },
            toolbar: {
                tools: {
                    zoomin: true,
                    zoomout: true,
                }
            }
        },
        dataLabels: {
            enabled: false
        },
        stroke: {
            curve: 'straight'
        }
    },
});
2

There are 2 best solutions below

1
On
xaxis: {tickPlacement: "on"},

For Angular it was solved by adding this line

0
On

just add xaxis: {tickPlacement: "on" } in chart property and it will work. it happen to me with javascript. i hope this will help.