exy Posted May 21, 2014 at 04:26 PM Report #556502 Posted May 21, 2014 at 04:26 PM boas pepz! Tenho este Cod. <html> <head> <script type="text/javascript" src="https://www.google.com/jsapi"></script> <script type="text/javascript"> google.load("visualization", "1", {packages:["corechart"]}); google.setonloadCallback(drawChart); function drawChart() { var data = google.visualization.arrayToDataTable([ ['Year', 'Sales', 'Expenses'], ['2004', 1000, 400], ['2005', 1170, 460], ['2006', 660, 1120], ['2007', 1030, 540] ]); var options = { title: 'Company Performance' }; var chart = new google.visualization.LineChart(document.getElementById('chart_div')); chart.draw(data, options); } </script> </head> <body> <div id="chart_div" style="width: 900px; height: 500px;"></div> </body> </html> o que eu gostava de fazer era 1 função (em mysql) para mostrar todos os registo de anomalias feitos num Ano. Se alguem podesse ajudar agradecia!
Rui Carlos Posted May 26, 2014 at 04:22 PM Report #557007 Posted May 26, 2014 at 04:22 PM Apenas com os detalhes que disponibilizas é complicado alguém conseguir ajudar. Rui Carlos Gonçalves
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now