В дизайнере .net отчет выглядит правильно: А в браузерах Chrome 49.0.2623.110, Firefox 47.0 линии между точками нет. Используемый проект: ваше демо Using Razor, Viewer, у которого модифицирован метод:
Код: Выделить всё
public ActionResult GetReportSnapshot(int? id)
{
// Create the report object
StiReport report = new StiReport();
// Load report
switch (id)
{
// Load report snapshot
case 1:
report.LoadDocument(Server.MapPath("~/Content/Reports/SimpleList.mdc"));
break;
// Load report template
case 2:
report.Load(@"D:\temp\delete\stimulsoft\noline.mrt");
// report.Load(Server.MapPath("~/Content/Reports/TwoSimpleLists.mrt"));
break;
..................................
Дмитрий