I am using bold report viewer with asp.net MVC. With the large report (about 18 columns in RDLC table) last few columns are not scrolling. It should scroll at the right to show a few more columns. My code is:
<div class="card card-custom bg-gray-100 gutter-b card-stretch card-shadowless">
<div class="card-body">
<div style="min-height: 800px;width: 100%;">
@(Html.Bold().ReportViewer("ReportViewer")
.AjaxBeforeLoad("ajaxBeforeLoad")
.ProcessingMode(BoldReports.ReportViewerEnums.ProcessingMode.Local)
.ReportPath("~/Resources/MonthlyPerformance/MonthlyPerformance.rdlc")
.ReportServiceUrl("/api/MonthlyPerformanceReportViewer")
.ToolbarSettings(toolbar => toolbar.Items(BoldReports.ReportViewerEnums.ToolbarItems.All & ~BoldReports.ReportViewerEnums.ToolbarItems.Parameters)))
</div>
</div>
</div>
Please see the below image.