在图表边距之外显示Highcharts series.name

时间:2014-01-13 14:52:06

标签: javascript css charts highcharts

我目前正在自定义Highcharts堆积柱形图,我将在堆积列旁边返回系列名称和数据百分比。

我使用了这个工作正常:

plotOptions: {column: {dataLabels: {formatter: function () {return this.series.name + ' ' + this.y + '%' } } } }

我面临的问题是我希望我的图表相当窄,减小宽度意味着系列名称&如果系列标签太宽,则会切断一些系列标签。

有没有办法在图表之外返回系列标签?

这就是我想要创造的:

This is what I'm trying to create

这是我目前所拥有的:

This is currently what I've got

我可以让图表更宽,标签都会显示但这并不理想 - 任何帮助都会受到赞赏

1 个答案:

答案 0 :(得分:1)

我用以下方法解决了这个问题:

dataLabels: {crop: false, overflow: 'none',}