[]
        
(Showing Draft Content)

打印

ActiveReportsJS Viewer 打印功能

ActiveReportJS Viewer 提供了打印 按钮 ,当报表加载完成后,可点击打印按钮进行报表打印。 除此之外,Viewer提供了 打印方法API。

一键打印报表

ActiveReportsJS 提供了一键打印的 API ,即在不预览报表情况下,可以直接打印,代码示例:

import { Core } from "@grapecity/activereports";
const report = new Core.PageReport();
await report.load("/reports/text-only.rdlx-json");
const doc = await report.run();
doc.print();

也可以在导出报表为PDF 文件或者HTML 文档的时候,设置自动打印true。当报表导出完成后会立即进行打印。

相关资源