Project Pipeline Dashboard

Total Projects
0
Total Pipeline Value
$0
Projects In Progress
0
Project Name Stage Value Owner Actions

$${project.value.toLocaleString()}

`; column.appendChild(card); }); board.appendChild(column); }); }, renderProjectTable() { const tbody = document.getElementById('p-pipe-project-list'); tbody.innerHTML = ''; this.projects.forEach(p => { const row = tbody.insertRow(); row.innerHTML = ` ${p.name} ${p.stage} $${p.value.toLocaleString()} ${p.owner} `; }); }, generatePDF() { const element = document.getElementById('p-pipe-tool-content-for-pdf'); html2pdf().from(element).set({ margin: 0.5, filename: 'Project_Pipeline_Dashboard.pdf', image: { type: 'jpeg', quality: 0.98 }, html2canvas: { scale: 2, useCORS: true }, jsPDF: { unit: 'in', format: 'letter', orientation: 'landscape' } }).save(); } }; pPipeApp.init(); });
Scroll to Top