Skip to content

aalcosta/burnify

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Burnify

Interactive Product Burn-Down Chart

Introduction

Burnify is a d3 plugin that creates a highly interactive product burn-down chart to be embedded into any web application.

Open the live demo.

How it Works

Import plugin:

<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js" charset="utf-8"></script>

<link href="https://cdn.rawgit.com/feroult/burnify/burnify-0.3/src/jquery.burnify.css" rel="stylesheet" type="text/css">
<script src="https://cdn.rawgit.com/feroult/burnify/burnify-0.3/src/jquery.burnify.js"></script>

(...)

<div id="product-chart" />

Burnify it:

burnify("#product-chart", json, 800, 600);

Sample json structure:

{
    name: 'Burnify',
    points: 120,
    lastSprint: 13,
    mvpSprint: 10,
    sprints: [{
            done: 10
        }, {
            done: 10
        }, {
            done: 10
        }, {
            done: 6,
            added: 52
        }, {
            done: 8,
            added: 12
        }, {
            done: 8,
            added: 2,
            removed: 20
        }, {
            done: 4,
        }, {
            done: 6,
            added: 2
        }
    ]
}

About

Interactive Product Burn-Down Chart

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 77.4%
  • HTML 13.6%
  • CSS 9.0%