The completeBarHeight property (number) sets the height of the task box complete bar, in pixels.
DayPilot.Gantt.completeBarHeight
3
const gantt = new DayPilot.Gantt("dp", {
completeBarHeight: 5,
// ...
});
gantt.init();
<daypilot-gantt [config]="config"></daypilot-gantt>
config: DayPilot.GanttConfig = {
completeBarHeight: 5,
// ...
};
<DayPilotGantt
completeBarHeight={5}
{/* ... */}
/>
<DayPilotGantt :completeBarHeight="5" <!-- ... --> />