1

I have made stock tools GUI hidden by default on my application, also I have added a custom button that shows/hides it next to the exporting hamburguer menu. With that in mind I'd like to remove the little arrow that shows/hides the menu originally, I couldn't find any reference for that arrow in API or Documentation.

Here is a working Demo.

I appreciate any help.

Bernardo Marques
  • 925
  • 2
  • 10
  • 33

1 Answers1

1

You can just add the following to your style.css:

.highcharts-bindings-wrapper .highcharts-arrow-left { 
   display: none;
}

That should work if you just want to hide the arrows.