1192
| <![CDATA[<script type="text/javascript">
Highcharts.chart('grafico-1', {
chart: { plotBackgroundColor: null, plotBorderWidth: null, plotShadow: false, type: 'pie' },
title: { text: 'Dados dos Atendimentos do e-SIC' },
subtitle: {text: 'Fonte: Portal da Transparência'},
tooltip: { pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>' },
plotOptions: {
pie: { allowPointSelect: true, cursor: 'pointer', dataLabels: {
enabled: true, format: '<b>{point.name}</b>: {point.percentage:.1f} %',
style: { color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || 'black' }
}
}
},
series: [{
name: 'Percentual',
colorByPoint: true,
data: [
{ name: 'A Atender', y: 22.448979591837, sliced: true, selected: true },
{ name: 'Em Atendimento', y: 16.326530612245 },
{ name: 'Atendidos', y: 57.142857142857 },
{ name: 'Indeferidos', y: 4.0816326530612 }
]
}]
});
Highcharts.chart('grafico-2', {
chart: { plotBackgroundColor: null, plotBorderWidth: null, plotShadow: false, type: 'pie' },
title: { text: 'Dados por Natureza Jurídica' },
subtitle: {text: 'Fonte: Portal da Transparência'},
tooltip: { pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>' },
plotOptions: {
pie: { allowPointSelect: true, cursor: 'pointer', dataLabels: {
enabled: true, format: '<b>{point.name}</b>: {point.percentage:.1f} %',
style: { color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || 'black' }
}
}
},
series: [{
name: 'Percentual',
colorByPoint: true,
data: [
{ name: 'Pessoa Física', y: 19, sliced: true, selected: true },
{ name: 'Pessoa Jurídica', y: 30 }
]
}]
});
Highcharts.chart('grafico-3', {
chart: { plotBackgroundColor: null, plotBorderWidth: null, plotShadow: false, type: 'pie' },
title: { text: 'Dados com Base no Gênero dos Participantes' },
subtitle: {text: 'Fonte: Portal da Transparência'},
tooltip: { pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>' },
plotOptions: {
pie: { allowPointSelect: true, cursor: 'pointer', dataLabels: {
enabled: true, format: '<b>{point.name}</b>: {point.percentage:.1f} %',
style: { color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || 'black' }
}
}
},
series: [{
name: 'Percentual',
colorByPoint: true,
data: [
{ name: 'Masculino', y: 78.947368421053, sliced: true, selected: true },
{ name: 'Feminino', y: 21.052631578947}
]
}]
});
Highcharts.chart('grafico-4', {
chart: { plotBackgroundColor: null, plotBorderWidth: null, plotShadow: false, type: 'pie' },
title: { text: 'Dados com Base na Faixa Etária dos Participantes' },
subtitle: {text: 'Fonte: Portal da Transparência'},
tooltip: { pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>' },
plotOptions: {
pie: { allowPointSelect: true, cursor: 'pointer', dataLabels: {
enabled: true, format: '<b>{point.name}</b>: {point.percentage:.1f} %',
style: { color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || 'black' }
}
}
},
series: [{
name: 'Percentual',
colorByPoint: true,
data: [
{ name: 'até 17 anos', y: 0, sliced: true, selected: true },
{ name: 'entre 18 a 25 anos', y: 84.210526315789 },
{ name: 'entre 36 a 53 anos', y: 5.2631578947368 },
{ name: 'acima de 53 anos', y: 10.526315789474 }
]
}]
});
Highcharts.chart('grafico-5', {
chart: { plotBackgroundColor: null, plotBorderWidth: null, plotShadow: false, type: 'pie' },
title: { text: 'Dados com Base no Nível de Escolaridade dos Participantes' },
subtitle: {text: 'Fonte: Portal da Transparência'},
tooltip: { pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>' },
plotOptions: {
pie: { allowPointSelect: true, cursor: 'pointer', dataLabels: {
enabled: true, format: '<b>{point.name}</b>: {point.percentage:.1f} %',
style: { color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || 'black' }
}
}
},
series: [{
name: 'Percentual',
colorByPoint: true,
data: [
{ name: 'Ensino Fundamental Incompleto', y: 0, sliced: true, selected: true },
{ name: 'Ensino Fundamental Completo', y: 0 },
{ name: 'Ensino Médio Incompleto', y: 0 },
{ name: 'Ensino Médio Completo', y: 15.789473684211 },
{ name: 'Ensino Superior Incompleto', y: 15.789473684211 },
{ name: 'Ensino Superior Completo', y: 57.894736842105 },
{ name: 'Pós-graduação Incompleta', y: 0 },
{ name: 'Pós-graduação Completa', y: 10.526315789474 }
]
}]
});
</script>]]>
|