I'm using Telerik Reporting 2025 Q1 with the standalone Report Designer .NET.
I need to style my reports to match the background color of our application. I thought that using a Parameter to pass in the color would be a solution, but I can't seem to bind it to the Style.BackgroundColor of the header panel.
I added an Integer parameter called ThemeColor with the value of a hex color (1445712).
First off, there is no editor support for binding for the value of the BackgroundColor (i.e. there is no dropdown menu to select expressions only different color pickets), but I can type in an expression manually. I'm not sure if this indicates that the BackgroundColor doesn't support expressions or it's a quirk of the editor).
I've tried entering =Parameters.ThemeColor, but it says that '=Parameters.ThemeColor is not a valid value for Int32.'
I've also tried Parameters.ThemeColor.Value, but with the same error.
I've also tried =System.Drawing.Color.FromArgb(Parameters.ThemeColor), but the same error.
It only seems to accept named colors even through the documentation suggests that it should accept hex color.
https://docs.telerik.com/reporting/styling/styling-reports/styling-report-items
Thanks,
Canice