pawelrychlik / jira-dependency-graph

Graph visualizer for JIRA tickets' dependencies
MIT License
281 stars 85 forks source link

ADD hyperlinks and node colors. #20

Closed ntavares closed 6 years ago

ntavares commented 6 years ago

Adding hyperlinks for SVG (google charts seems to ignore them just fine) and node colors. Colors are determined by status category (white=To Do, yellow=Doing, green=Done). Another option would be to translate from status[colorName], but I noticed SVG colors don't recognize JIRA ones, so that'd be extra work without certainty of addressing them all (for now).

Unfortunately, our workflows are a bit more complex than the 3 basic states, and I'd like to have different colors for it, so I ended up doing a different customized function for us, using status[name] instead of status[statusCategory][name].

pawelrychlik commented 6 years ago

Nice, this is actually very handy :) Thanks!