Chart hovertext causes 2 hover labels

0
If I want to change the way the numbers in my chart hovering are formatted, I go into the series and add this and it works if I add:  "hovertemplate": "%{y:$,.0f}" However now I get TWO hover labels. One is correct according to this above format, but the OLD one still shows up too. Is there a way to get rid of the old hovering label? If I add {“hovermode”: false} it turns both of them off.
asked
2 answers
0

Hi Brian,

 

In you chart config can you check if you are using any Aggregation Type and try setting it to None if you are.



Thanks
AD

answered
0

Solved it.. added this to each series:

{
"hoverinfo": "skip",
  "hovertemplate": "%{y:.2f}<extra></extra>"
}
 

answered