美文网首页
蚂蚁金服_F2图表

蚂蚁金服_F2图表

作者: 鱼和熊掌我都有 | 来源:发表于2018-10-10 12:14 被阅读0次

使用场景:h5端需要图表 数据较多需要图表平移

遇到的问题

  1. 引入手势滑动组件 浏览器报错 'interaction' is not a function
    问题代码
const F2 = require('@antv/f2')
require('@antv/f2/lib/interaction/pan')
// ...
chart = new F2.Chart({
  id: 'myChart',
  pixelRatio: window.devicePixelRatio
 })
chart.interaction('pan')
chart.render()

解决方法:修改引入F2组件的路径

const F2 = require('@antv/f2/lib/index')

相关文章

网友评论

      本文标题:蚂蚁金服_F2图表

      本文链接:https://www.haomeiwen.com/subject/ondpaftx.html