Single-color baselines
I have a baseline graph for each task.
Within a task, I have different baseline graphs with different colors.
How do I make the baselines only have one color?
Hello,
You can achieve it by overriding the related CSS variables. For example, to apply the same color to the first three baselines:
:root {
--dhx-gantt-baseline-background-0: crimson;
--dhx-gantt-baseline-background-1: crimson;
--dhx-gantt-baseline-background-2: crimson;
}
Example: DHTMLX Snippet Tool