Google Charts - Customized Labels Bubble Chart
You are Here:
How to Draw a Customized Labels Bubble Chart?
Please wait google chart is loading...
In this example, we will draw a customized labels bubble chart. Please hover the bubbles in the above chart to view particular details.
Example
HTML Online 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', 'score'],
['Alex', 15, 39, 95],
['Bill', 20, 45, 90.5],
['Camero', 25, 55, 85.75],
['Jade', 35, 61, 90],
['Kim', 40, 50, 75],
['Lily', 48, 58, 79]
]);
var options = {
title: 'Volunteers Age vs Weight',
height:400,
width: 600,
colorAxis: {
colors: ['#33ccff', '#ff99cc']
},
hAxis: {
title: 'Weight'
},
vAxis: {
title: 'Age'
},
bubble: {
textStyle: {
fontSize: 11,
auraColor: 'none'
}
}
};
var chart = new google.visualization.BubbleChart(document.getElementById('point'));
chart.draw(data, options);
}
</script>
</body>
</html>
Reminder
Hi Developers, we almost covered 98% of Google Charts Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in Google Charts.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.