Forums » Open discussion »
Can team make the Gantt and other charts to be colorful, one color for each developer?
Added by james liu over 6 years ago
Hi team,
I am a PM using Redmine, thank you provide the great tool.
I just have one suggestion which is below;
Can team make the Gantt and other charts to be colorful, one color for each developer? So that I can easily see who spend how much effort on the project.
Thanks,
James Liu
Hello James,
I read some code related to that.
It's not possible to simply with some CSS for example.
The improvement could be made in
lib/redmine/helpers/gantt.rb
, in the
html_task
function.
That's would not be possible to make a plugin to cleanly patch that.
3 options:
- Have the assignee_id be added to the CSS class in Redmine core, you may check if such issue doesn't exist before creating it
- Use some JS trickery to match assignee to issues
- Patch the helper
I hope it helps.
Cheers,