Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Data Visualization: Best tools to generate simple charts in PDF with Javascript or Python [closed]

I'm building an app that will talk to a real estate API to fetch info about housing within a certain area. Then for each query it will generate a PDF doc based on the returned data that has two simple charts, a bar chart and line chart.

I'm wondering if it's worth paying for something like FusionCharts or if there's a free library to work with. I'm a fairly novice programmer who mainly works in JS/jQuery and Python. I'm pretty much new to Data Visualization.

like image 514
Ben Davidow Avatar asked Jul 19 '13 19:07

Ben Davidow


1 Answers

You can try D3.js to create all kind of charts in client side rather than generating chart in server side. You are also working with an API, so D3.js will be very useful. If you are a Python lover, you can use d3 via the d3py library. And you can generate pdfs in javascript via jsPDF.

like image 161
zeenfaiz Avatar answered Oct 26 '22 23:10

zeenfaiz