html GRAPHIQUE UTILISER GOOGLE图表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html GRAPHIQUE UTILISER GOOGLE图表相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en-US">
<body>

<h1>My Web Page</h1>

<div id="piechart"></div>

<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>

<script type="text/javascript">
// Load google charts
google.charts.load('current', {'packages':['corechart']});
google.charts.setOnLoadCallback(drawChart);

// Draw the chart and set the chart values
function drawChart() {
  var data = google.visualization.arrayToDataTable([
  ['Task', 'Hours per Day'],
  ['Work', 8],
  ['Eat', 2],
  ['TV', 4],
  ['Gym', 2],
  ['Sleep', 8]
]);

  // Optional; add a title and set the width and height of the chart
  var options = {'title':'My Average Day', 'width':550, 'height':400};

  // Display the chart inside the <div> element with id="piechart"
  var chart = new google.visualization.PieChart(document.getElementById('piechart'));
  chart.draw(data, options);
}
</script>

</body>
</html>

以上是关于html GRAPHIQUE UTILISER GOOGLE图表的主要内容,如果未能解决你的问题,请参考以下文章

javascript Utiliser la fonction PUT

typescript Utiliser une librairie JS externe dans un Component

JSF非空条件[重复]

纯js 原生JavaScript 转义 还原 html标签

python学习_17

Linux下安装gcc g++ gfortran编译器