From d189ac4f17ab28e42a04e57fc344f71e24946fc3 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Sun, 21 Aug 2016 12:16:12 -0400 Subject: [PATCH] updates to d3 notes --- D3.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/D3.md b/D3.md index f3cddd6..43a75b1 100644 --- a/D3.md +++ b/D3.md @@ -118,6 +118,7 @@ - callback will be executed for each DOM element - `d` is data for the current element - `i` is the index of that element in the array + - `.exit().remove()` examines visual elements that are not bound to data and removes them ## Linear Scale @@ -293,3 +294,8 @@ function dragStart(d){ //d is the data for the dragged object ``` You can use the xScale.invert and yScale.invert to get data from d3.event.x and d3.event.y + + +## Basic Layouts +- https://github.com/d3/d3/wiki/Plugins +- http://c3js.org/