我已经从react-native-fusioncharts图表中实现了2d可拖动区域图。我试图在数据更改时触发一个事件,该事件在android上可以正常工作,但在iOS上不会触发任何事件。
我尝试了dataplotDragEnd和dataPlotClick,但均未触发。
state = {
...,
events: {
dataplotDragEnd: (e, a) => {
Alert.alert("called")
console.log(e.data.endValue)
},
}
}
}
render() {
return (
<FusionCharts
type={this.state.type}
width={this.state.width}
height={this.state.height}
dataFormat={this.state.dataFormat}
dataSource={this.state.dataSource}
events={this.state.events}
libraryPath={this.libraryPath}
/>
)
}
我希望事件触发时会发出警报消息和console.log,但是目前仅在IOS上什么也没得到