Plotly modeBar size

is there a way to change the size of the modebar? the buttons are really small for me.

Hi @notsolowki you can change the size of modebar buttons by changing their css property font-size (see the attached screenshot, css properties are visible at the bottom-left corner). You can do this either from a notebook engine (right-click on modebar button and “Inspect element”) or by adding a css file to your Dash application, to your jupyter configuration directory (https://byte7.github.io/blog/Cool-Jupyter/), etc.

1 Like

asset.css dash add


a.modebar-btn {
    font-size: 30px !important;
}

unfortunate important is needed though

1 Like