Completed
Last Updated: 07 Jul 2023 09:40 by ADMIN
Release R3.2023-Increment.1(19.July.2023)
Faisal
Created on: 03 Dec 2012 13:01
Category: Kendo UI for jQuery
Type: Feature Request
18
Add drilldown feature to charts
By enabling the drilldown feature on charts, clicking the charts should take the user to the next level. 
2 comments
Carey
Posted on: 13 Jun 2014 16:32
I don't believe there is any way to do this generically.  It is easy enough to create sub charts, but you need to know something about the specific data in the primary chart being clicked in order to present the data in the sub chart.  Here is a crude example of how to "drill down" with dataviz.  Enjoy :)    http://trykendoui.telerik.com/acuL

Timothy
Posted on: 06 Feb 2013 23:13
Given how complicated this would be to build in a generic way, I don't expect they will add the feature.

You can already do it though, simply attach a handler to seriesClick, read the dataItem from the event, then update the chart/data-source as needed to drill in. There's plenty of other handlers you can add too, if you want to allow clicking on the legend or the axis'.

Doing it with a handler you have full control over it all... have a look here for the different events:
http://demos.kendoui.com/dataviz/api/events.html
And have a look here for ways to modify a chart (e.g. drilling on date, it's not using events on the chart but you could):
http://demos.kendoui.com/dataviz/area-charts/date-axis.html