Hi !
After upgrading to the lastest version (6.1.0) we have an issue with the tootip.
The small arrow that points towards the elements that have the title attribute is not showing where it should (the arrow stays centered).
Here is an example:
<TelerikTooltip TargetSelector=".tooltip-target" ShowOn="@TooltipShowEvent.Hover"></TelerikTooltip>
<h1>example</h1>
<TelerikButton class="tooltip-target" title="it fits">
Text
</TelerikButton>
<TelerikButton class="tooltip-target second" title="A longgggggggggggggggggggggggggggggg test that will not work ...">
Text
</TelerikButton>
<style>
.second {
margin-left: -5px;
}