hover - Google charts: hovering offset -


i'm using google charts line chart hovering behavior strange. consistently highlights points right of cursor (see screenshot). know cause this?

hovering offset

the problem caused div used displaying chart having bootstrap col-class. moving new div solved it.

before:

<div class="row">     <div class="col-sm-12 m-t" id="chart_div">loading chart</div> </div> 

after:

<div class="row">     <div class="col-sm-12 m-t-xs">         <div id="chart_div">loading chart</div>     </div> </div> 

Comments

Popular posts from this blog

sql - can we replace full join with union of left and right join? why not? -

javascript - Parallax scrolling and fixed footer code causing width issues -

iOS: Performance of reloading UIImage(name:...) -