为什么echarts3打开不了
发布网友
发布时间:2022-10-02 15:59
我来回答
共2个回答
热心网友
时间:2023-10-08 21:59
因为在做数据可视化的过程中,查询到echarts是个不错的选择,特别是有支持的地图显示功能。
但是在使用过程中,按照示例代码
[html] view plain copy
<script>
var chart = echarts.init(document.getElementById('main'));
chart.setOption({
series: [{
type: 'map',
map: 'china'
}]
});
</script>
中国地图能够正常使用,但是显示省份地图时报错:Map jiangxi not exists. You can download map file on http://echarts.baidu.com/download-map.html
后来发现map:对应的值应该为中文 而不是拼音,真是费一大番功夫。
[html] view plain copy
</pre><pre name="code" class="html"><script type="text/javascript">
var chart = echarts.init(document.getElementById('main'));
chart.setOption({
series: [{
type: 'map',
map: '江西' //map时省份必须是中文
}]
});
</script>
热心网友
时间:2023-10-08 22:00
不是正版吧,要不卸载了重装下吧