Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Export data in mashup

Good morning,

you can export the data to Excel graph / table that is included in a mashup?


Thanks

1 Reply
Not applicable
Author

Hello, yes you can export the data, of one or more objects, to Excel table but I never try to get graphs.

Method :

$('#button').click(function(e){ 

    app.getObject('ID').then(function(model) { 

    var table = qlik.table(model); 

    table.exportData({download: true}); 

   });   

  });