We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b22e1b commit 15d8c14Copy full SHA for 15d8c14
packages/f-my/src/web.tsx
@@ -41,9 +41,10 @@ Component({
41
this.props.onHandleRef({
42
setRenderContent: this.setRenderConetent.bind(this),
43
updateChart: this.updateChart.bind(this),
44
+ clear: this.clear.bind(this),
45
});
46
- this.createChart({});
47
+ this.createChart();
48
},
49
50
didUpdate() {
@@ -112,7 +113,7 @@ Component({
112
113
114
updateChart() {
115
this.clear();
- this.createChart();
116
+ this.createChart({});
117
118
119
setRenderConetent(renderContent) {
0 commit comments