HTML Box - mysql Daten und Highcharts anzeigen

Hallo,

leider wird mein Highchart in der HTMl String Box in IPS nicht angezeigt. Hier der Code:

<?
//echo 'adddd';
//include 'aadata.php';

?>

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

        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
        <script type="text/javascript">
$(function() {
   $.getJSON('https://www.highcharts.com/samples/data/jsonp.php?filename=aapl-c.json&callback=?', function (data) {
   //$.getJSON("/user/test/aadata.php", function(data) {

        // Create a timer
        var start = + new Date();

        // Create the chart
        $('#container').highcharts('StockChart', {
            chart: {
                events: {
                    load: function(chart) {
                        this.setTitle(null, {
                            text: 'Built chart at '+ (new Date() - start) +'ms'
                        });
                    }
                },
                zoomType: 'x'
            },

            rangeSelector: {
                buttons: [{
                    type: 'day',
                    count: 1,
                    text: '24h'
                }, {
                    type: 'week',
                    count: 1,
                    text: '1w'
                }, {
                    type: 'month',
                    count: 1,
                    text: '1m'
                }, {
                    type: 'month',
                    count: 6,
                    text: '6m'
                }, {
                    type: 'year',
                    count: 1,
                    text: '1y'
                }, {
                    type: 'all',
                    text: 'All'
                }],
                selected: 0
            },

            yAxis: {
                title: {
                    text: 'Temperatur (°C)'
                }
            },

            title: {
                text: 'Wohnraumtemperatur'
            },

            subtitle: {
                text: 'Built chart at...' // dummy text to reserve space for dynamic subtitle
            },

            series: [{
                name: 'Temperatur',
                type: 'area',
                data: data,
                tooltip: {
                    valueDecimals: 1,
                    valueSuffix: ' °C'
                },
                fillColor : {
                    linearGradient : {
                        x1: 0,
                        y1: 0,
                        x2: 0,
                        y2: 1
                    },
                    stops : [[0, Highcharts.getOptions().colors[0]], [1, 'rgba(0,0,0,0)']]
                },
            }/*,
            {
                name: 'Temperatur',
                type: 'area',
                data: datarasp,
                tooltip: {
                    valueDecimals: 1,
                    valueSuffix: ' °C'
                },
                fillColor : {
                    linearGradient : {
                        x1: 0,
                        y1: 0,
                        x2: 0,
                        y2: 1
                    },
                    stops : [[0, Highcharts.getOptions().colors[0]], [1, 'rgba(0,0,0,0)']]
                },
            }*/]

        });
    });
});
        </script>
    </head>
    <body>
<script src="/user/test/highstock/js/highstock.js"></script>
<script src="/user/test/highstock/js/modules/exporting.js"></script>

<div id="container" style="height: 500px; min-width: 500px"></div>
    </body>
</html>

Habt ihr eine Idee?