nemo
nemo

Reputation: 1685

How can I refresh a Chart Control in zAppDev

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

Answers (1)

theofilis
theofilis

Reputation: 461

Inside your controller action use the following code.

FormControls.{YourChartId}.Refresh();

Upvotes: 1

Related Questions