使用ie8的jquery ui选项卡中不显示highcharts

时间:2013-03-27 11:13:39

标签: php internet-explorer-8 highcharts jquery-ui-tabs

我实际上正在使用jquery-ui标签。我需要在每个选项卡中放入一些HighCharts库中的图表。它在firefox上工作正常,但问题出在IE8上。实际上,图表根本不会显示,而且在生成图表时似乎会崩溃。 对不起,我不能给你一个网址示例。

以下是一张图表的代码:

$(document).ready(function() {
var chart1 = new Highcharts.Chart({
    chart: {
        renderTo: 'container1',
        borderColor: '#CCCCCC',
        borderWidth: 2,
        type: 'line',
        height : ".$height.",
        width : ".$width.",
        zoomType: 'x'
    },
    title: {
        text: 'exemple'
    },      
    subtitle: {
        text: 'subtitle'
    },
    xAxis: {
        categories: ['" . implode("', '", $xValues) . "'],
                    type:'datetime',
                    maxZoom: 1
    },
    yAxis: {
        title: {
            text: 'ordonnees'
        }
    },
    exporting: {
        type : 'image/png',
        scale: 2

    },
    plotOptions: {
        line: {
            dataLabels: {
                enabled: true 
                },
        marker:{
            enabled: true
            }
        }
    },
    series: [";
        $d = "";
        foreach($data as $leg => $val)
        {
            $s =  implode(', ', $val);
            $d .= "{ name: '$leg',
            data: [" . $s . "] }, ";
        }
        $sortie .= $d;
        $sortie .= "]
    });
});

你能帮我吗?

0 个答案:

没有答案