这是我的图表目前的样子:
我创建y轴的功能如下:
function generateYAxises(){
var result = [];
for (var i = 0; i < af.currentDataDetails.length; i++) {
var yAxis = {
showEmpty: false,
title: {
text: af.currentDataDetails[i].paramDisplayName,
style: {
color: Highcharts.getOptions().colors[i]
}
},
labels: {
format: '{value}',
style: {
color: Highcharts.getOptions().colors[i]
}
},
offset: 70
};
result.push(yAxis);
}
return result;
}
如何应对叠加效果?