Google Charts - Google Charts tutorial - Exploded Pie Chart - chart js - google graphs - google charts examples



What is Exploded Pie Chart?

  • Exploding a pie slice can be used to draw attention to a specific portion of the pie.
  • In Excel, you can drag the pie slices outward to explode all of the slices away from each other.

Configurations:

  • You have used slices with offset configurations to set a pie chart as exploded chart.

Syntax

// Set chart options
var options = { 
   slices: {  
      1: {offset: 0.2},
      3: {offset: 0.3}                  
   }
};
Clicking "Copy Code" button to copy the code. From - google charts tutorial - team

Example:

 Tryit<html>
<head>
<title>Wikitechy Google Charts Tutorial</title>
   <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
   <script type="text/javascript">
     google.charts.load('current', {packages: ['corechart']});     
   </script>
</head>
<body>
<div id="container" style="width: 550px; height: 400px; margin: 0 auto"></div>
<script language="JavaScript">
function drawChart() {
   // Define the chart to be drawn.
   var data = new google.visualization.DataTable();
   data.addColumn('string', 'Browser');
   data.addColumn('number', 'Percentage');
   data.addRows([
      ['Firefox', 36.0],
      ['IE', 30.8],
      ['Chrome', 19.8],
	  ['Safari', 10.5],
      ['Opera', 9.2],
      ['Others', 0.7]
   ]);
   
   // Set chart options
   var options = {'title':'Browser market shares at a specific website, 2014',
      'width':550,
      'height':400,
      slices: {  
         1: {offset: 0.2},
         3: {offset: 0.3}                  
      }
   };

   // Instantiate and draw the chart.
   var chart = new google.visualization.PieChart(document.getElementById('container'));
   chart.draw(data, options);
}
google.charts.setOnLoadCallback(drawChart);
</script>
</body>
</html>
Clicking "Copy Code" button to copy the code. From - google charts tutorial - team

Output:


Related Searches to Google Charts - Exploded Pie Chart