I have a kendo ui dataviz chart inside a bootstrap navs like this (or something like it) :
<ul class="nav nav-tabs navbar-static">
<li class="active">
<a href="#myTab" data-toggle="tab">Ranking ACT</a>
</li>
</ul>
<div class="tab-content">
<div id="myTab" class="tab-pane">
<div id="myKendoChart"></div>
</div>
</div>
The problem is that when I have a hover that shows the toolip on a series, it goes behind the tab section, hiding part of its content.
How can I set the toolip to be always on top (over) ?
Thank you.