I want to customize the style of scrollbar in Gantt,
is there any part that I can use to set parameters?
I have solved problem! thx!
howwwww to solve that
Hello,
You can use CSS with ::-webkit-scrollbar
:
.gantt_hor_scroll::-webkit-scrollbar {
height: 17px;
}
.gantt_hor_scroll::-webkit-scrollbar-thumb {
background-color: red;
border-radius: 5px;
}
.gantt_hor_scroll::-webkit-scrollbar-track {
background-color: yellow;
}
Please see an example: DHTMLX Snippet Tool