I am using Angular with amcharts 4. I have an amcharts SlicedChart with FunnelSeries. The problem is that the top slice is always the same max width, while I want it to always be some percent of the max width. Next slices should scale down treating the top one’s width as a new max width.
I tried to set width and maxWidth properties of series and slices but these seem to have no effect:
series.width = am4core.percent(maxScore);
series.slices.template.width = am4core.percent(maxScore);
series.slices.template.slice.width = am4core.percent(maxScore);
Adjusting the width of the whole chart kinda works but it scales down the entire chart, and I want only the slices to be scaled – labels etc. should be unchanged. I also tried using adapters but to no effect.