这个问题可能很愚蠢,我道歉。我正在使用 $.each 循环遍历 JSON 中的不同对象,并且对于每个对象,我使用以下代码使用 Highcharts 构建图表:
var chart = new Highcharts.Chart({
chart: {
renderTo: ('chart' + index),
type: 'line',
backgroundColor:'rgba(255, 255, 255, 0.0)', // Transparent BG
width:190,
height: 80,
events:{
click: function(e){
drawChart('area',index);
}
}
},
plotOptions: {
line: {
marker: { enabled: false }
}
},
xAxis: {
categories: xAxis,
labels: { enabled:false },
lineWidth:0,
tickWidth: 0,
lineColor: '#FFFFFF'
},
yAxis: {
title: { text: null }, // Set the text to null to disable the label
labels: { enabled: false },
gridLineWidth: 0
},
series: [{
data: yAxis,
color: '#FFF'
}]
});
正如你所看到的,我已经指定了一个“点击”事件,因为我需要激活对 plotArea 的点击。点击应该调用另一个在指定中绘制图表的函数,但它不起作用:(这是 drawChart() 函数。
function drawChart(ctype,index){
var chartWidth = $("#container").width() - 50;
var chart1 = new Highcharts.Chart({
chart: {
renderTo: (ctype + 'Chart'),
backgroundColor:'rgba(255, 255, 255, 0.0)', // Transparent BG
width: chartWidth,
height:400,
type: ctype
},
plotOptions: {
line: {
marker: { enabled: false }
},
series: {
shadow: { color: '#CCC' },
stickyTracking: false
}
},
xAxis: {
categories: itemsX[index]
},
series: [{
data: itemsY[index],
type: ctype,
color: '#CCCCCC'
}]
});
} // Close drawChart()
有人可以帮我理解为什么吗?谢谢!