I'm exploring the PDF Export example, and the PDF created looks good except for the grid being too wide for the normal page and runs off the edge. I see PageSize options, but I'm not sure how to measure the grid, control the grid width, or otherwise control the output.
Ideally, I'd love to set landscape mode, and either shrink the grid to the page width or have different columns on alternating pages. I'm just getting started with the Pdf export; what kind of ExportSettings & Pdf options should I be looking for to accomplish this?
I'd also be very happy to have the page size set to a non-standard page width so the grid fits. Is there an autosize option like this?
Ideally, I'd love to set landscape mode, and either shrink the grid to the page width or have different columns on alternating pages. I'm just getting started with the Pdf export; what kind of ExportSettings & Pdf options should I be looking for to accomplish this?
I'd also be very happy to have the page size set to a non-standard page width so the grid fits. Is there an autosize option like this?
public void ExportPdf_Click(object sender, EventArgs args)
{
RadGrid1.ExportSettings.Pdf.BorderType = GridPdfSettings.GridPdfBorderType.AllBorders;
RadGrid1.MasterTableView.ExportToPdf();
}