FlyingFire

Results 2 issues of FlyingFire

* **F2 Version**: 2.1.0 * **Platform**: MacOs Mojave10.14.2 * **Mini Showcase(like screenshots)**: * **CodePen Link**: 使用新版本f2,在官方的demo中,图表的初始化是放在页面的data之中,这时候是可以正常进行图表交互,图表点击能够正常显示数据,不过我尝试进行异步的数据加载,我在代码中初始化的时候传入一个空init函数,然后在页面Load的时候,动态的给这个初始化函数赋值,最后能够显示图表,不过在微信小程序上无法点击显示数据,图表的所有交互行为都无效,即使配置了ToolTip之后也是一样: ![Snip20200407_4](https://user-images.githubusercontent.com/11881030/78624637-affd0180-78bc-11ea-97d8-505f3ebc53fa.png) 不知道哪里出了问题,请各路大神指教,谢谢~

hello~我在微信小程序中尝试封装F2为组件,使用的是官方k线demo中的`ff-canvas`来绘制,不过我在封装初始化方法的时候,发现有一些问题: ```javascript attached: function() { var that = this; let params = that.properties; that.ct = that.selectComponent('#chart'); that.ct.init((canvas, width, height, F2) => { console.log(F2) // 这里可以打印出F2实例信息 initChart(canvas, width, height, F2, params)...