Page 1 of 1

[INFO REQ] Vertical and horizontal lines

Posted: Mon Nov 28, 2022 2:12 pm
by kamran812

How to remove these horizontal and vertical lines in Gantt view for each and every row.
picture attached.


Re: [INFO REQ] Vertical and horizontal lines

Posted: Mon Nov 28, 2022 2:23 pm
by marcio

Hey kamran812,

Those are the lines to assist visually the user to let him know which date and task are related.

How do you want the diagram to look like??


Re: [INFO REQ] Vertical and horizontal lines

Posted: Mon Nov 28, 2022 2:41 pm
by kamran812

Hi Marcio,

plain white background without lines


Re: [INFO REQ] Vertical and horizontal lines

Posted: Mon Nov 28, 2022 7:59 pm
by mats

Simply disable https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ColumnLines

and add CSS

.b-grid-row { border: none; }

Re: [INFO REQ] Vertical and horizontal lines

Posted: Tue Nov 29, 2022 7:32 am
by kamran812

I am able to remove horizontal line of a row with

.b-grid-row { border: none; }

but the vertical lines coming below the days can not.
Need to remove these vertical lines in Gantt Area.
This seems to be the Bryntum Scheduler fix "Simply disable https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ColumnLines ";


Re: [INFO REQ] Vertical and horizontal lines

Posted: Tue Nov 29, 2022 7:57 am
by tasnim

Hello,
You can set it in ganttConfig like this

features : {
	columnLines : false
}

And this is the result that you're going to get

columnlines.png
columnlines.png (26.12 KiB) Viewed 460 times