如何在系列中隐藏单点栏

问题描述 投票:0回答:2

我需要隐藏系列中的最后一点,但必须保留标签。似乎只能设置pointWidth而不是pointHeight。如何强制显示标签并隐藏最后一点的栏栏?

series: [
  {
   type: 'column',
   data: [1, 2, 1, 2, 3, { pointWidth: 0, y: 5 }]
  }
]

Here's a demo of the current/expected behavior

谢谢

highcharts
2个回答
1
投票

您可以将最后一列的颜色设置为透明:

series: [{
  data: [3,5,7,4,{y:5,color: 'transparent'}]
}]

示例:http://jsfiddle.net/jlbriggs/7o2hafuy/


0
投票

dataLabels Api Doc这是可能的

series: [{
  type: 'column',
  dataLabels:{
    enabled:true
  },
  data: [1, 2, 1, 2, 3, {
    pointWidth: 0,
    y: 5
  }]
}]

Fiddle

© www.soinside.com 2019 - 2024. All rights reserved.