Posts by Cristiano • 63 points
3 posts
-
1
votes2
answers611
viewsA: Javascript array does not work on pie highcharts chart
//I was able to solve this: var conteudodoGrafico = new Array() for(x in data['line']) { conteudodoGrafico.push('["'+data['line'][x]. name+'",'+ date['line'][x]. sent+']'); } contentGraphic2 = ("[ "…
-
1
votes2
answers611
viewsQ: Javascript array does not work on pie highcharts chart
var conteudodoGrafico = new Array();//cris gráfico for(x in data['linha']) { conteudodoGrafico.push('["'+data['linha'][x].nome+'", '+ data['linha'][x].enviado+']'); //cris grafico }…
-
4
votes1
answer4835
viewsQ: How to make a pie chart (pie) with database?
I have the table in my database called votes, I have id, name and votes (number of votes), I wanted to plot these values being, name and value in a pie chart or whatever the percentage of votes has…