Google Charts - Stacked Bar Chart

You are Here:

How to Draw a Stacked Bar Chart?

Please wait google chart is loading...

In this example, we will draw a stacked bar chart. Please hover the bars 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', 'bar']}); google.charts.setOnLoadCallback(drawStacked); function drawStacked() { var data = google.visualization.arrayToDataTable([ ['City', 'Math', 'Physics', 'Chemistry'], ['Adam', 90, 95, 98], ['Ben', 85, 82, 90], ['charlie', 83, 78, 88], ['Doug', 75, 74, 80], ['Emley', 73, 64, 78] ]); var options = { title: 'Students Mark List', height: 350, chartArea: { width: '50%' }, isStacked: true, hAxis: { title: 'Total Marks', minValue: 0, }, vAxis: { title: 'Students Name' } }; var chart = new google.visualization.BarChart(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.

Share this Page

Meet the Author