GetOrgChart를 사용하여 조직도를 생성하고 있습니다. 차트를 이미지 나 pdf 파일에 저장하는 방법을 제안하십시오.GetOrgChart를 사용할 때 차트를 PDF 또는 이미지로 저장할 수있는 옵션
0
A
답변
1
'enablePrint'를 true로 설정하기 만하면 OrgChart 헤더에 인쇄 아이콘이 표시됩니다. 이 사용하면
다음http://www.getorgchart.com/Documentation#enablePrint
가 fiddle- 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"}] });