我正在尝试在表格的单元格上显示单选按钮。到目前为止,我的表显示正常,但是即使我指定为“ allowHTML”,它也不会在单元格中提取html。
我通过包装器将其命名:
var rightWrapper;
function drawVisualization() {
rightWrapper = new google.visualization.ChartWrapper({
"chartType": "Table",
'dataSourceUrl':'https://docs.google.com/spreadsheets/d/1I3N5DtdXGWFootaOCQM201K_ao2ZPWSWyw9_l7QcwQg/gviz/tq?sheet=User_my_crew&headers=1',
'containerId':'target_table_div',
'query':'SELECT A,B,C,D',
'options': { "width": 700, "height": 500, "allowHTML": true }
});
rightWrapper.draw();
}
无论我在单元格中放置什么html,实际上都不会显示任何格式的html。这使我认为“ allowHTML”行是错误的,但是根据google API,这是正确的。
请务必注意,现在我正尝试将信息直接放入我的Google工作表中。我尝试过动态更新表,但是即使执行最简单的“ setCell”调用,它也会死掉。
rightWrapper.getChart().setCell(1,2,'test'); //does not appear to execute
rightWrapper.getChart().setCell(1,2,'test','test'); //also does not appear to execute