我试图在图表中以高图显示6点。现在可以在图表上轻松绘制点,但缺少一些相应的x轴标签。
我希望在不增加图表宽度的情况下显示所有x轴标签。
$('#container').highcharts({
chart: {
type: 'area',
height: 200,
width: 300
},
title: {
text: ''
},
subtitle: {
text: ''
},
credits: {
enabled: false
},
xAxis: {
allowDecimals: false,
gridLineWidth: 0
},
yAxis: {
labels: {
enabled: false
},
gridLineWidth: 0,
visible: false
},
legend: {
enabled: false
},
plotOptions: {
area: {
marker: {
enabled: true,
symbol: 'circle',
radius: 5,
states: {
hover: {
enabled: true
}
}
},
dataLabels: {
enabled: false
}
}
},
tooltip: {
},
series: [{
name: '',
data: [1, 2, 3, 4, 5, 6]
}]
});
我感谢任何帮助! :)
答案 0 :(得分:1)