jordium-gantt-vue3
Version:
A Vue 3 Gantt chart component for project management, task scheduling, resource planning, calendar, resource usage and timeline visualization.
17 lines (16 loc) • 494 B
TypeScript
import { TimelineScale } from '../types/TimelineScale';
export interface ToolbarConfig {
showAddTask?: boolean;
showAddMilestone?: boolean;
showTodayLocate?: boolean;
showExportCsv?: boolean;
showExportPdf?: boolean;
showLanguage?: boolean;
showTheme?: boolean;
showFullscreen?: boolean;
showTimeScale?: boolean;
timeScaleDimensions?: TimelineScale[];
defaultTimeScale?: TimelineScale;
showExpandCollapse?: boolean;
showViewMode?: boolean;
}