Skip to main content
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}); 

   });   

  });