burnify
burnify copied to clipboard
Create an event API to allow interaction with the burn-down chart parts
Let the user to customize functions that are called for events in each part of the chart. For instance, it could be:
var burn = burnify('#chart', json, 800, 600);
burn.onClickSprint(function(sprint) {
console.log('sprint points', sprint.points);
});