Hi,
I've created a trdp report (created parameters there) and trying to use it in blazor server side project. I've found the code below on Telerik doc page. Unfortunately there is no any code sample how to pass custom parameters here. Any example will help.
Thanks.
ReportViewer ViewerId="rv1"
ServiceUrl="/api/reports"
ReportSource="@(new ReportSourceOptions() { Report = "YOUR_REPORT_HERE.trdp" })"
Parameters="@(new ParametersOptions { Editors = new EditorsOptions { MultiSelect = EditorType.ComboBox, SingleSelect = EditorType.ComboBox } })" ScaleMode="@(ScaleMode.Specific)" Scale="1.0"