Highcharts:Uncaught TypeError:$(...)。highcharts不是函数

时间:2015-08-14 13:26:34

标签: javascript jquery jsp highcharts

在我的JSP应用程序中运行HighCharts时出现此错误。

Uncaught TypeError: $(...).highcharts is not a function(anonymous function) @ VendorReports:125n.Callbacks.j @ jquery-1.11.0.js:893n.Callbacks.k.fireWith @ jquery-1.11.0.js:928n.extend.ready @ jquery-1.11.0.js:982K @ jquery-1.11.0.js:989

请建议做什么

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
$(function () {
    $('#container').highcharts({
        colors: ["#7cb5ec", "#f7a35c"],
        chart: {
            type: 'column'
        },
        title: {
            text: 'Total fruit consumtion, grouped by gender'
        },
        xAxis: {
           categories: ['Apples' ]
        },
        yAxis: {
            allowDecimals: false,
            min: 0,
            title: {
                text: 'Number of fruits'
            }
            //Nothing wrong with this code

4 个答案:

答案 0 :(得分:40)

我也遇到过这个问题。确保在highchart.js之前导入jQuery。这解决了我的问题。

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>

答案 1 :(得分:37)

如果替换

会发生什么
$('#container').highcharts({
        colors: ["#7cb5ec", "#f7a35c"],
        chart: {
            type: 'column'
        },
        /* ... */

通过

var chart = new Highcharts.Chart({
                colors: ["#7cb5ec", "#f7a35c"],
                chart: {
                    type: 'column',
                    renderTo: 'container'
                },
                /* ... */

我和你刚才有同样的问题,我通过使用这种类型的初始化解决了这个问题。

答案 2 :(得分:2)

我使用的是高版图的旧版本。从他们的网站上我假设特定版本下列出的版本是他们的最新版本并使用它,所以它不会自动更新我。然而,他们列出的版本是超级旧的,所以将其更改为实际的最新版本修复了问题。

答案 3 :(得分:1)

从官方示例中采用的方法运作良好。他们在body标签中定义了include script标签,因此我认为Kabulan0lak给出的解决方案更好。

<html>
<head>
    <title>Highcharts Example</title>

    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
    <script type="text/javascript">
        $(function () {
            $('#container').highcharts({
                chart: {
                    type: 'spline'
                }
                // ... other options and data/series
            });
        });
    </script>
</head>

<body>
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>
</body>
</html>