以下是从Google code playground复制的简单Google规格图表的代码。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>
Google Visualization API Sample
</title>
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load('visualization', '1', {packages: ['gauge']});
</script>
<script type="text/javascript">
function drawVisualization() {
// Create and populate the data table.
var data = google.visualization.arrayToDataTable([
['Label', 'Value'],
['Memory', 80],
['CPU', 55],
['Network', 68]
]);
// Create and draw the visualization.
new google.visualization.Gauge(document.getElementById('visualization')).
draw(data);
}
google.setOnLoadCallback(drawVisualization);
</script>
</head>
<body style="font-family: Arial;border: 0 none;">
<div id="visualization" style="width: 600px; height: 300px;"></div>
</body>
</html>
如何更改这些仪表的最大值?当我在选项中给出var options = { max: 500};
时,它为所有三个仪表设置了500。但是否可以为不同的仪表提供不同的最大值。
答案 0 :(得分:2)
制作3种不同的仪表图表。您可以使用相同的DataTable,但使用DataView为每个单独的图表仅使用一行。目前,无法在API中单独设置仪表的值。请参阅2011年Google群组中this thread的相同内容。
(可能这不是一个非常高的优先级。如果你想更简单地做,你可以使用Control Wrappers链接所有这些,而无需单独的DataViews)