TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Best open-source visualization frameworks?

8 点作者 tommaxwell将近 12 年前
I&#x27;m building a Rails app and would like to visualize the size of a users folders based on how many files are inside of them. I&#x27;m considering giving D3.js a try, but am not sure if I can have it dynamically update as files are added to each folder. I&#x27;d like to be able to input my JSON data (which is something D3 does do).<p>Unless D3.js is the best choice, any other good alternatives?

2 条评论

boothead将近 12 年前
d3.js hands down. You absolutely can update in d3 stuff in real time, all you do is create a transition and re-bind the updated data. I&#x27;ve previously built the front end to a trading system that streams events to the browser and updates a d3 visualization over a websocket, and once you get your head around how d3 does things it&#x27;s the perfect tool for this kind of thing.<p>Here&#x27;s a tutorial that looks quite good: <a href="http://blog.visual.ly/creating-animations-and-transitions-with-d3-js/" rel="nofollow">http:&#x2F;&#x2F;blog.visual.ly&#x2F;creating-animations-and-transitions-wi...</a>
评论 #6095928 未加载
seppevs将近 12 年前
Maybe processing.js?