我实际上正在使用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 .= "]
});
});
你能帮我吗?