任何人都可以帮助我吗?我们正在尝试为我们的Web应用程序实现Highchart,但在某些图表中,由于更接近的点,X轴标签重叠。
我们用于X轴的代码:
Highcharts.setOptions({
xAxis: {
gridLineWidth: 1,
lineColor: '#000',
tickColor: '#000',
labels: {
style: {
color: '#000',
font: '11px Trebuchet MS, Verdana, sans-serif',
}
},
title: {
style: {
color: '#333',
fontWeight: 'bold',
fontSize: '12px',
fontFamily: 'Trebuchet MS, Verdana, sans-serif'
}
}
}
})
和
setXAxisParameters = {
categories: xAxisCategories,
title: {
text: xAxisTitle
},
labels: {
formatter: function() {
xVal = (this.value).split("#")[0];
if(xVal != '')
return xVal;
else
return '';
},
y: 5,
rotation: 90,
align: 'left'
}
}
提前致谢。