├── LICENSE ├── README.md ├── box └── box.js ├── bullet ├── README.md └── bullet.js ├── chernoff ├── README.md └── chernoff.js ├── cubehelix ├── README.md └── cubehelix.js ├── fisheye ├── README.md └── fisheye.js ├── force_labels ├── README.md └── force_labels.js ├── geo ├── polyhedron │ ├── README.md │ └── polyhedron.js ├── projection │ └── README.md └── tile │ ├── README.md │ └── tile.js ├── geodesic ├── README.md └── geodesic.js ├── geom └── contour │ ├── README.md │ └── contour.js ├── graph ├── README.md ├── data │ ├── cities-matrix.json │ ├── cities.csv │ └── miserables.json ├── graph.js └── index.html ├── hexbin ├── README.md └── hexbin.js ├── hive ├── README.md └── hive.js ├── horizon ├── README.md └── horizon.js ├── interpolate-zoom ├── README.md ├── interpolate-zoom-test.js └── interpolate-zoom.js ├── jsonp ├── README.md └── jsonp.js ├── keybinding ├── README.md └── keybinding.js ├── lasso ├── README.md └── lasso.js ├── longscroll ├── README.md └── longscroll.js ├── qq ├── README.md └── qq.js ├── rollup ├── README.md └── rollup.js ├── sankey ├── README.md └── sankey.js ├── simplify └── README.md ├── superformula └── superformula.js └── urlencode ├── urlencode-test.js └── urlencode.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/README.md -------------------------------------------------------------------------------- /box/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/box/box.js -------------------------------------------------------------------------------- /bullet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/bullet/README.md -------------------------------------------------------------------------------- /bullet/bullet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/bullet/bullet.js -------------------------------------------------------------------------------- /chernoff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/chernoff/README.md -------------------------------------------------------------------------------- /chernoff/chernoff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/chernoff/chernoff.js -------------------------------------------------------------------------------- /cubehelix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/cubehelix/README.md -------------------------------------------------------------------------------- /cubehelix/cubehelix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/cubehelix/cubehelix.js -------------------------------------------------------------------------------- /fisheye/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/fisheye/README.md -------------------------------------------------------------------------------- /fisheye/fisheye.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/fisheye/fisheye.js -------------------------------------------------------------------------------- /force_labels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/force_labels/README.md -------------------------------------------------------------------------------- /force_labels/force_labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/force_labels/force_labels.js -------------------------------------------------------------------------------- /geo/polyhedron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/geo/polyhedron/README.md -------------------------------------------------------------------------------- /geo/polyhedron/polyhedron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/geo/polyhedron/polyhedron.js -------------------------------------------------------------------------------- /geo/projection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/geo/projection/README.md -------------------------------------------------------------------------------- /geo/tile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/geo/tile/README.md -------------------------------------------------------------------------------- /geo/tile/tile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/geo/tile/tile.js -------------------------------------------------------------------------------- /geodesic/README.md: -------------------------------------------------------------------------------- 1 | # Geodesic Grid 2 | 3 | Example: 4 | -------------------------------------------------------------------------------- /geodesic/geodesic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/geodesic/geodesic.js -------------------------------------------------------------------------------- /geom/contour/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/geom/contour/README.md -------------------------------------------------------------------------------- /geom/contour/contour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/geom/contour/contour.js -------------------------------------------------------------------------------- /graph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/graph/README.md -------------------------------------------------------------------------------- /graph/data/cities-matrix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/graph/data/cities-matrix.json -------------------------------------------------------------------------------- /graph/data/cities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/graph/data/cities.csv -------------------------------------------------------------------------------- /graph/data/miserables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/graph/data/miserables.json -------------------------------------------------------------------------------- /graph/graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/graph/graph.js -------------------------------------------------------------------------------- /graph/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/graph/index.html -------------------------------------------------------------------------------- /hexbin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/hexbin/README.md -------------------------------------------------------------------------------- /hexbin/hexbin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/hexbin/hexbin.js -------------------------------------------------------------------------------- /hive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/hive/README.md -------------------------------------------------------------------------------- /hive/hive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/hive/hive.js -------------------------------------------------------------------------------- /horizon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/horizon/README.md -------------------------------------------------------------------------------- /horizon/horizon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/horizon/horizon.js -------------------------------------------------------------------------------- /interpolate-zoom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/interpolate-zoom/README.md -------------------------------------------------------------------------------- /interpolate-zoom/interpolate-zoom-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/interpolate-zoom/interpolate-zoom-test.js -------------------------------------------------------------------------------- /interpolate-zoom/interpolate-zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/interpolate-zoom/interpolate-zoom.js -------------------------------------------------------------------------------- /jsonp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/jsonp/README.md -------------------------------------------------------------------------------- /jsonp/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/jsonp/jsonp.js -------------------------------------------------------------------------------- /keybinding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/keybinding/README.md -------------------------------------------------------------------------------- /keybinding/keybinding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/keybinding/keybinding.js -------------------------------------------------------------------------------- /lasso/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/lasso/README.md -------------------------------------------------------------------------------- /lasso/lasso.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/lasso/lasso.js -------------------------------------------------------------------------------- /longscroll/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/longscroll/README.md -------------------------------------------------------------------------------- /longscroll/longscroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/longscroll/longscroll.js -------------------------------------------------------------------------------- /qq/README.md: -------------------------------------------------------------------------------- 1 | # Q-Q Plots 2 | 3 | Example: 4 | -------------------------------------------------------------------------------- /qq/qq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/qq/qq.js -------------------------------------------------------------------------------- /rollup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/rollup/README.md -------------------------------------------------------------------------------- /rollup/rollup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/rollup/rollup.js -------------------------------------------------------------------------------- /sankey/README.md: -------------------------------------------------------------------------------- 1 | Moved to ! 2 | -------------------------------------------------------------------------------- /sankey/sankey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/sankey/sankey.js -------------------------------------------------------------------------------- /simplify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/simplify/README.md -------------------------------------------------------------------------------- /superformula/superformula.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/superformula/superformula.js -------------------------------------------------------------------------------- /urlencode/urlencode-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/urlencode/urlencode-test.js -------------------------------------------------------------------------------- /urlencode/urlencode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-plugins/HEAD/urlencode/urlencode.js --------------------------------------------------------------------------------