React-Native FusionCharts事件不会在IOS上触发

时间:2019-06-21 18:58:13

标签: react-native react-native-ios fusioncharts

我已经从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上什么也没得到

0 个答案:

没有答案