Hi
Jb,
Thank
you for using Syncfusion product.
We
can remove the border for certain rows top or bottom or right or left side
using Cells.Broders property. We can set transparent color to the pdf pen for
the particular side border(top, bottom, right or left). please refer the below
code snippet :
//Apply the transparency to remove the border colors for any side
pdfGrid.Rows[i].Cells[j].Style.Borders.Bottom = PdfPens.Transparent;
pdfGrid.Rows[i].Cells[j].Style.Borders.Right = PdfPens.Transparent;
pdfGrid.Rows[i].Cells[j].Style.Borders.Left = PdfPens.Transparent;
pdfGrid.Rows[i].Cells[j].Style.Borders.Top = PdfPens.Transparent;
We
have attached the sample to remove the grid row borders in below link :
http://www.syncfusion.com/downloads/support/directtrac/137404/PdfGridBorderSample-17458871.zip
Please
try this and let us know if you have any further assistance .
Thanks,
Abirami.