I needed to do the same, and after some research found in the Kendo UI documentation, the following solution: - bind the ItemClick and legendItemHover diagram events to the legend - in the e.preventDefault () handler call;
Here is the code I used (MVVM style):
In HTML:
data-bind="events: { legendItemClick: disableEvent, legendItemHover: disableEvent } "
In ViewModel:
disableEvent: function(e) { e.preventDefault(); }
Here is the article - http://docs.telerik.com/kendo-ui/api/dataviz/chart
Miroslav Nedyalkov
source share