kendo-ui-core icon indicating copy to clipboard operation
kendo-ui-core copied to clipboard

Chart Tooltip not showing when the select option is enabled

Open georgi-sla opened this issue 2 years ago • 1 comments

Bug report

When the select functionality is enabled, the tooltip does not show up when hovered.

Reproduction of the problem

https://dojo.telerik.com/@georgi_slavov/ajINUMut Hover over the series

Current behavior

The tooltip does not show.

Expected/desired behavior

The tooltip should show.

Environment

  • Kendo UI version: 2022.2.621
  • jQuery version: 1.12.4
  • Browser: [all]

georgi-sla avatar Jul 18 '22 13:07 georgi-sla

One possible workaround (IE11+) is to add the following style, see demo:

.k-chart .k-selector,
.k-chart .k-selector .k-mask,
.k-chart .k-selector .k-selection,
.k-chart .k-selector .k-selection-bg
{
  pointer-events: none;  
}

.k-chart .k-selector .k-selection .k-handle
{
  pointer-events: auto;  
}

This disables the ability to drag the selection, only the handles can be used to adjust it.

tsvetomir avatar Jul 18 '22 14:07 tsvetomir

The issue is no longer reproducible with Kendo UI 2023.3.1114. I am linking a working Dojo example - https://dojo.telerik.com/@sspasova/urUBayuv

sspasova avatar Jan 13 '24 20:01 sspasova