Example of a streamgraph that can be divided into multiple area charts.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Date | Disability Insurance | Life Insurance | Retirement | Grow their family | Credit Card | Emergency Fund | Education | Other Debt | Buy a house | Starting a Business | Total Contribution | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 5/2017 | 20 | 93.39 | 399.32 | 0 | 457.00 | 0 | 0 | 500.49 | 0 | 0 | 1470.20 | |
| 6/2017 | 20 | 93.39 | 399.32 | 2.13 | 449.65 | 1.98 | 0 | 500.49 | 0 | 0 | 1466.96 | |
| 7/2017 | 20 | 93.39 | 399.32 | 374.95 | 732.78 | 349.76 | 0 | 500.49 | 0 | 0 | 2470.69 | |
| 8/2017 | 20 | 93.39 | 399.32 | 378.27 | 726.36 | 352.86 | 0 | 500.49 | 0 | 0 | 2470.69 | |
| 9/2017 | 20 | 93.39 | 399.32 | 380.85 | 721.37 | 355.27 | 0 | 500.49 | 0 | 0 | 2470.69 | |
| 10/2017 | 20 | 93.39 | 598.97 | 1158.55 | 1318.55 | 1080.73 | 0 | 500.49 | 0 | 0 | 4770.69 | |
| 11/2017 | 20 | 93.39 | 399.32 | 386.39 | 710.67 | 360.43 | 0 | 500.49 | 0 | 0 | 2470.69 | |
| 12/2017 | 20 | 93.39 | 399.32 | 388.97 | 705.68 | 362.84 | 0 | 500.49 | 0 | 0 | 2470.69 | |
| 1/2018 | 20 | 93.39 | 991.30 | 150.66 | 606.10 | 108.75 | 0 | 500.49 | 0 | 0 | 2470.69 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <style> | |
| @import 'style.css'; | |
| </style> | |
| <body> | |
| <header> | |
| <h1>Barcharts with DOM</h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| date | close | |
|---|---|---|
| 13-May-12 | 109 | |
| 12-May-12 | 102 | |
| 11-May-12 | 100 | |
| 10-May-12 | 99.55 | |
| 8-May-12 | 76.86 | |
| 6-May-12 | 67.62 | |
| 4-May-12 | 64.48 | |
| 2-May-12 | 60.98 | |
| 1-May-12 | 58.13 |
Example of a stacked bar chart that can be divided into multiples. All credits for this go to Mike Bostock.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <title>SANKEY Experiment</title> | |
| <style> | |
| .node rect { | |
| cursor: move; | |
| fill-opacity: .9; | |
| shape-rendering: crispEdges; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| license: mit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| license: gpl-3.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <meta charset='utf-8'> | |
| <body> | |
| <script src='http://d3js.org/d3.v3.min.js'></script> | |
| <script> | |
| var size = 12; | |
| var step = 40; | |
| var X = d3.scale.linear() | |
| .domain([0, size]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <title></title> | |
| <style> | |
| #generative svg { | |
| width: 100%; | |
| height: 100%; } | |