wijmo react版本中 导出xlsx出现问题,错误效果如图
代码部分基本上跟demo一样const ngPanel = new wjcOlap.PivotEngine({
itemsSource: getData(1000),
valueFields: ['Amount'],
rowFields: ['Buyer', 'Type'],
showRowTotals: 'Subtotals',
showColumnTotals: 'Subtotals',
})
const WijimoOlapTable = () => {
const exportFile = () => {
let book = wjcGridXlsx.FlexGridXlsxConverter.saveAsync(gridRef.current, {
includeColumnHeaders: true,
includeRowHeaders: true
});
book.sheets.name = 'PivotGrid';
// save the book
book.saveAsync('PivotGrid.xlsx');
}
return <Olap.PivotGrid initialized={(instance) => gridRef.current = instance} itemsSource={ngPanel} ></Olap.PivotGrid>
}
你这边目前碰到的具体问题是什么,麻烦详细描述一下
另外,请直接提供一个可以运行起来重现问题的demo,我帮你看看原因 Richard.Ma 发表于 2022-7-8 14:57
你这边目前碰到的具体问题是什么,麻烦详细描述一下
另外,请直接提供一个可以运行起来重现问题的demo, ...
你好。
目前使用的版本: 6.20880.673
这个版本似乎是购买的定制版本。 比npmjs网站的版本高,是否是这个版本问题 没有你说的这个版本,你这边是从哪里购买的wijmo,这边最新版本就是npmjs上的5.20221.842,
页:
[1]