0

我正在尝试使用 highcharts示例。但它不起作用,我无法理解,我错过了什么吗?

<!DOCTYPE HTML><html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Highcharts Example</title>

</head>

<body>

    <h1>Highcharts example</h1>
    <div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>


    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>

    <script type="text/javascript" src="http://code.highcharts.com/highcharts.js"></script>
    <script type="text/javascript" src="http://code.highcharts.com/modules/exporting.js"></script>   


    <script type="text/javascript">
        $(function () {
            $('#container').highcharts({
                chart: {
                    type: 'column'
                },
                title: {
                    text: 'Column chart with negative values'
                },
                xAxis: {
                    categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas']
                },
                credits: {
                    enabled: false
                },
                series: [{
                    name: 'John',
                    data: [5, 3, 4, 7, 2]
                }, {
                    name: 'Jane',
                    data: [2, -2, -3, 2, 1]
                }, {
                    name: 'Joe',
                    data: [3, 4, 4, -2, 5]
                }]
            });
        });    
    </script>

</body></html>

我已经尝试过使用这条路径,但无论如何:

<script type="text/javascript" src="http://code.highcharts.com/highcharts.js"></script>
<script type="text/javascript" src="http://code.highcharts.com/modules/exporting.js"></script>   

如何设置正确的路径?例如,我使用“ highcharts/js/highcharts.js ”之类的路径,它确实存在于项目目录中。

4

2 回答 2

1

你错过了

</html> 

标记在最后。

但是,您在小提琴上的代码运行良好。

于 2013-08-13T08:37:48.197 回答
0

我刚刚复制了您的代码并将其粘贴到 html 文件中。它工作得很好。

Here is the screenshot

在此处输入图像描述

于 2013-08-13T08:51:22.633 回答