如何在系列中隐藏单点栏
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在系列中隐藏单点栏相关的知识,希望对你有一定的参考价值。
我需要隐藏系列中的最后一点,但必须保留标签。似乎只能设置pointWidth
而不是pointHeight
。如何强制显示标签并隐藏最后一点的栏栏?
series: [
{
type: 'column',
data: [1, 2, 1, 2, 3, { pointWidth: 0, y: 5 }]
}
]
Here's a demo of the current/expected behavior
谢谢
答案
您可以将最后一列的颜色设置为透明:
series: [{
data: [3,5,7,4,{y:5,color: 'transparent'}]
}]
示例:http://jsfiddle.net/jlbriggs/7o2hafuy/
另一答案
有dataLabels
Api Doc这是可能的
series: [{
type: 'column',
dataLabels:{
enabled:true
},
data: [1, 2, 1, 2, 3, {
pointWidth: 0,
y: 5
}]
}]
以上是关于如何在系列中隐藏单点栏的主要内容,如果未能解决你的问题,请参考以下文章