I want to bind a subset of my data source to chart object on my Telerik report and I cannot figure out how to accomplish this.
I want to bind my chart object to the SubList property in the MyObject class.
public class MyObject
{
public int ID { get; set; }
public string Name { get; set;}
public List<
MySubObject
> SubList { get; set; }
}
public class MySubObject
{
public int ID { get; set; }
public decimal Percentage { get; set; }
public string SurveyGroupName { get; set;}
}
I want to bind my chart object to the SubList property in the MyObject class.