I found out that, in theory, Google Chart is supposed to automatically fix the header row of a table when you scroll it down:
"The header row remains fixed as the user scrolls." (https://developers.google.com/chart/interactive/docs/gallery/table - Overview)
For some strange reason, my table is not fixing the header row. Here's the code. I basically copied the same example code from Google's page (the link above) and put some 40 extra rows to it. Am I missing something? I've already tried in both Firefox and Chrome, same thing, no fixing.
<html>
<head>
<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', 'Column0');
data.addColumn('number', 'Column1');
data.addRows([
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1],
['a',1]
]);
var table = new google.visualization.Table(document.getElementById('table_test'));
table.draw(data, {showRowNumber: true});
}
</script>
</head>
<body>
<div id="table_test" style="width: 200px;"></div>
</body>
</html>