Hi I have a bar chart in a report and what to be able to set the series fill colour based on the data.
public
class OpenRequestPerPriority
{
public string PriorityName { get; set; }
public int Opened { get; set; }
public string ColourString { get; set; }
}
This is returned as IEnumerable collection and the chart displays the info correctly as attached image. How can I bind the bar colour to the ColourString field which is HEX colour string #FF so that each bar displays the corresponding colour .