我正在嘗試創建一個今天工作的人員列表,他們的開始和結束時間。這對於有記錄的人來說不成問題,但我無法弄清楚如何讓Google的時間軸圖表打印某人的姓名,然後在圖表中沒有任何條目。谷歌圖表API:將空行添加到時間軸?
這裏是文檔,但隻字未提空白項:
https://google-developers.appspot.com/chart/interactive/docs/gallery/timeline#BarsOneRow
這裏是我的代碼示例:
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("visualization", "1", {packages:["timeline"]});
google.setOnLoadCallback(drawChart);
function drawChart() {
var container = document.getElementById('timeline');
var chart = new google.visualization.Timeline(container);
var dataTable = new google.visualization.DataTable();
dataTable.addColumn({ type: 'string', id: 'Employee' });
dataTable.addColumn({ type: 'date', id: 'Start' });
dataTable.addColumn({ type: 'date', id: 'End' });
dataTable.addRows([
[ 'Spiderman', new Date(2015, 04, 07, 04, 43, 49), new Date(2015, 04, 07, 06, 45, 05), ],
[ 'Iron Man', new Date(2015, 04, 07, 04, 40, 53), new Date(2015, 04, 07, 08, 45, 47), ],
[ 'Spiderman', new Date(2015, 04, 07, 09, 10, 19), new Date(2015, 04, 07, 13, 22, 02), ],
]);
var options = {
timeline: {
singleColor: '#00f',
colorByRowLabel: true,
groupByRowLabel: true,
},
backgroundColor: '#ffffff'
};
chart.draw(dataTable, options);
}
</script>
什麼我需要做的,添加排超人,即使他那天沒有工作?
如果您在一天結束時同時具有開始日期和結束日期(即使當天沒有人工作,以確保顯示整個一天的時間表),這也不起作用。有沒有辦法添加這個?我沒有看到代碼中的任何內容表明它需要此修改。 – Bing
@如果我們修改矩形的填充屬性而不是完全刪除它,編輯看到更改 – bugwheels94
**通知所有人遵循** @Ankit的一點代碼需要直接在'chart.draw '調用,但是在'drawChart()'函數中,否則你將在'容器'引用中出錯。 – Bing