标签:require div 问题 let col com color har 引用
因为Echarts官网的例子都是引入整个Echarts.js。如果使用按需引入对应模块就要记得引入legend模块,才能显示出图例。
例如这样:
require("echarts/lib/component/legend");
像我使用Bar,我所引用的模块有
// 引入基本模板 let echarts = require("echarts/lib/echarts"); // 引入柱状图组件 require("echarts/lib/chart/bar"); // 引入提示框和title组件 require("echarts/lib/component/tooltip"); require("echarts/lib/component/title"); // 引入legend模块 require("echarts/lib/component/legend");
标签:require div 问题 let col com color har 引用
原文地址:https://www.cnblogs.com/zhengshize/p/9660907.html