Hi Team,
I am trying to generate a report with below object datasource PopulationByAgeRange which is a list, and I am trying to bind DemographicData property to a table which is also a list.
public class PopulationByAgeRange
{
public IEnumerable<DemographicData> DemographicData { get; set; }
public string LayerType { get; set; }
public decimal LayerValue { get; set; }
public uint CurrentYear { get; set; }
public uint ForecastYear { get; set; }
public string Logo { get; set; }
}
If PopulationByAgeRange was a single object I could bind the table to Fields.DemographicData but since PopulationByAgeRange is a list the table is not rendered with Fields.DemographicData. Could you please let me know how to bind the table when object datasource is a list.