有哪位兄弟做过雷达图的么 series.radar not exists 求帮忙
echarts吧
全部回复
仅看楼主
level 1
Error: Component series.radar not exists. Load it first.
var option = {
title: {
text: '基础雷达图'
},
tooltip: {},
legend: {
data: ['预算分配(Allocated Budget)', '实际开销(Actual Spending)']
},
radar: {
// shape: 'circle',
indicator: [
{name: '销售(sales)', max: 6500},
{name: '管理(Administration)', max: 16000},
{name: '信息技术(Information Techology)', max: 30000},
{name: '客服(Customer Support)', max: 38000},
{name: '研发(Development)', max: 52000},
{name: '市场(Marketing)', max: 25000}
]
},
series: [{
name: '预算 vs 开销(Budget vs spending)',
type: 'radar',
// areaStyle: {normal: {}},
data: [
{
value: [4300, 10000, 28000, 35000, 50000, 19000],
name: '预算分配(Allocated Budget)'
},
{
value: [5000, 14000, 28000, 31000, 42000, 21000],
name: '实际开销(Actual Spending)'
}
]
}]
};
2017年04月04日 12点04分 1
level 1
是否已解决,也遇到同样的问题,求解
2017年05月18日 11点05分 2
level 1
引用的库不对,应该引用完整的还不是常用的
2017年06月07日 03点06分 3
level 1
<script src="https://cdn.bootcss.com/echarts/3.6.2/echarts.min.js"></script>
用雷达图要用完整的库。
2017年06月19日 05点06分 4

2017年12月27日 09点12分
level 1
解决了么,求指导。
2017年09月07日 07点09分 5
1