Hi Euijun,
Greetings from Syncfusion.
We suggest you to specify same value for all data points to display funnel in equal height and OnDataLabelRender event to customize data labels. We have prepared sample based on your requirement. Please check with below snippet and screenshot.
|
<SfAccumulationChart>
<AccumulationChartEvents OnDataLabelRender="LabelRender"></AccumulationChartEvents>
</SfAccumulationChart>
@code{
public int Count = 0;
public String[] Labels = new String[] { "1","2","3","4","5" };
public void LabelRender(AccumulationTextRenderEventArgs args)
{
args.Text = Labels[Count];
Count++;
}
} |
Kindly revert us if you have any concerns.
Regards,
Durga G