Hello Telerik,
I am following the Telerik Virtual Classroom course for Telerik Reporting. At the end of the Hosting an API Endpoint section the teacher runs the app and sees the Report Viewer Container. When I launch the app (without errors) I do not see this report container on the Reports.razor page.
Thank you for your assistance.
@page "/report"
@using Telerik.ReportViewer.Blazor
<style>
.trv-report-viewer {
width: 100%;
height: 880px;
}
</style>
Testing Outside of Div
<div class="dashboard">
Testing inside of Div
<ReportViewer ViewerId="rv1"
ServiceUrl="api/reports"
ReportSource="@(new ReportSourceOptions
{
Report = "rps_dashboard_report.trdp"
})"
/>
</div>
<link href="css/dashboard.css" rel="stylesheet" />
@code {
}