You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are using HighCharts with ExtJs6. We are able to create the bar chart but unable to do the drill down. Our actual use case is we have parent and child relation ship between customers. We show all parents in the bar chart and when ever user clicks on any bar we need to show his/her childs. Can you please help to implement the drill down facility in this.
We are using HighCharts with ExtJs6. We are able to create the bar chart but unable to do the drill down. Our actual use case is we have parent and child relation ship between customers. We show all parents in the bar chart and when ever user clicks on any bar we need to show his/her childs. Can you please help to implement the drill down facility in this.
Below is the code snippet for the Chart:
Code:
var panel = Ext.create('Ext.panel.Panel', {
Below is the code snippet for the Ext Store:
var tempStore = new Ext.data.JsonStore( {
storeId : id,
proxy:{ type: 'ajax',
actionMethods : {
read : 'POST'
},
url : someurl.do,
reader: {
type: 'json',
rootProperty: 'rows'
}
},
fields : [ 'amountsId','name','amount'],
autoLoad : true
});
The text was updated successfully, but these errors were encountered: