Hi Aksharay, I have the used the following codes to initialize the report viewer in syncfusion: $("#viewer").ejReportViewer({
reportServiceUrl: "/api/ApiController/Report",
reportPath: '~/App_Data/GroupingAggregate.rdlc',
processingMode: ej.ReportViewer.ProcessingMode.Local,
dataSources: [
{
value: @Html.Raw(Json.Encode(Model.UserList)),
name: "Sales"
}
],
});
The output is as follows (See attached image). When I click the Export button from the toolbar, the PDF is downloaded. However, the content of the PDF is distorted (the table is spread over two pages instead on a single page - landscape mode). I want to the downloaded PDF to be in landscape mode directly. I have also adjusted the page setup by setting the Orientation to Landscape but no effect. Can you please help?