我使用HighCharts显示预算列表,但我的水平空间有限。
目前,我有这个:
但我想要的是,标签被移动到图表中,写在每个栏上方。这可能吗?
答案 0 :(得分:1)
您可以在x轴上禁用类别,然后只使用数据标签:
xAxis: {
categories: ['Africa', 'America', 'Asia', 'Europe', 'Oceania'],
labels: {
enabled: false
}
},
plotOptions: {
bar: {
dataLabels: {
enabled: true,
format: '{key}',
inside: true,
align: 'left',
crop: false,
overflow: 'none',
y: -20
}
}
}