Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable scientific notation in hover tool Bokeh

It seems like there are plenty of answers on how to disable the scientific notation in Bokeh on numbers displayed on x and y axis. But how about disabling it for the hover tool?

like image 672
famargar Avatar asked Mar 01 '17 15:03

famargar


1 Answers

Found it, at least for my particular case it was sufficient to force the hover tool to read it as an integer:

hover.tooltips = [("Date", "@Date"),  ("Volume", "@z{int}")]
like image 137
famargar Avatar answered Sep 18 '22 12:09

famargar