Skip to content Skip to sidebar Skip to footer

Choosing A Plotting Library For Web/browser Application

I am looking for a plotting/graphing library (mostly to do line plots) for my application. I have been looking at JavaScript APIs (like Google's) but I found them to be slowing dow

Solution 1:

You can use the following libraries, all are client side:

Solution 2:

Personally I use the server-side jpGraph for most of my charting work, and fusionCharts (commercial) for flash-based client-side charting, although I'm looking at openFlashCharts at the moment

Solution 3:

You could take a look at JPGraph (serverside) or AMCharts (flash, clientside)

Solution 4:

Which is recommended depends on what you want to do with the data. If you're looking to manipulate it on the client, then client side graphing is usually better.

What don't you like about the google charting stuff? (Besides the slowness)

Solution 5:

I have used some JavaScript plotting libraries and right now, I am the fondest of flot. My use case is mainly line charts on the order of thousands of points, and flot seems to handle it fine. The main driver for a client-side plotting library is the interactivity it gives you. I've also used jqPlot, but I find flot more performant with large datasets.

Post a Comment for "Choosing A Plotting Library For Web/browser Application"