Column Resize Overlay Colour

Hi, is there a way to change the colour of this grey colour overlay that shows up when you try to resize a column in DHTMLX Gantt ?

Hello,
You can change the color of overlay when you resize your grid column with these CSS classes:

<style>
.gantt_drag_marker.gantt_grid_resize_area, .gantt_drag_marker.gantt_row_grid_resize_area{
        background: red;
        opacity: 0.3;
    }
</style>

Please check the example: https://snippet.dhtmlx.com/sztdqpct

1 Like

Thanks ArtyomBorisevich :+1::+1::+1: