-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregion.php
135 lines (116 loc) · 3.38 KB
/
region.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?php
require_once "conexion.php";
include_once("components/header.php");
$stmt=$conn->prepare("SELECT region , count(id) as total1 FROM residencias WHERE region='publico'");
$stmt->execute();
$result = $stmt->get_result();
if($result->num_rows===0) exit ('No hay registros en la base de datos');
$stmt2=$conn->prepare("SELECT region , count(id) as total2 FROM residencias WHERE region='privado'");
$stmt2->execute();
$result2 = $stmt2->get_result();
if($result2->num_rows===0) exit ('No hay registros en la base de datos');
?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Highcharts Example</title>
<style type="text/css">
.highcharts-figure, .highcharts-data-table table {
min-width: 320px;
max-width: 800px;
margin: 1em auto;
}
.highcharts-data-table table {
font-family: Verdana, sans-serif;
border-collapse: collapse;
border: 1px solid #EBEBEB;
margin: 10px auto;
text-align: center;
width: 100%;
max-width: 500px;
}
.highcharts-data-table caption {
padding: 1em 0;
font-size: 1.2em;
color: #555;
}
.highcharts-data-table th {
font-weight: 600;
padding: 0.5em;
}
.highcharts-data-table td, .highcharts-data-table th, .highcharts-data-table caption {
padding: 0.5em;
}
.highcharts-data-table thead tr, .highcharts-data-table tr:nth-child(even) {
background: #f8f8f8;
}
.highcharts-data-table tr:hover {
background: #f1f7ff;
}
input[type="number"] {
min-width: 50px;
}
</style>
</head>
<body>
<script src="Highcharts-8.1.0/code/highcharts.js"></script>
<script src="Highcharts-8.1.0/code/highcharts-3d.js"></script>
<script src="Highcharts-8.1.0/code/highcharts-more.js"></script>
<script src="Highcharts-8.1.0/code/modules/exporting.js"></script>
<script src="Highcharts-8.1.0/code/modules/export-data.js"></script>
<script src="Highcharts-8.1.0/code/modules/accessibility.js"></script>
<figure class="highcharts-figure">
<div id="container"></div>
<p class="highcharts-description">
En la gráfica se muestran los porcentajes de Alumnos que pertenecen a region publico y privado en los cuales estan realizando su estancia de residencia.
</p>
</figure>
<script type="text/javascript">
Highcharts.chart('container', {
chart: {
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false,
type: 'pie'
},
title: {
text: 'ESTADISTICAS DE RESIDENCIAS POR region'
},
tooltip: {
pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
},
accessibility: {
point: {
valueSuffix: '%'
}
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: true,
format: '<b>{point.name}</b>: {point.percentage:.1f} %'
}
}
},
series: [{
type:'pie',
name: 'Residencias',
colorByPoint: true,
data: [
<?php
while($row=$result->fetch_array()){
echo"['".$row["region"]."',".$row["total1"]."],";
}
?>
<?php
while($row2=$result2->fetch_array()){
echo"['".$row2["region"]."',".$row2["total2"]."],";
}
?>
]
}]
});
</script>
</body>