Hi,
i get an error exporting a grid to pdf:
Uncaught (in promise) Error: ArgumentOutOfRangeException:index, The character is not supported by the font.
at e.items (pdfexport-3452e3.min.js:1)
at i.getCharWidthInternal (pdfexport-3452e3.min.js:1)
Same happens if i not specify a specific style.
PdfExportProperties ExportProperties = new PdfExportProperties();
PdfTheme Theme = new PdfTheme();
PdfThemeStyle RecordThemeStyle = new PdfThemeStyle() {
FontColor = "#000000",
FontName = "Calibri",
FontSize = 12
};
Theme.Header = RecordThemeStyle;
Theme.Record = RecordThemeStyle;
Theme.Caption = RecordThemeStyle;
ExportProperties.Theme = Theme;
await Grid.PdfExport(ExportProperties);