我有一个启用了数据标签的 Highcharts 图表。默认情况下,数据标签附加到每个数据栏的末尾(请参阅此小提琴:http: //jsfiddle.net/cyphun/NHCvW)。
是否可以移动负数据标签并将它们显示在 x 轴旁边而不是栏的末端?这是我想做的修改后的屏幕截图:
http://cl.ly/image/2G3F0I2l2m1z
这是我的 Highcharts 示例代码的副本:
$(function () {
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
type: 'column'
},
plotOptions: {
column: {
dataLabels: {
enabled: true,
useHTML: true,
style: {
color: '#252525',
fontWeight: 'bold'
}
}
}
},
title: {
text: 'Column chart with negative values'
},
xAxis: {
categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas']
},
tooltip: {
formatter: function() {
return ''+
this.series.name +': '+ this.y +'';
}
},
credits: {
enabled: false
},
series: [{
name: 'Jane',
data: [2, -2, -3, 2, 1]
}]
});
});
});
谢谢您的帮助!