How to export line chart in the document(Xcel,PDF,Word)

0
I need to export line chart/Bar chart with tabular data in Xcel or PDF or in Word Document.Could anybody please guide how to do this in mendix 9.5.0?
asked
4 answers
2

In the past, I have used the JFree Charts module to do this.  This module will generate charts in your Mendix app and create a PNG of these charts.  The PNG can then be used in a document template.  This module has not been updated for a while, but you could try it out:  https://marketplace.mendix.com/link/component/3011  You will need to update it to Mendix 9.

answered
2

You can do this export manually, by preparing the data that you want to export to pdf similar to how you’re preparing it to be displayed on the chart. After that, you will need to create a document template, and design how the pdf will look like. Then create a microflow that prepares the data and create a filedocument object, and thenpass the prepared data and the filedocument object to the document template (generation activity) to generate the pdf. Lastly, you’ll need to download the filedocument object.

answered
0

 
Templator - Document (PDF) and report generation alternative:
https://marketplace.mendix.com/link/component/114043


This widget lets developers generate PDF files using standard Mendix components.
The author provides a video instruction.
But not sure if it can run on version 9.

answered
0

Hi Firas Sardast,

We are using 9.5.0 so is it compatible with this version if yes then please elaborate what steps do i need to follow exactly? I am new to mendix.

I want to export the data something like this i am mentioning in image below-

answered