我正在尝试在我的绘图上制作渐变不透明度效果,但是我无法单独定位每列的不透明度,只能按系列进行。
serie.columns.template.setAll({
strokeOpacity: 0,
cornerRadiusBR: 20,
cornerRadiusTR: 20,
cornerRadiusBL: 20,
cornerRadiusTL: 20,
fillOpacity: 0.8,
width: am5.percent(100)
});
有人尝试过像这样修改列上的 fillOpacity 吗?
如果有人需要这个,我发现这可以解决我的问题:
serie.columns.template.adapters.add(
'fillOpacity',
function (fillOpacity, target) {
return 0.7; // Return the opacity you want for each column
}
);