ハイチャートのツールチップがバー全体を覆うのを避けるにはどうすればよいですか? ドリルダウン機能を備えた棒グラフを作成しようとしていますが、以下の例の「John」のバーは常にツールチップ自体に含まれているため、ドリルダウンが非常に困難です。
$(function () {
$('#container').highcharts({
chart: {
type: 'column'
},
title: {
text: 'Column chart with negative values'
},
xAxis: {
categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas']
},
credits: {
enabled: false
},
plotOptions: {
series: {
cursor: 'pointer'
}
},
series: [{
name: 'John',
data: [-1, -1, -1, -1, 2]
}, {
name: 'Jane',
data: [2, -2, -3, 2, 1]
}, {
name: 'Joe',
data: [3, 4, 4, -2, 5]
}]
});
});