antvis / F2

📱📈An elegant, interactive and flexible charting library for mobile.
https://f2.antv.vision/zh
MIT License
7.88k stars 647 forks source link

文档中说支持事件,但没有看到具体如何使用事件 #1884

Open thep0y opened 10 months ago

thep0y commented 10 months ago

这样传入点击事件,点击时却不触发:

      <Legend event={{
        onTouchStart: (e) => console.log(e),
      }}
      />
      // 或
      <Legend onTouchStart={(e) => console.log(e)} />
tangying1027 commented 8 months ago

目前只支持 图表标签shape上 声明事件 <rect onPan={()=>{ console.log('testttt') }}/>

legend组件上只开放了 onClick 事件