In Kendo StockChart(http://demos.kendoui.com/dataviz/financial/index.html), have observed that dragging the navigator in bottom chart doesn't work always as expected. When I want to narrow down the navigator range,by pulling in either right handle/left handle, instead of narrowing down it moves the navigator range.
Looking at mousemove event handler in this case,shows that it decides whether to drag/narrow down the range,based on target element.
So, in some cases though i start dragging the mouse with pointer on left handle, but mousemove event listener gets the target as selection between leftHandle and rightHandle.
Looks in this case, the cursor width (cursor type e-reisze) is more than handle width and that's causing the issue.
Is there any other better way to handle this scenario that works always?
Also, have seen in some toolkits (nvd3), SVG is used for right/left handle that works very smooth instead of HTML controls. Is there any reason for not using SVG for right/left handle in KendoUI?
Looking at mousemove event handler in this case,shows that it decides whether to drag/narrow down the range,based on target element.
So, in some cases though i start dragging the mouse with pointer on left handle, but mousemove event listener gets the target as selection between leftHandle and rightHandle.
Looks in this case, the cursor width (cursor type e-reisze) is more than handle width and that's causing the issue.
Is there any other better way to handle this scenario that works always?
Also, have seen in some toolkits (nvd3), SVG is used for right/left handle that works very smooth instead of HTML controls. Is there any reason for not using SVG for right/left handle in KendoUI?