0

我正在使用 GetOrgChart 生成组织结构图,请建议如何将图表保存为图像或 pdf 文件。

4

1 回答 1

1

您只需要启用此标志 - 'enablePrint' 为 true,您将在 OrgChart 的标题上看到一个打印图标。使用它,您可以将您的 OrgChart 保存为 PDF 格式

http://www.getorgchart.com/Documentation#enablePrint

这是小提琴- http://jsfiddle.net/GetOrgChart/jgqyh81a/

var orgchart = new getOrgChart(document.getElementById("people"),{
enablePrint: true, dataSource: [ { id: 1, parentId: null, Name: "Amber McKenzie"}, { id: 2, parentId: 1, Name: "Ava Field"}, { id: 3, parentId: 1, Name: "Evie Johnson"}] });

于 2017-06-02T16:55:10.460 回答