在scroll-view中使用u-charts,滚动图表

 1、问题

直接在scroll-view中使用可滚动的图表,图表是无法滚动的,图表的滚动事件和scroll-view的产生了冲突

2、解决方式 

  • u-charts设置inScrollView为true,表示图表存在于scroll-view内
  • u-charts设置disableScroll为true,拖动图表时,禁用scroll-view滚动

  type="line"
  :opts="opts"
  :chartData="chartData"
  inScrollView
  disableScroll
  />

你可能感兴趣的:(html,前端)