Fix  call in Chart

(cherry picked from commit d2f1e60e524e91c5cb1ab00de9a3f75691f943ba)
diff --git a/superset/assets/javascripts/chart/Chart.jsx b/superset/assets/javascripts/chart/Chart.jsx
index f7c7e69..a4e3dd2 100644
--- a/superset/assets/javascripts/chart/Chart.jsx
+++ b/superset/assets/javascripts/chart/Chart.jsx
@@ -139,7 +139,7 @@
   renderViz() {
     const viz = visMap[this.props.vizType];
     try {
-      viz(this, this.props.queryResponse, this.props.actions.setControlValue);
+      viz(this, this.props.queryResponse, this.props.setControlValue);
     } catch (e) {
       this.props.actions.chartRenderingFailed(e, this.props.chartKey);
     }