如何在highcharts中修复隐藏的dataLabel?

时间:2017-08-14 15:32:05

标签: highcharts highcharts-ng

请查看JSFIDDLE。在这里,绿色条不显示任何值。我知道添加overflow:"none", crop:false会显示该值。但它超出了绘图区域,有时对于较大的数字,它与标题重叠。我想在条形图中获得绿色条形值(仅限),而不是隐藏值。

1 个答案:

答案 0 :(得分:1)

对于要在其中的特定列(即绿色列)标签值,您可以在数据中添加属性inside: true。有关详细信息,请参阅dataLabels.inside

 series: [{
    color: colors[0],
    showInLegend: false,
     data: [{
     ....//first value
     , {
      y: 3500,
      name: 'Second',
      color: colors[1],
      dataLabels: {
        inside: true //labels  will be inside column
      }
    },... // third and remaining
   });

Fiddle演示