Charting Seas of Data
April 18, 2012 3:45 PM   Subscribe

What examples are out there on the web of interactive charts with thousands of data points that can be scrolled through smoothly with little interruption or skipping?

So I have this project which is almost done, with a handful of charts that collectively render thousands of data points (5K-10K+).

One problem which has been handled in an OK way is that the vast amount of data slow down the app when a user wants to scroll to a certain point. The current work around is for the user to manipulate a slider first, and when they're done, the app reconfigures the charts to align with the slider state. Ideally we would have users manipulate the slider and the chart would change in real time with the changes. But this gets painfully slow due to the circumstances.

My team has looked at WeatherSpark for inspiration, but it is incredibly difficult to figure out what they have done, even after a little bit of email and phone correspondence with the creators.

Thus I ask if there are other examples of web applications out there that do something similar to Weatherspark: display thousands of data points and allow users to smoothly navigate through them. This is to see if I can get some new ideas of different approaches to the problem.

Web app packages that achieve this would be a plus (if they exist).

Additionally, detailed explanations as to why this continues to be a challenge, if it is still a challenge, for regular web development (i.e. not Weatherspark) would be awesome.

Thank you!

PS: I am aware that cutting down on the data to be displayed, or figuring out a way to compactly summarize the data, would solve this problem to some degree.
posted by JoeXIII007 to Computers & Internet (3 answers total) 10 users marked this as a favorite
 
Consider WEAVE? Fairly new and still beta, but I've had some very good luck. Open source. You'll need a server with Apache Tomcat and mySQL.

Also try Google FusionTables for speed.
posted by Hollywood Upstairs Medical College at 4:26 PM on April 18, 2012 [1 favorite]


From the folks at Square: Crossfilter .
posted by tayknight at 5:23 PM on April 18, 2012 [1 favorite]


I have found d3.js to be reasonably performant. Through use of events and requests, you could control what and how much data are sent to the browser to be rendered into a visualization.
posted by Blazecock Pileon at 5:29 PM on April 18, 2012 [1 favorite]


« Older What do I need to know before I sell my house in...   |   Is my metabolism really this sluggish? Newer »
This thread is closed to new comments.