我正在尝试将CSS样式添加到Google Charts表中.我试过这个:
https://developers.google.com/chart/interactive/docs/gallery/table#customproperties
在第一个单元格(迈克),但它没有工作.我在options变量中将allowHtml设置为true.如何更改单个单元格的背景,文本颜色等?谢谢.
<script type="text/javascript">
google.load('visualization', '1', {packages:['table']});
google.setOnLoadCallback(drawTable);
function drawTable() {
var data = new google.visualization.DataTable();
data.addColumn('string', 'Employee Name');
data.addColumn('date', 'Start Date');
data.addRows(3);
data.setCell(0, 0, 'Mike', {style: 'background-color:red;'});
data.setCell(0, 1, new Date(2008, 1, 28));
data.setCell(1, 0, 'Bob');
data.setCell(1, 1, new Date(2007, 5, 1));
data.setCell(2, 0, 'Alice');
data.setCell(2, 1, new Date(2006, 7, 16));
var options = {
allowHtml: true
};
// Create a formatter.
// This example uses object literal notation to define the options.
var formatter = new …Run Code Online (Sandbox Code Playgroud)