Hi,
after updating the version from 15.4 to 16.2.0.50, I have problem with GridPdfExport , the PDF created has a Wingdings font !!
Before updating, the font was Segoe UI
Nothing has changed in the code,
what can I do?
This is the code:
exp = new PdfExport();
PdfDocument document = new PdfDocument();
document.PageSettings.Orientation = PdfPageOrientation.Landscape; //Sets landscape page orientation.
//Set Properties
var properties = new GridPdfExport
{
FileName = nameFile,
PdfDocument = document,
Theme = "flat-saffron",
LocalSave = true,
FilePath = Server.MapPath("~/temp"),
Unicode = true
};
//Export Grid
((PdfExport)exp).Export(obj, dataSource, properties);Thanks