Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello all,
I have written the below code and its not working.
var config = {
host: "qsense.deloitte.com",
prefix: prefix,
port: 443,
isSecure: true
};
var settings = {
documentSize: "A4",
aspectRatio: 2,
orientation: "landscape"
};
var app = qlik.openApp('e2be0d0e-4793-40d1-890a-d67a415de3cd', config);
app.visualization.get('nctVxCY').then(function (vis) {
vis.exportPdf(settings).then(function (result) {
console.log('PDF download link: ', result);
});
});
now Im getting the exception as "vis.exportPdf is not a function". Can anyone please let me know what went wrong.
Thanks in advance!!
Hi,
have you got any solution??
I need a solution to achieve export to pdf functionality.