I am using GetOrgChart to generate the organizational chart, please suggest how to save the chart out put in image or pdf file.
Option to save chart as pdf or image when using GetOrgChart
481 views Asked by Santosh Singh At
1
I am using GetOrgChart to generate the organizational chart, please suggest how to save the chart out put in image or pdf file.
You just need to enable this flag - 'enablePrint' to true and you will get a print icon on the header of the OrgChart. Using this you can save your OrgChart in PDF format
http://www.getorgchart.com/Documentation#enablePrint
Here is the 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"}] });