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?
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
Post a Comment