When scrolling too hard on either side of the chart area, it can "lock me out" and get trapped on the left or right side and I cant hover over it to zoom in or out anymore. I have found a solution for it but it only works on ZoomEnd, as only then the axis recognize the range of 0 between them, so I still see the flickering of the change for a second when it "locks" and then goes back to normal.
This is part of my zoomEnd function to get the chart back to normal:
var chart = e.sender;
var xAxis = chart.options.xAxis;
var axis = chart._plotArea.axes.find(a => a.options.type === "date");
if (!xAxis || !xAxis.min || !xAxis.max) return;
var range = axis.range();
var min = range.min.getTime();
var max = range.max.getTime();
var width = max - min;
if (width === 0) {
e.sender.options.xAxis.min = savedAxisRange.min;
e.sender.options.xAxis.max = savedAxisRange.max;
chart.redraw();
return;
}
This is how my chart normally looks:
This is how it looks when the chart locks:
This is what it does when it "locks":
I'm not sure if there's anything to do to be able to predict it so the UI doesn't show the second of the plot getting trapped and then going back to the previous range.
Would like to check if this chart is possible using kendo chart
Normal scenario where there is score difference between current and previous year

Scenario if multiple domains score the same for highest/ lowest score

Scenario if there is no change compared to the previous report 
Scenario if all domains score the same for highest/ lowest score

Mobile display


this image below is the expected outcome

dojo link of what i have done
chart will load upon clicking on the various buttons
would like to check if the following chart layout is possbile for Kendo Bar chart?

and also i would like to have an onHover event that will change the chart color. for example if i hover on the category or chart for Strategy Development to change its color to like this


Hi Telerik team!
I'm trying to scale my linechart by setting zoom Css property, but this is affecting mouse events and messing up the tooltip position and the marking wrong focused item.
As you can see here:
https://dojo.telerik.com/RQNGZUUK
So, is possible to scale linechart without affect mouse events?
Regards,
Gustavo
Helllo
I have a Donut chart working well (see attachment). When I hover over it the category shows its tooltip. I would now to make the Donut clickable. When I click on a category an event would let me know the clicked category for taking further actions. Is something like that possible?
i am trying to render my chart with rounded corner at the side. but cant seems to get it to work.
Expected result

current chart is looking like this

I want to be able to scale the value axis based on the highest value in the data.
For example, if the highest value is 10,000
The value axis will show 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
The label to display Amount ($k)
categoryaxis.labels.font and seriesDefault.labels.font string set not apply