Apexcharts.js: How to remove hamburger menu?

Created on 19 Mar 2019  路  4Comments  路  Source: apexcharts/apexcharts.js

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?

Most helpful comment

Hi, you can hide the hamburger menu by setting the chart.toolbar.show option to false.

Ref: https://apexcharts.com/docs/options/chart/toolbar/

All 4 comments

Hi, you can hide the hamburger menu by setting the chart.toolbar.show option to false.

Ref: https://apexcharts.com/docs/options/chart/toolbar/

Hi, you can hide the hamburger menu by setting the chart.toolbar.show option to false.

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.

apex
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.show option to false.
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
    }
  }
}
Was this page helpful?
0 / 5 - 0 ratings

Related issues

jeroenpol picture jeroenpol  路  3Comments

thellimist picture thellimist  路  3Comments

ismaildervisoglu picture ismaildervisoglu  路  3Comments

maasha picture maasha  路  3Comments

artfulrobot picture artfulrobot  路  3Comments