echarts 踩坑 : 为什么效果出不来?看看有没有正确引入
Posted foxcharon
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了echarts 踩坑 : 为什么效果出不来?看看有没有正确引入相关的知识,希望对你有一定的参考价值。
今天我要给 echarts 组件加个 dataZoom 功能,结果发现没有效果。
后来发现是引入 echarts 模块的问题。
如果是按需引入的话,必须引入相应的功能模块才能使用相应的功能。
举例:
import echarts from ‘echarts/lib/echarts‘ import ‘echarts/lib/chart/bar‘ import ‘echarts/lib/component/tooltip‘ import ‘echarts/lib/component/legend‘ import ‘echarts/lib/component/title‘
我没有引入 dataZoom ,所以不能使用。
import echarts from ‘echarts/lib/echarts‘ import ‘echarts/lib/chart/bar‘ import ‘echarts/lib/component/tooltip‘ import ‘echarts/lib/component/legend‘ import ‘echarts/lib/component/title‘ import ‘echarts/lib/component/dataZoom‘
这样就可以了。
以上是关于echarts 踩坑 : 为什么效果出不来?看看有没有正确引入的主要内容,如果未能解决你的问题,请参考以下文章
sass @mixin 这样使用为啥出不来效果??求大神帮忙
请大神帮我看看我的Eclipse的获取数据,没报错就是显示不出来,测试方法能出来,页面数据出不来,找了好久
如何解决,小程序里echarts画的饼图在安卓手机上效果不正常