我正在使用GetOrgChart生成组织结构图,请建议如何将图表保存到图像或pdf文件中。
答案 0 :(得分:1)
您只需要启用此标志 - 'enablePrint'为true,您将在OrgChart的标题上获得一个打印图标。使用此功能,您可以将PDF格式保存为OrgChart
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"}]
});