
Originally Posted by
mitchellsimoens
Why not make your own interaction? In the onGesture method load the store instead of showing a panel or something
Why not actually? I removed it but it seems to work the same way and the documentation gives the following example:
Code:
new Ext.chart.Chart({
renderTo: Ext.getBody(),
width: 800,
height: 600,
animate: true,
store: store1,
shadow: true,
theme: 'Category1',
legend: {
position: 'right'
},
axes: [ ...some axes options... ],
series: [ ...some series options... ]
});