dimanche 31 juillet 2016

Highcharts error #13

I created a highchart element on my page. Then I wanted to rewrite it as a highstock element. I had some errors with highstock and I could`t get rid of them. Finally i copy-pasted highstock code from documentation but it also gives an error.

Full HTML:

<!DOCTYPE html>
<html>
<head>
    <title>avra</title>

    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" type="text/css" href="css/all.css">
    <link rel="stylesheet" type="text/css" href="font/font-awesome/css/font-awesome.min.css">

    <!-- HTML5 SHIV -->
    <!--[if lt IE 9]>
        <script type="text/javascript" src="http://ift.tt/26g2rAw"></script>
    <![endif]-->
</head>
<body>

    <main>
            <a href="#">POP-UP</a>
    </main>

    <div class="container">

    </div>

    <script type="text/javascript" src="node_modules/jquery/dist/jquery.min.js"></script>
    <script type="text/javascript" src="node_modules/highcharts/highstock.js"></script>
    <!--<script type="text/javascript" src="node_modules/highcharts/modules/exporting.js"></script>-->
    <script type="text/javascript" src="js/script.js"></script>
</body>
</html>

My JS file:

$(document).ready(function(){
    $.getJSON('http://ift.tt/NjQdCo?', function (data)    {
        // Create the chart
        var dataObject = {
            rangeSelector: {
                selected: 1,
                inputEnabled: $('#container').width() > 480
            },

            title: {
                text: 'AAPL Stock Price'
            },

            series: [{
                name: 'AAPL',
                data: data,
                tooltip: {
                    valueDecimals: 2
                }
            }],

            chart: {
                renderTo: 'container'
            }

        };

         var chart = new Highcharts.StockChart(dataObject);
        //var chart = $('#container').highcharts('StockChart', dataObject);
    });
});

Uncaught Error: Highcharts error #13: http://ift.tt/1EFIti9




Aucun commentaire:

Enregistrer un commentaire