DiscoTrayStudios / my-life-in-months

My Life in Months is a JavaScript implementation of a chart that can help you see the larger picture of your life. You can use it to map out where you've lived, your career path, or other meaningful life events.
https://discotraystudios.github.io/my-life-in-months/
MIT License
7 stars 5 forks source link
chart d3js data-visualization life

My Life in Months

Inspired by Isabella Benabaye, Sharla Gelfand, and Tim Urban, My Life in Months is a d3 JavaScript implementation of a chart that can help you see the larger picture of your life. You can use it to map out where you've lived, your career path, or other meaningful life events.

Example Chart

MLIM

Easy Code Snippet

var data = [
  {"name": "Paris", "value": 57},
  {"name": "Warren", "value": 48},
  {"name": "Charleston", "value": 98},
  {"name": "Conway", "value": 24}
]

var chart = myLifeInMonths();

d3.select("#container")
    .datum(data)
    .call(chart);

Live Website

Try it out at https://discotraystudios.github.io/my-life-in-months/

Credits