I'm looking to implement a drill-down option for a Kendo pie chart in angular using only one data source. Below are the specific data points I want to display in the pie chart:
{kind: 'Asia', share: 0.175, parentID: '' },
{kind: 'America', share: 0.238, parentID: '' },
{kind: 'Europe', share: 0.118, parentID: '' },
{kind: 'Africa', share: 0.052, parentID: '' }
When a user clicks on a slice, I want the chart to drill down based on the parent ID.
{kind: 'SL', share: 0.225, parentID: 'Asia' },
{kind: 'India', share: 0.192, parentID: 'Asia' },
{kind: 'Russia', share: 0.192, parentID: 'Europe' },
{kind: 'France', share: 0.192, parentID: 'Europe' }
Here is the code snippet for reference: https://stackblitz.com/edit/angular-myxeux-ugcarp?file=app%2Fapp.component.ts