or
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 .
The sample template looks like this :
The whole thing should mimic microsoft word look and feel although it's not mandatory...
Any ideas???
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load |
If Not Page.IsPostBack Then |
ReportViewer1.Report = New Applications.Reporting.ForecastSalesValues |
End If |
End Sub |