我第一次接近高潮图,我以这种方式组合了两个系列的图表
var options = {
chart: {
renderTo: 'container'
},
title: {
text: "Prova Combinato"
},
yAxis: {
min: 0,
title: {
text: 'PRECIPITAZIONI (mm)'
}
},
series: [{
name: 'Misure',
color: '#4572A7',
type: 'spline'
}, {
name: 'Temperature',
color: '#89A54E',
type: 'column'
}]
}
然后在两个ajax调用中以这种方式填充系列的数据
options.series [0] .data = series; var chart = new Highcharts.Chart(options);
options.series [1] .data = series2; var chart = new Highcharts.Chart(options);
但在布局中,“样条”系列属于“列”系列。 如何将“样条”放在“列”上。如何设置系列的等级?
非常感谢你:)