mount(<myHighchartsComponent />)
ハイチャートが本来のdivでレンダリングされない場合。私が得るのは次のとおりです。
<div id="579a8c5de9cf144f0c7653df" style="width: 100%; height: 94%;"></div>
コンポーネントはブラウザで完全にレンダリングされています。
詳細:
componentDidMount() {
this.chart = new highcharts.Chart(this.options);
}
render() {
return <div id={this.props.widget.id}></div>;
}
何か案は?