Skip to content

Instantly share code, notes, and snippets.

View louking's full-sized avatar

Lou King louking

  • Ijamsville, MD
  • 08:32 (UTC -04:00)
View GitHub Profile
@louking
louking / .block
Last active November 19, 2017 19:17
google map - d3 overlay, d3-tip, smooth transition
license: apache-2.0
height: 500
scrolling: no
border: yes
@louking
louking / .block
Last active November 7, 2017 22:51
overlapping labeled circles explode - select displays tip using d3-tip
license: apache-2.0
height: 500
scrolling: no
border: yes
@louking
louking / .block
Last active November 5, 2017 20:46
circles explode
license: apache-2.0
height: 500
scrolling: no
border: yes
@louking
louking / routes.json
Created November 3, 2017 15:06
runningroutes json data
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@louking
louking / .block
Last active October 31, 2017 20:57 — forked from mbostock/.block
Google Maps + D3
license: gpl-3.0
{
"data": [
{
"age": 71,
"agpercent": "68.12%",
"agtime": "1:26:56",
"date": "2015-03-22",
"miles": "13.1",
"name": "Arthur Gregory",
"pace": "9:09",
@louking
louking / README.md
Last active January 31, 2017 10:33 — forked from ZJONSSON/README.md
d3.legend example (d3 v4)

d3.legend

d3.legend is a quick hack to add a legend to a d3 chart. Simply add a g and .call(d3.legend). Any elements that have a title set in the "data-legend" attribute will be included when d3.legend is called. Each title will appear only once (even when multiple items define the same data-legend) as the process uses a set based on a existing names, not an array of all items.

Color

By default the color in the legend will try to match the fill attribute or the stroke attribute of the relevant items. Color can be explicitly defined by attribute "data-legend-color"

Order

The order of items in the legend will be sorted using the top of the bounding box for each included item. The order can be explicitly defined by attribute "data-legend-pos"