无法加载 highcharts.js 和 highmaps.js(map.js 不起作用)
Can't load highcharts.js and highmaps.js (map.js don't work)
在单个网页中,需要用 highcharts.js
和 highmaps.js
制作 3 个不同的图。我尝试的第一个是加载两个脚本,但显然不起作用。读取 HighMaps Doc,如果已经加载 Highcharts,而不是 highmaps.js
我必须加载:
<script src="http://code.highcharts.com/maps/modules/map.js"></script>
所以我试了一下,但没有用,我看不到 3 个图,为什么?这是 my code, and this are the 3 plots: plot 1, plot 2 and plot 3
谢谢!
在浏览器控制台中可以看到 window 它给你 Highcharts Error 17。要修复此错误,您需要再包含一个 highcharts 脚本。添加以下行,你会没事的:
<script src="http://code.highcharts.com/highcharts-more.js"></script>
请务必在加载 jQuery 和 Highcharts 后包含此内容。
可以看到工作fiddlehere。
在单个网页中,需要用 highcharts.js
和 highmaps.js
制作 3 个不同的图。我尝试的第一个是加载两个脚本,但显然不起作用。读取 HighMaps Doc,如果已经加载 Highcharts,而不是 highmaps.js
我必须加载:
<script src="http://code.highcharts.com/maps/modules/map.js"></script>
所以我试了一下,但没有用,我看不到 3 个图,为什么?这是 my code, and this are the 3 plots: plot 1, plot 2 and plot 3 谢谢!
在浏览器控制台中可以看到 window 它给你 Highcharts Error 17。要修复此错误,您需要再包含一个 highcharts 脚本。添加以下行,你会没事的:
<script src="http://code.highcharts.com/highcharts-more.js"></script>
请务必在加载 jQuery 和 Highcharts 后包含此内容。
可以看到工作fiddlehere。