Google Charts - ไวยากรณ์การกำหนดค่า
ในบทนี้เราจะแสดงการกำหนดค่าที่จำเป็นในการวาดแผนภูมิโดยใช้ Google Chart API
ขั้นตอนที่ 1: สร้างเพจ HTML
สร้างหน้า HTML ด้วยห้องสมุด Google Chart
googlecharts_configuration.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>
</body>
</html>
ที่นี่ containerdiv ใช้เพื่อบรรจุแผนภูมิที่วาดโดยใช้ Google Chart library ที่นี่เรากำลังโหลด corecharts API เวอร์ชันล่าสุดโดยใช้วิธี google.charts.load
ขั้นตอนที่ 2: สร้างการกำหนดค่า
ห้องสมุด Google Chart ใช้การกำหนดค่าที่เรียบง่ายโดยใช้ไวยากรณ์ json
// Instantiate and draw the chart.
var chart = new google.visualization.PieChart(document.getElementById('container'));
chart.draw(data, options);
ข้อมูลในที่นี้แสดงถึงข้อมูล json และตัวเลือกแสดงถึงการกำหนดค่าที่ไลบรารี Google Chart ใช้ในการวาดแผนภูมิโดยใช้คอนเทนเนอร์ div โดยใช้วิธี draw () ตอนนี้เราจะกำหนดค่าพารามิเตอร์ต่างๆเพื่อสร้างสตริง json ที่ต้องการ
หัวข้อ
กำหนดค่าตัวเลือกของแผนภูมิ
// Set chart options
var options = {'title':'Browser market shares at a specific website, 2014',
'width':550,
'height':400};
ตารางข้อมูล
กำหนดค่าข้อมูลที่จะแสดงบนแผนภูมิ DataTable คือคอลเลกชันที่มีโครงสร้างตารางพิเศษซึ่งมีข้อมูลของแผนภูมิ คอลัมน์ของตารางข้อมูลแสดงถึงตำนานและแถวแสดงถึงข้อมูลที่เกี่ยวข้อง addColumn () วิธีการใช้เพื่อเพิ่มคอลัมน์โดยที่พารามิเตอร์แรกแสดงถึงชนิดข้อมูลและพารามิเตอร์ที่สองแสดงถึงคำอธิบายแผนภูมิ addRows () วิธีการใช้เพื่อเพิ่มแถวตามลำดับ
// Define the chart to be drawn.
var data = new google.visualization.DataTable();
data.addColumn('string', 'Browser');
data.addColumn('number', 'Percentage');
data.addRows([
['Firefox', 45.0],
['IE', 26.8],
['Chrome', 12.8],
['Safari', 8.5],
['Opera', 6.2],
['Others', 0.7]
]);
ขั้นตอนที่ 3: วาดแผนภูมิ
// Instantiate and draw the chart.
var chart = new google.visualization.PieChart(document.getElementById('container'));
chart.draw(data, options);
ตัวอย่าง
ต่อไปนี้เป็นตัวอย่างที่สมบูรณ์ -
googlecharts_configuration.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 = new google.visualization.DataTable();
data.addColumn('string', 'Browser');
data.addColumn('number', 'Percentage');
data.addRows([
['Firefox', 45.0],
['IE', 26.8],
['Chrome', 12.8],
['Safari', 8.5],
['Opera', 6.2],
['Others', 0.7]
]);
// Set chart options
var options = {'title':'Browser market shares at a specific website, 2014', 'width':550, 'height':400};
// 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>
การเรียกใช้โค้ดต่อไปนี้ฟังก์ชัน drawChart เพื่อวาดแผนภูมิเมื่อไลบรารี Google Chart โหลดเสร็จสมบูรณ์
google.charts.setOnLoadCallback(drawChart);
ผลลัพธ์
ตรวจสอบผลลัพธ์