c3js / c3

:bar_chart: A D3-based reusable chart library
http://c3js.org
MIT License
9.34k stars 1.39k forks source link

Chart tooltip can hide hovered points near right edge #2754

Open kevinhinterlong opened 4 years ago

kevinhinterlong commented 4 years ago

The tooltip position function checks if it's right edge would be past the right edge of the chart and moves it back to the left so that it stays aligned with the right edge https://github.com/c3js/c3/blob/f339e290a7ddd73221e9ffe01cba6356951e22d7/src/tooltip.js#L200-L203

Current Behavior: before Without hiding hovered datapoints: after

Possible implementation from yahoo/navi