The completeBarHeight property (number) sets the height of the task box complete bar, in pixels.
Declaration
DayPilot.Gantt.completeBarHeight
Default Value
3
Examples
JavaScript
const gantt = new DayPilot.Gantt("dp", {
completeBarHeight: 5,
// ...
});
gantt.init();
Angular
<daypilot-gantt [config]="config"></daypilot-gantt>
config: DayPilot.GanttConfig = {
completeBarHeight: 5,
// ...
};
React
<DayPilotGantt
completeBarHeight={5}
{/* ... */}
/>
Vue
<DayPilotGantt :completeBarHeight="5" <!-- ... --> />
See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot