Hi Tomasz,
We checked the sample shared and we were able to reproduce the reported issue when dayWorkingTime is set as 1-23. We logged a bug report for this. You can track its status from below feedback link.
We will fix this issue and include the fix in our weekly patch release, which is expected to be rolled out on November 27, 2019.
Now we are providing a workaround solution. You can change the taskbar width by using queryTaskbarInfo event. Please find the below code example.
<ejs-gantt ref="gantt"
//...
:queryTaskbarInfo= "queryTaskbarInfo">
</ejs-gantt>
methods: {
queryTaskbarInfo: function(args) {
if (args.data.startDate.getTime() === args.data.endDate.getTime())
args.taskbarElement.children[0].style.width = '11px'
},
}, |
Please get back to us if you require further assistance on this.
Thanks,
Pooja Priya K.