HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <script src="https://www.gstatic.com/charts/loader.js"></script> </head> <body> <div id="point"> </div> <script> google.charts.load('current', {packages: ['corechart','scatter']}); google.charts.setOnLoadCallback(drawChart); function drawChart() { var data = new google.visualization.DataTable(); data.addColumn('number', 'Age'); data.addColumn('number', 'Weight'); data.addRows([ [ 8, 11 ], [ 5, 6.5 ], [ 11, 14 ], [ 4, 5 ], [ 3, 3.5 ], [ 6, 8 ] ]); // Set chart options var options = { 'title':'Age vs Weight', 'width':550, 'height':400, hAxis: { title: 'Age', minValue: 0, maxValue: 15 }, vAxis: { title: 'Weight', minValue: 0, maxValue: 15 } }; // Instantiate and draw the chart. var chart = new google.charts.Scatter(document.getElementById('point')); chart.draw(data, google.charts.Scatter.convertOptions(options)); } </script> </body> </html>
OUTPUT
×

Save as Private