My code is https://codesandbox.io/s/late-forest-cuwf7
I have 2 files : app.component.html and app.component.ts
I display a chart which shows 1 belongs to one location and 1 belongs to another location.
What I need is to display that particular record which belongs to the location onclick of the location region in chart. Say, if i click on Chennai region, I need to display the record in which location is chennai
I tried to make use of onclick function of c3 for the same. Inside onclick, filteredData is the variable which has the data filtered based on location. On click, am able to log filteredData in console, but i don't see the same visible in UI.
Could you please help on binding this filtered data to UI?