Answer:
By setting the data label setting visibility property as false, when empty data is assigned to the accumulation chart. Here is the code snippet for your reference.
<AccumulationDataLabelSettings Visible="@visibility">AccumulationDataLabelSettings> public bool visibility = true; this.Orders = new List(); if (this.Orders.Count == 0) |
Find the sample for to set Empty data in accumulation chart from here.