-
-
-
-
-
+
+
통계 보고서 다운로드
+
발주기관 통계 기능을 보고서 형태로 다운로드 받을 수 있습니다.
+
+
+
+
+
+
-
+ });
+ // 3. Financial Status Bar Chart
+ var ctxFinancial = document.getElementById('financialChart').getContext('2d');
+ new Chart(ctxFinancial, {
+ type: 'bar',
+ data: {
+ labels: ['프로젝트 A', '프로젝트 B', '프로젝트 C', '프로젝트 D'],
+ datasets: [{
+ label: '예산',
+ data: [65, 59, 80, 81],
+ backgroundColor: 'rgba(59, 130, 246, 0.7)',
+ borderColor: 'rgba(59, 130, 246, 1)',
+ borderWidth: 1
+ }, {
+ label: '실제 비용',
+ data: [45, 49, 60, 70],
+ backgroundColor: 'rgba(239, 68, 68, 0.7)',
+ borderColor: 'rgba(239, 68, 68, 1)',
+ borderWidth: 1
+ },{
+ label: '예상 비용',
+ data: [75, 69, 90, 91],
+ backgroundColor: 'rgba(16, 185, 129, 0.7)',
+ borderColor: 'rgba(16, 185, 129, 1)',
+ borderWidth: 1
+ }]
+ },
+ options: {
+ responsive: true,
+ maintainAspectRatio: false,
+ scales: { y: { beginAtZero: true, ticks: { callback: function(value) { return value + '억'; } } } },
+ plugins: { legend: { display: false } }
+ }
+ });
+ });
+
+