Hi,
I am using export scheduler feature but it is not working properly.
It always print only half screen it also not considering orientation setting,
Please help how to print full screen ,My code as :
function exportScheduler(type) {
var format = document.getElementById(“format”).value;
var orient = document.getElementById(“orient”).value;
var zoom = document.getElementById(“zoom”).value;
if (type == “pdf”)
scheduler.exportToPDF({
format: format,
orientation: orient,
zoom: zoom
});
else
scheduler.exportToPNG({
format: format,
orientation: orient,
zoom: zoom
});
}
Please find attached output which i am getting.