Infraestrutura

Estatísticas do Curso

Estatísticas do Curso

Distribuição por Gênero

new Chart(document.getElementById(‘generoChart’), {
type: ‘pie’,
data: {
labels: [‘Masculino’, ‘Feminino’],
datasets: [{
data: [369, 128],
backgroundColor: [‘#36A2EB’, ‘#FF6384’]
}]
},
options: { responsive: true, maintainAspectRatio: false }
});

Situação Acadêmica Geral

new Chart(document.getElementById(‘statusChart’), {
type: ‘bar’,
data: {
labels: [‘ATIVO’, ‘CANCELADO’, ‘DESISTENTE’],
datasets: [{
label: ‘Alunos’,
data: [155, 256, 86],
backgroundColor: ‘#4BC0C0’
}]
},
options: { responsive: true, maintainAspectRatio: false, indexAxis: ‘y’ }
});

Total de Alunos por Ano

new Chart(document.getElementById(‘anoChart’), {
type: ‘bar’,
data: {
labels: [‘2023’, ‘2024’, ‘2025’],
datasets: [{
label: ‘Total de Alunos’,
data: [170, 154, 173],
backgroundColor: ‘#FFCE56’
}]
},
options: { responsive: true, maintainAspectRatio: false }
});

Nº de Disciplinas e Alunos por Período

new Chart(document.getElementById(‘disciplinasAlunosChart’), {
type: ‘bar’,
data: {
labels: [‘2022.1’, ‘2022.2’, ‘2023.1’, ‘2023.2’, ‘2024.1’, ‘2024.2’, ‘2025.1’],
datasets: [
{
label: ‘Nº. Disciplinas’,
data: [55, 45, 49, 44, 56, 58, 53],
backgroundColor: ‘#007bff’
},
{
label: ‘Nº. Alunos’,
data: [0, 219, 116, 163, 180, 206, 200],
backgroundColor: ‘#fd7e14’
}
]
},
options: { responsive: true, maintainAspectRatio: false }
});

Alunos Formados por Ano

new Chart(document.getElementById(‘formadosChart’), {
type: ‘bar’,
data: {
labels: [‘2022.1’],
datasets: [{
label: ‘Alunos Formados’,
data: [75],
backgroundColor: ‘#17a2b8’
}]
},
options: { responsive: true, maintainAspectRatio: false }
});