Hello,
I am currently trying to integrate charts in ASP.NET 4 with MVC3 and Razor. I want to link several charts together on the same page, one master chart and two child charts. When a user clicks on links in the master chart, I would like to refresh only the child charts using Ajax. I noticed you provided several examples of achieving this using Javascript. However, with MVC3 I need to make an Ajax.ActionLink call each time the user clicks on links in the master chart so that the controller will be called properly and update the partial view appropriately.
My question is, how can I link my Ajax.ActionLink calls to the links in the master chart?
Thank you.