0
データラベルがバーの内側に表示されることがあります。 たとえば、「アジア」のバーのjsfiddleには、バーの内側にデータラベルが表示されています。 バーの外側に常にデータラベルを表示する方法はありますか?バーの内部にデータラベルが表示されることがある
Highcharts.chart('container', {
chart: {
type: 'bar'
},
title: {
text: 'Historic World Population by Region'
},
subtitle: {
text: 'Source: <a href="https://en.wikipedia.org/wiki/World_population">Wikipedia.org</a>'
},
xAxis: {
categories: ['Africa', 'America', 'Asia', 'Europe', 'Oceania'],
title: {
text: null
}
},
yAxis: {
min: 0,
title: {
text: 'Population (millions)',
align: 'high'
},
labels: {
overflow: 'justify'
}
},
tooltip: {
valueSuffix: ' millions'
},
plotOptions: {
bar: {
dataLabels: {
enabled: true
}
}
},
credits: {
enabled: false
},
series: [{
name: 'Year 2012',
data: [1052, 954, 4250, 740, 38]
}]
});
外にそれを維持するために十分なスペースがないので、それが内部に示されています – mxr7350