如何防止数据标签重叠?我已经尝试使用formatter选项并使用CSS position / top / bottom等定位dataLabel ...数据标签是必需的。我不能只使用工具提示: - )
谢谢,
$(function () {
var chart = new Highcharts.Chart({
chart: {
renderTo: 'container'
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
plotOptions: {
series: {
dataLabels: {
enabled: true,
backgroundColor: 'rgba(255, 255, 255, 0.7)',
borderWidth: 1,
shadow: true,
borderRadius: 1,
useHTML: true,
padding: 1
}
}
},
series: [{
name: 'test',
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4] },{
name: 'test2',
data: [31, 80, 106.4, 22, 150, 17, 135.7, 14, 230, 181, 9, 54]
}]
});
});
答案 0 :(得分:1)
系列中的data属性可以作为对象数组传递,而不是作为数字数组传递。每个对象都可以定义自己的dataLabels选项(http://api.highcharts.com/highcharts#series.data)。对于第一个系列,您可以将点对齐到左侧,将第二个对齐到右侧,这样它们就不会重叠。