您好,默认导出的西文字体,如果导出中文 是没有字库的,需要嵌入第三方字库
具体请参照
- wijmo.grid.pdf.FlexGridPdfConverter.export(theGrid, 'LearnWijmo.pdf', {
- embeddedFonts: [{
- source: 'res/SIMFANG.TTF',
- name: 'ch',
- style: 'normal',
- weight: 'normal'
- }],
- styles: {
- cellStyle: {
- font: {
- family: 'ch'
- }
- },
- headerCellStyle: {
- font: {
- weight: 'normal'
- }
- }
- }
- });
复制代码
希望能帮到您 |