If both, task list and timeline are visible in a Gantt chart, you have two vertical scrollbars. How can I hide the vertical scrollbar of the task list? Just setting GanttChart.TaskList.VerticalScrollBar.Visible to False doesn't do the job.
For the moment this should be possible with
GanttChart.TaskList.VerticalScrollBarVisible := False;
For the next release we've added the VerticalScrollBarControl property in Appearance where you can select to show it on Both, Timeline or Tasklist.
If you set
GanttChart.TaskList.VerticalScrollBarVisible := False;
after populating the Gantt chart and after GanttChart.EndUpdate, the scroll bar indeed disappears. But has soon as you resize the browser window or move the splitter between task list and timeline, the scroll bar reappears.
I found, that the following line leads to the desired result:
GanttChart.TaskList.VerticalScrollBar.Width := 1;
You cannot set the width to 0, because then the tasklist and timeline are not scrolled synchronously anymore.
Thank you for letting us know.
In the next version the VerticalScrollBarControl property will handle this.