I am looking at docs for a long time but I cannot find any option to remove this hamburger menu. Am i just missing something or is this not an option?
Hi, you can hide the hamburger menu by setting the chart.toolbar.show option to false.
Hi, you can hide the hamburger menu by setting the
chart.toolbar.showoption tofalse.
The hamburger menu is the icon on the very right in the toolbar. What you suggest will remove the whole toolbar.
only this menu icon is there in toolbar i want all the option in toolbar
Please help how can i do this
code:
chart: {
height: 350,
type: "bar",
toolbar: {
show: true,
tools: {
download: true,
selection: true,
zoom: true,
zoomin: true,
zoomout: true,
pan: true,
reset: true
},
},
zoom: {
enabled: true
}
},
Hi, you can hide the hamburger menu by setting the
chart.toolbar.showoption tofalse.
Ref: https://apexcharts.com/docs/options/chart/toolbar/The hamburger menu is the icon on the very right in the toolbar. What you suggest will remove the whole toolbar.
Yes you can do this in this way
chart: {
toolbar: {
show: true,
tools: {
download: false
}
}
}
Most helpful comment
Hi, you can hide the hamburger menu by setting the
chart.toolbar.showoption tofalse.Ref: https://apexcharts.com/docs/options/chart/toolbar/