Native Blazor Report Viewer Doesn't Display All Page Borders in ContinuousScroll
Environment
Product | Progress® Telerik® Reporting |
Description
In the Native Blazor Report Viewer when the PageMode
is set to ContinuousScroll
the borders around the pages are not displayed correctly.
Suggested Workarounds
Add the following code in the page with the viewer:
<style>
.sheet .layer {
border: 1px solid #cccc;
}
.trv-report-page {
border-style: none;
margin-top: 20px;
}
</style>