Google Charts - Google Charts tutorial - Material Scatter Chart - chart js - google graphs - google charts examples



What is Material Scatter Chart?

  • Material Scatter Chart is a chart which is done in the process of designing any physical object.
  • Material Scatter Chart has material variables which inherent the properties of a material such as density, modulus, and yield stress
  • Material Scatter Chart has systematic selection of the best material given for an application begins with properties and costs of candidate materials.
  • Material Scatter Chart has an equation for the correlation between the material variables which can be determined by establishing best-fit procedures
  • Material Scatter Chart enables the researcher to obtain a visual comparison of the relationship between two material variables.

Configuration

  • The syntax which is given below gives us the configuration of Material Scatter Chart and we have used Scatter class to show material chart

Syntax:

//classic chart
var chart = new google.visualization.ScatterChart(document.getElementById('container'));
//Material chart
var chart = new google.charts.Scatter(document.getElementById('container'));
Clicking "Copy Code" button to copy the code. From - google charts tutorial - team
  • The sample code which is given below show us the full sample code of Material scatter chart

Example:

googlecharts-scatter-material.html

 Tryit<html>
<head>
<title>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','scatter']});     
   </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('number', 'Age');
   data.addColumn('number', 'Weight');
   data.addRows([
      [ 18,      22],
      [ 14,      6.5],
      [ 12,     16],
      [ 10,      15],
      [ 13,      7.5],
      [ 8.5,    9]
   ]);
   
   // Set chart options
   var options = {'title':'Age vs Weight',
      'width':550,
      'height':400	  
   };

   // Instantiate and draw the chart.
   var chart = new google.charts.Scatter(document.getElementById('container'));
   chart.draw(data, google.charts.Scatter.convertOptions(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 - Material Scatter Chart