Hover on bar chart graph

0
I want to remove hover on bar chart graph and it’s a default. How to remove this hover label on graph? Please give me a solution for this scenario.       Thanks in advance.
asked
2 answers
3

Assuming you use the basic plot.ly widget from the appstore:

  1. In the advanced tab set the mode to advanced
  2. In your series configuration in the advanced tab set the following code:

{
  "hoverinfo": "skip"
}
 

answered
1

The json that Maarten provided does what you are looking for. In case you want to learn more about it, check out the plotly reference :)

https://plotly.com/javascript/reference/

 

 

answered