React + D3 exploration with the force layout:
- React for structure
- D3 for data calculation
- D3 for rendering
Pro:
- The viz scales!
- Use all the d3 functions!
Con:
scrolling: yes | |
license: MIT |
React + D3 exploration with the force layout:
Pro:
Con:
-- A basic GDSII reader that reads from standard input and writes serialized | |
-- text to standard output | |
local gdsii = {} | |
gdsii.types = { | |
[0] = "HEADER", | |
[1] = "BGNLIB", | |
[2] = "LIBNAME", | |
[3] = "UNITS", |
#include <iostream> | |
#include <map> | |
#include <algorithm> | |
#include <functional> | |
#include <memory> | |
using namespace std; | |
class EventArgs { | |
public: |
Bubble charts encode data in the area of circles. Although less perceptually-accurate than bar charts, they can pack hundreds of values into a small space. This implementation is an improvement on Static bubble chart adding mouse tooltip and cluster attributes. The data shows the Flare class hierarchy.