I'm facing report viewer issue after upgrading to Telerik.Reporting 12.1.18.620. I'm using NuGet Package.
The Problem is the report started to display like Image 1 after upgrade.
I tried to fix it little bit by adding the below styles
.trv-report-page {
height
:
700px
!important
;
}
.trv-report-page > .sheet {
height
:
700px
!important
;
}
Now the report is showing but with 2 horizontal scrollbars as Image 2.
Here is my container style
const viewerContainerStyle = {
position:
'relative'
,
width:
'100%'
,
height:
'800px'
,
[
'font-family'
]:
'ms sans serif'
};