I am exporting PDF from the RadGrid and I am displaying an image in the PageFooter. Because equal size is given to the LeftCell, MiddleCell and RightCell, my image is too small.
radGrid1.ExportSettings.Pdf.PageFooter.MiddleCell.Text = "<img src=\"images/legend.jpg\"/>";
radGrid1.ExportSettings.Pdf.PageFooter.MiddleCell.TextAlign = GridPdfPageHeaderFooterCell.CellTextAlign.Center;
Is there a way that I can use the space allocated for the LeftCell and the Middle cell for my one cell? That would give enough spacde for my image. Any way at all to influence the size of the PageFooter cells?
radGrid1.ExportSettings.Pdf.PageFooter.MiddleCell.Text = "<img src=\"images/legend.jpg\"/>";
radGrid1.ExportSettings.Pdf.PageFooter.MiddleCell.TextAlign = GridPdfPageHeaderFooterCell.CellTextAlign.Center;
Is there a way that I can use the space allocated for the LeftCell and the Middle cell for my one cell? That would give enough spacde for my image. Any way at all to influence the size of the PageFooter cells?