Gantt Chart for GitHub [closed]
I started a project which does exactly that : https://github.com/neyric/gh-issues-gantt It only handles issue durations in days, but we found it to be easier to maintain and quite accurate for our usage.
I started a project which does exactly that : https://github.com/neyric/gh-issues-gantt It only handles issue durations in days, but we found it to be easier to maintain and quite accurate for our usage.
There are now a few elegant ways to generate a Gantt chart in R. Using Candela library(candela) data <- list( list(name=”Do this”, level=1, start=0, end=5), list(name=”This part 1″, level=2, start=0, end=3), list(name=”This part 2″, level=2, start=3, end=5), list(name=”Then that”, level=1, start=5, end=15), list(name=”That part 1″, level=2, start=5, end=10), list(name=”That part 2″, level=2, start=10, end=15)) candela(‘GanttChart’, … Read more