Histogram Custom line color

I’m trying to change the capacity line in the gantt historgram

In this example it’s a blue line across the histogram

https://docs.dhtmlx.com/gantt/samples/11_resources/09_resource_histogram.html

How can I change the color of the line?

Hello @iabukhdair,

To change the color of this line, please update the background value for the next CSS rule:

.gantt_histogram_hor_bar, .gantt_histogram_vert_bar {
  background: red;
}

Thanks! That works nicely.