Unable to do any other action than “alert” when triggering the click event on Highcharts (React Native)

笑着哭i 提交于 2019-12-02 11:35:58

It's working now! The problem was the following (as I understand it):

  • Highcharts for React Native renders the chart within a WebView. For this reason only alerts can be made.
  • If you try to console.log directly (or call a method or anything else) it won't work because it's not getting to React Native, it's in the webview.
  • So the question was: how to pass data from the webview to React Native? And the answer iiiiis... window.postMessage()

Like this:

  1. In the config object (passed to the chart):

    plotOptions: {
          series: {
              point: {
                  events: {
                      click: function() {
                        window.postMessage( //data you want to send to react native )
                      }
                  }
              }
          }
        }
    
  2. Pass the onMessage method as prop to the ChartView such as you would pass it to a WebView (https://facebook.github.io/react-native/docs/webview#onmessage)

    <ChartView style={{ height: 300 }} config={conf} onMessage={m => onMessage(m)} options={options}></ChartView>
    
  3. Just now you can console.log, setState, or do anything in your react native onMessage function

    onMessage = (m) => { 
       console.log(m.nativeEvent.data)
    }
    

And that's it, now I can click a bar and change the state of my component ;)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!