码迷,mamicode.com
首页 > 其他好文 > 详细

echarts 踩坑 : 为什么效果出不来?看看有没有正确引入

时间:2019-11-24 19:18:55      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:bar   tip   rom   title   one   不能   tle   zoom   code   

今天我要给 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 踩坑 : 为什么效果出不来?看看有没有正确引入

标签:bar   tip   rom   title   one   不能   tle   zoom   code   

原文地址:https://www.cnblogs.com/foxcharon/p/11923509.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!