Last row in DataTable

Hi,

I have modified the sample DataTable code in the User Guide and have found that I cannot see the last row in the DataTable. Is there something I’m missing?

Code below:

from datetime import date

from random import randint

from bokeh.io import output_file, show

from bokeh.layouts import widgetbox

from bokeh.models import ColumnDataSource

from bokeh.models.widgets import DataTable, DateFormatter, TableColumn

output_file(“data_table.html”)

data = dict(

dates=[date(2014+i, 3, 1) for i in range(100)],

downloads=[randint(0, 100) for i in range(100)],

)

source = ColumnDataSource(data)

columns = [

TableColumn(field=“dates”, title=“Date”, formatter=DateFormatter()),

TableColumn(field=“downloads”, title=“Downloads”),

]

data_table = DataTable(source=source, columns=columns, width=400, height=280)

show(widgetbox(data_table))

Regards,

Foo