We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon
Starting in 2019, the Reporting control is no longer included in Essential Studio. If you're experiencing issues with the Syncfusion Reporting Platform, Report Viewer, Report Designer, or Report Writer, we recommend migrating to Bold Reports, our dedicated reporting platform.

Bold Reports offers a comprehensive suite of tools and features for all your reporting needs, and we will help you make a smooth transition from the discontinued control. Our support team at https://support.boldreports.com/ is here to assist you with any questions or difficulties you may encounter during the migration process.

We thank you for choosing Syncfusion and appreciate your understanding.

Top border in Tablix header

Hi!
Attached is the CampaignList.rdlc file and a screenshot of the report generated by the CampaignList.rdlc file.
In the screenshot, the report does not have the top border in the Tablix header.
How do I set Tablix to appear the top border in the header?
Can you show the setting in a video?

Regards,
Junior

Attachment: Report_c8fed995.rar

3 Replies

YD Yuvaraj Devarajan Syncfusion Team September 29, 2017 05:49 AM UTC

Hi Carlos, 

Thanks for contacting Syncfusion support. 

We have checked the mentioned tablix render problem in your shared RDLC file with our local data and it’s working properly at our end as shown in shared screenshot. We suspect the mentioned problem might be occurred due to referring old version of ReportViewer assembly and script file in your application. So, can you please share the ReportViewer dependent assembly and script version referred in your application to validate the mentioned problem at our end. 

 

For your reference, we have prepared a sample and it can be downloaded from below location, 

Regards, 
Yuvaraj D. 



CJ Carlos Junior September 29, 2017 01:22 PM UTC

Hi Yuvaraj,
Here is the code for the layout and the view that calls the report:

_LayoutSyncfusionReport.cshtml
<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" rel='nofollow' href="https://cdn.syncfusion.com/14.4.0.20/js/web/flat-azure/ej.web.all.min.css" />
    <script src="https://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js" type="text/javascript"></script>
    <script src="https://cdn.syncfusion.com/14.4.0.20/js/web/ej.web.all.min.js"> </script>
    <script src="https://cdn.syncfusion.com/14.4.0.20/js/common/ej.unobtrusive.min.js"></script>
    @RenderSection("styles", required: false)
</head>
<body>
    <header></header>
    <div id="body">
        @RenderSection("featured", required: false)
        <section class="content-wrapper main-content clear-fix">
            @RenderBody()
            @RenderSection("scripts", required: false)
        </section>
    </div>
    @Html.EJ().ScriptManager()
</body>
</html>

CampaignListReport.cshtml
@using Syncfusion.MVC.EJ

@{
    Layout = "~/Views/Shared/_LayoutSyncfusionReport.cshtml";
}

<style>
    #reportviewer {
        min-height: 650px;
        min-width: 100%;
    }
</style>

<div style="width:100%">
    @(
        Html.EJ().ReportViewer("reportviewer")
        .ProcessingMode(Syncfusion.JavaScript.ReportViewerEnums.ProcessingMode.Local).ReportPath("~/ReportServer/CampaignList.rdlc")
        .ReportServiceUrl(VirtualPathUtility.ToAbsolute("~/api/ReportApi")).DataSources(ds => ds.Name("DataSet1").Value(ViewData["CampaignListDS"]).Add())
    )
</div>

The version of the libraries I am using are as follows:
Syncfusion.EJ.ReportViewer - 14.4450.0.20

Syncfusion.EJ.MVC - 14.4500.0.20

Regards,
Junior



YD Yuvaraj Devarajan Syncfusion Team October 2, 2017 10:20 AM UTC

Hi Carlos, 
 
Thanks for update. 
 
We were able to reproduce the mentioned tablix border problem only in chrome browser and we have logged a defect report on this. So, a support incident to track the status of this issue has been created under your account. Please log on to our support website to check for further updates.
https://www.syncfusion.com/account/login?ReturnUrl=%2fsupport%2fdirecttrac%2fincidents

Regards,
 
Yuvaraj D 


Loader.
Live Chat Icon For mobile
Up arrow icon