sencha touch - Interaction between two or more charts in ExtJS -


i have 2 charts in 1 container, 1 bar column chart , radar chart. want make interaction between charts, when click on 1 of column of barcolumn chart radar show changes. made charts using extjs mvc. think have make function calls controller.. here controller..

ext.define('gamma.controller.controlfile', {  extend : 'ext.app.controller',  //define stores stores : ['barcolumn','radarview','voicecallstore','smscallstore','mmscallstore','gprsusagestore'], //define models  models : ['barcol','radar','voicecallmodel','smscallmodel','mmscallmodel','gprsusagemodel'], //define views views : ['barcolumnchart','linechart','radarchart','voicepie','smspie','mmspie','gprspie'],  refs:[{      ref:'radarchart',     selector:'radar'   }],  init : function() {   } }) 

please 1 me....

i think link looking this


Comments

Popular posts from this blog

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -