supervons / react-native-echarts-pro

A React-Native charts based on Apache ECharts, support various charts and map.
https://supervons.github.io/react-native-echarts-pro-docs/
MIT License
216 stars 33 forks source link

希望能加上 #63

Closed ng520tx closed 2 years ago

ng520tx commented 2 years ago

geoselectchanged:geo 中地图区域切换选中状态的事件(用户点击选中会触发该事件。)。

geoselected:geo 中地图区域选中后的事件(使用dispatchAction可触发此事件,用户点击不会触发此事件(用户点击事件请使用 geoselectchanged))。

geounselected:geo 中地图区域取消选中后的事件,使用dispatchAction可触发此事件,用户点击不会触发此事件(用户点击事件请使用 geoselectchanged)。

supervons commented 2 years ago

很不错的建议,正在开发自定义Event,预计下个版本发布。(两周内,9月10日前)

supervons commented 2 years ago

1.8.6 版本已支持自定义 Event,使用 eventActions 属性,如 finished 事件:

  eventActions={{
    finished:()=>{
      alert(1)
    }
  }}

Demo 可参考: eventActions-Demo

后续会详细在文档里介绍。