Is there a way to set background color for the uncompleted part of a task in the Gantt chart? I can set the task background color and color change for task completion. But then the uncompleted part of the task is just white.
It would be nice to set the background color, eg. with an 'uncompleted' keyword.
<style>
ganttDiagram {
task {
BackGroundColor Lime
unstarted {
Backgroundcolor Red
}
uncompleted {
Backgroundcolor Fuchsia
}
}
}
</style>
Or alternatively use the task background color as default color, then set 'unstarted' and 'completed' color.
<style>
ganttDiagram {
task {
BackGroundColor Fuchsia
unstarted {
Backgroundcolor Red
}
completed {
Backgroundcolor Lime
}
}
}
</style>