PHP - Grafica HighCharts con postgresql

 
Vista:
sin imagen de perfil

Grafica HighCharts con postgresql

Publicado por anonymous (23 intervenciones) el 05/04/2017 23:11:29
Buenas tardes amigo adjunto el codigo a lo que quiero llegar quiero llenar esa grafica dinamicamente con los datos de la base de datos ahorita se encuentran seteados
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
136
<div id="container" style="width: 950px; height: 370px; margin: 0 auto"></div>
 
<script>
 
$(document).ready(function() {
   var chart = {
      type: 'column'
   };
   var title = {
      text: 'NOTA:'
   };
   var subtitle = {
      text: 'Distrito Capital y Vargas en 1999 era un solo Estado'
   };
   var xAxis = {
      categories: ['AMAZONAS',
                   'ANZOATEGUI',
                   'APURE',
                   'ARAGUA',
                   'BARINAS',
                   'BOLÍVAR',
                   'CARABOBO',
                   'COJEDES',
                   'DELTA AMACURO',
                   'FALCÓN',
                   'GUÁRICO',
                   'LARA',
                   'MÉRIDA',
                   'MIRANDA',
                   'MONAGAS',
                   'NUEVA ESPARTA',
                   'PORTUGUESA',
                   'SUCRE',
                   'SUR DEL LAGO',
                   'TÁCHIRA',
                   'TRUJILLO',
                   'VARGAS',
                   'YARACUY',
                   'ZULIA',
 
 
                   ],
      crosshair: true
   };
   var yAxis = {
      min: 0,
      title: {
         text: 'PUENTES'
      }
   };
   var tooltip = {
      headerFormat: '<span style="font-size:10px">{point.key}</span><table>',
      pointFormat: '<tr><td style="color:{series.color};padding:0">{series.name}: </td>' +
         '<td style="padding:0"><b>{point.y:.1f} mm</b></td></tr>',
      footerFormat: '</table>',
      shared: true,
      useHTML: true
   };
   var plotOptions = {
      column: {
         pointPadding: 0.2,
         borderWidth: 0
      }
   };
   var credits = {
      enabled: false
   };
 
   var series= [{
        name: 'Inventario',
            data: [49.9,
                  71.5,
                  106.4,
                  129.2,
                  144.0,
                  176.0,
                  135.6,
                  148.5,
                  216.4,
                  194.1,
                  95.6,
                  54.4,
                  49.9,
                  71.5,
                  106.4,
                  129.2,
                  144.0,
                  176.0,
                  135.6,
                  148.5,
                  216.4,
                  194.1,
                  95.6,
                  54.4]
        }, {
            name: 'Información suministrada',
            data: [42.4,
                 33.2,
                 34.5,
                 39.7,
                 52.6,
                 75.5,
                 57.4,
                 60.4,
                 47.6,
                 39.1,
                 46.8,
                 51.1,
                 42.4,
                 33.2,
                 34.5,
                 39.7,
                 52.6,
                 75.5,
                 57.4,
                 60.4,
                 47.6,
                 39.1,
                 46.8,
                 51.1]
   }];
 
   var json = {};
   json.chart = chart;
   json.title = title;
   json.subtitle = subtitle;
   json.tooltip = tooltip;
   json.xAxis = xAxis;
   json.yAxis = yAxis;
   json.series = series;
   json.plotOptions = plotOptions;
   json.credits = credits;
   $('#container').highcharts(json);
 
});
</script>

alguien me podria ayudar?
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

Grafica HighCharts con postgresql

Publicado por atila2788 (2 intervenciones) el 12/04/2017 16:10:42
Hola, no has intentado con Google Charts, desde la pagina te indica como crear las tortas o lo que requieras tiene un api muy sencillo.
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar