Skip to content

Latest commit

 

History

History
35 lines (30 loc) · 616 Bytes

README.md

File metadata and controls

35 lines (30 loc) · 616 Bytes

daisygraph

an implementation of sunburst charts, for visualizing nested cumulative data

(another implementation: http://bl.ocks.org/mbostock/4063423)

usage:

cat | daisygraph --json
{ 
  "name": ".",
  "children": 
    [
      {
        "name": "README.md"
        "value": 55,
      },
      {
        "name": "src",
        "children":
        [
          {
            "name": "daisygraph.js",
            "value": 185,
          }
        ]
      }
    ]
}
^D
<svg>
  <!-- daisygraph svg here -->
</svg>