The completeBarVisible property (boolean) determines whether the JavaScript Gantt Chart component displays a progress bar for tasks.
DayPilot.Gantt.completeBarVisibletrue - shows the task progress bar.
false - hides the task progress bar.
trueJavaScript
const gantt = new DayPilot.Gantt("dp", {
completeBarVisible: false,
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
completeBarVisible: false,
// ...
};React
<DayPilotGantt
completeBarVisible={false}
{/* ... */}
/>Vue
<DayPilotGantt
:completeBarVisible="false"
<!-- ... -->
/>Percent Complete (Progress Bar) [doc.daypilot.org]