Good Day,
I've got a grid with a whole bunch of columns which I'm exporting to HTML,CSV and Excel with no problems at all, but when I export the grid to PDF my column data overlaps as shown in the below image link.
http://www.mediafire.com/?3crbrazsocq9n5x
Here are the settings below I'm using for my export and I'm using Adobe Reader 9 to view the PDF. I'm using the Telerik WinForms Q3 2010 Control Set - v2010.3.10.1109
Thank You
I've got a grid with a whole bunch of columns which I'm exporting to HTML,CSV and Excel with no problems at all, but when I export the grid to PDF my column data overlaps as shown in the below image link.
http://www.mediafire.com/?3crbrazsocq9n5x
Here are the settings below I'm using for my export and I'm using Adobe Reader 9 to view the PDF. I'm using the Telerik WinForms Q3 2010 Control Set - v2010.3.10.1109
Private Sub ExportToPDF(ByVal sFileName As String, ByVal oRadGridView As RadGridView, ByRef bOpenExportFile As Boolean) Dim exporter As Export.ExportToPDF = New Export.ExportToPDF(oRadGridView) exporter.HiddenColumnOption = Telerik.WinControls.UI.Export.HiddenOption.DoNotExport exporter.PdfExportSettings.PageHeight = 210 exporter.PdfExportSettings.PageWidth = 297 exporter.Scale = 1 exporter.FitToPageWidth = True exporter.ExportVisualSettings = True exporter.RunExport(sFileName) bOpenExportFile = AskToOpen(oRadGridView) End SubThank You