1129
| <![CDATA[<script type="text/javascript">
Highcharts.chart('grafico-1', {
chart: { plotBackgroundColor: null, plotBorderWidth: null, plotShadow: false, type: 'pie' },
title: { text: 'Dados dos registros da Ouvidoria' },
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: 'Em Aberto', y: 11.111111111111, sliced: true, selected: true },
{ name: 'Em Andamento', y: 0 },
{ name: 'Concluídos', y: 62.962962962963 },
{ name: 'Arquivados', y: 25.925925925926 }
]
}]
});
Highcharts.chart('grafico-2', {
chart: { plotBackgroundColor: null, plotBorderWidth: null, plotShadow: false, type: 'pie' },
title: { text: 'Dados por Tipo de Identificação' },
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: 'Identificado', y: 66.666666666667, sliced: true, selected: true },
{ name: 'Em Sigilo', y: 14.814814814815 },
{ name: 'Anônimo', y: 18.518518518519 }
]
}]
});
Highcharts.chart('grafico-3', {
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: 'Pessoas Físicas', y: 59.090909090909, sliced: true, selected: true },
{ name: 'Pessoas Jurídicas', y: 40.909090909091 }
]
}]
});
Highcharts.chart('grafico-4', {
chart: { plotBackgroundColor: null, plotBorderWidth: null, plotShadow: false, type: 'pie' },
title: { text: 'Dados por Natureza da Manifestação' },
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: 'Críticas', y: 0, sliced: true, selected: true },
{ name: 'Denúncias', y: 29.62962962963 },
{ name: 'Dúvidas', y: 7.4074074074074 },
{ name: 'Elogios', y: 0 },
{ name: 'Solicitações', y: 44.444444444444 },
{ name: 'Sugestões', y: 0 },
{ name: 'Reclamações', y: 11.111111111111 },
{ name: 'Outros', y: 7.4074074074074 }
]
}]
});
</script>]]>
|