我需要设置表格特定单元格的背景颜色。以下是我用于在Google Site中绘制表格的Google Apps脚本代码。如何将最后一行的第一列的颜色设置为红色?
<script type='text/javascript' src='https://www.google.com/jsapi'></script>
<script type='text/javascript'>
google.load('visualization', '1', {packages:['table']});
google.setOnLoadCallback(drawTable);
function drawTable() {
var data = new google.visualization.DataTable();
data.addColumn('string', 'Name');
data.addColumn('number', 'Salary');
data.addColumn('boolean', 'Full Time Employee');
data.addRows([
['Mike', {v: 10000, f: '$10,000'}, true],
['Jim', {v:8000, f: '$8,000'}, false],
['Alice', {v: 12500, f: '$12,500'}, true],
['Bob', {v: 7000, f: '$7,000'}, true]
]);
var table = new google.visualization.Table(document.getElementById('table_div'));
table.draw(data, {showRowNumber: true});
}
</script>
答案 0 :(得分:1)
api中有一个名为setBackgroundColor(color)的函数 https://developers.google.com/apps-script/reference/document/table-cell#setBackgroundColor%28String%29
您只能设置单个单元格的颜色,因此您必须通过循环运行它才能为整个列或行着色。
它返回一个TableCell类型,所以我猜测逻辑是
currentCell.setBackgroundColor("red");
只是一个猜测。