我实际上正在使用 jquery-ui 选项卡。我需要在每个选项卡中放入一些来自 HighCharts 库的图表。它在 Firefox 上运行良好,但问题出在 IE8 上。确实,图表根本不显示,生成图表时似乎崩溃了。对不起,我不能给你一个 url 例子。
这是一张图表的代码:
$(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 .= "]
});
});
你能帮我吗 ?