-->

What graph/dashboard product is facebook using in

2020-03-08 04:56发布

问题:

I love the facebook Dashboard: PUE & WUE. It is beautifull

Can anyone point out if there is an open source or commercial product to offer a similar style?

here is the link https://www.facebook.com/ForestCityDataCenter?sk=app_288655784601722&app_data

回答1:

So I just read through 29,888 lines of javascript for ya.. biggest js file I've ever seen. It looks like they make that graph themselves using a variety of tools, including tween.js. It'd be fascinating to chat with whoever made it. The code for the wheel graph object starts at line 27,266 with the text var GraphComponent = Class.extend({ . You can find the source at https://www.fbpuewue.com/assets/application-3a3af20f7fa3591229c79442ae3d1c26.js . Sorry if it dissapoints you that it's not an awesome plugin that we can all easily use :/ I share your pain. Let me know if you have any questions :)



回答2:

We just open-sourced this dashboard code on https://github.com/facebook/puewue-frontend

You'll probably find what you are looking for in https://github.com/facebook/puewue-frontend/tree/master/lib/javascripts

Hope you find it useful!