you can use barGap:"- 100%"to implement
, but how to use
if there are multiple entries in a category that cannot be implemented with barGap?
you can use barGap:"- 100%"to implement
, but how to use
if there are multiple entries in a category that cannot be implemented with barGap?
I happen to encounter this problem. I achieve a similar effect by stacking bar charts:
series: [
{
name:'',
type:'bar',
stack: '',
data:yData,
barWidth: 12,
itemStyle: {
normal: {
color: "gray",
}
},
},
{
name:'',
type:'bar',
stack: '',
data:jianData,//max
barWidth: 12,
itemStyle: {
normal: {
color: "-sharp003451",
}
},
}
]