Reputation: 1685
I have a chart control and I want to refresh it when a user presses a button, but without refreshing the entire page.
Upvotes: 2
Views: 53
Reputation: 461
Inside your controller action use the following code.
FormControls.{YourChartId}.Refresh();
Upvotes: 1