You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to access all the high chart APIs outside the scope, I tried ref={'chart' } but didn't help, I am getting all the props via ref but not other functions
for the example, how to use below statements outside of the scope like in componentDidMount() ( ie. this.series[0] is not available outside the scope)
var series = this.series[0];
setInterval(function () {
var x = (new Date()).getTime(), // current time
y = Math.random();
series.addPoint([x, y], true, true);
}, 1000);
The text was updated successfully, but these errors were encountered:
use WebView from react-native, insert data in the webview like this <WebView style={{ height: 200, }} ref={'highCharts'} source={{ html:<your highchart string > }} />
use WebView from react-native, insert data in the webview like this <WebView style={{ height: 200, }} ref={'highCharts'} source={{ html:<your highchart string > }} />
I want to access all the high chart APIs outside the scope, I tried ref={'chart' } but didn't help, I am getting all the props via ref but not other functions
for the example, how to use below statements outside of the scope like in componentDidMount() ( ie. this.series[0] is not available outside the scope)
var series = this.series[0];
setInterval(function () {
var x = (new Date()).getTime(), // current time
y = Math.random();
series.addPoint([x, y], true, true);
}, 1000);
The text was updated successfully, but these errors were encountered: