- Google 圖表教程
- Google 圖表 - 主頁
- Google 圖表 - 概覽
- Google 圖表 - 環境設定
- 配置語法
- Google 圖表 - 面積圖
- Google 圖表 - 條形圖
- Google 圖表 - 氣泡圖
- Google 圖表 - 日曆圖
- Google 圖表 - 蠟燭圖
- Google 圖表 - 柱狀圖
- Google 圖表 - 組合圖
- Google 圖表 - 直方圖
- Google 圖表 - 折線圖
- Google 圖表 - 地圖
- Google 圖表 - 組織結構圖
- Google 圖表 - 餅圖
- Google 圖表 - 山形圖
- Google 圖表 - 散點圖
- 階梯形面積圖
- Google 圖表 - 表格圖
- Google 圖表 - 時間軸
- Google 圖表 - 樹形圖
- Google 圖表 - 趨勢線
- Google 圖表有用資源
- Google 圖表 - 快速指南
- Google 圖表 - 有用資源
- Google 圖表 - 討論
Google 圖表 - 帶有資料標籤的條形圖
以下是帶有資料標籤的條形圖的一個示例。我們已經看到用於在這張圖表中繪製資料的配置,詳情請參閱Google 圖表配置語法章節。因此,我們來看看這個完整示例。
配置
我們使用了 role 作為 annotation 配置以在條形圖中顯示資料標籤。
var data = google.visualization.arrayToDataTable([
['Year', 'Asia', { role: 'annotation'} ,'Europe', { role: 'annotation'}],
['2012', 900,'900', 390, '390']
]);
示例
googlecharts_bar_labels.htm
<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']});
</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 = google.visualization.arrayToDataTable([
['Year', 'Asia', { role: 'annotation'} ,'Europe', { role: 'annotation'}],
['2012', 900,'900', 390, '390'],
['2013', 1000,'1000', 400,'400'],
['2014', 1170,'1170', 440,'440'],
['2015', 1250,'1250', 480,'480'],
['2016', 1530,'1530', 540,'540']
]);
var options = {title: 'Population (in millions)', isStacked:'percent'};
// Instantiate and draw the chart.
var chart = new google.visualization.BarChart(document.getElementById('container'));
chart.draw(data, options);
}
google.charts.setOnLoadCallback(drawChart);
</script>
</body>
</html>
結果
驗證結果。
googlecharts_bar_charts.htm
廣告