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']}); google.charts.setOnLoadCallback(drawSeriesChart); function drawSeriesChart() { var data = google.visualization.arrayToDataTable([ ['Name', 'Age', 'Weight'], ['', 15, 39], ['', 20, 45], ['', 25, 55], ['', 35, 61], ['', 40, 50], ['', 48, 58] ]); var options = { title: 'Volunteers Age vs Weight', height:400, width: 600, colorAxis: { colors: ['#33ccff', '#ff99cc'] }, hAxis: { title: 'Age' }, vAxis: { title: 'Weight' }, bubble: { textStyle: { fontSize: 11 } } }; var chart = new google.visualization.BubbleChart(document.getElementById('point')); chart.draw(data, options); } </script> </body> </html>
OUTPUT
×

Save as Private