htmlwidgets / sparkline

jQuery Sparkline HTML Widget for R
Other
245 stars 40 forks source link

Tooltips are too short #4

Closed hadley closed 7 years ago

hadley commented 9 years ago

screen shot 2015-01-06 at 3 18 03 pm

Possibly because I have retina display

ramnathv commented 9 years ago

I presume you are using bootstrap. This is a well known issue using sparkline with bootstrap and there is a simple css fix, which I will include when I push code to this repo next time.

ramnathv commented 9 years ago
.jqstooltip {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
pfuhlert commented 9 years ago

Any update on this issue? I still have the same problem.

diegocgaona commented 8 years ago

I have this problem too, the tip from @ramnathv really worked, but would be good work without the css code in the rmarkdown. Thanks!