Currently, I am attempting to create a gradient opacity effect on my plot. Unfortunately, I am facing difficulty in targeting the opacity of each column individually, as I can only seem to adjust it by series.
serie.columns.template.setAll({
strokeOpacity: 0,
cornerRadiusBR: 20,
cornerRadiusTR: 20,
cornerRadiusBL: 20,
cornerRadiusTL: 20,
fillOpacity: 0.8,
width: am5.percent(100)
});
Has anyone else experimented with changing the fillOpacity on the columns in a similar way?