Table chart type - is there a way to set initial scroll position on creation?

For example take the last table created here: https://plot.ly/python/table/
Is there a way to specify to have the scroll centered or go to the end?

import plotly.plotly as py
import plotly.graph_objs as go

import pandas as pd

df = pd.read_csv(โ€˜https://raw.githubusercontent.com/plotly/datasets/master/2014_usa_states.csvโ€™)

trace = go.Table(
header=dict(values=[df.columns],
fill = dict(color=โ€™#C2D4FFโ€™),
align = [โ€˜leftโ€™] * 5),
cells=dict(values=[df.iloc[j] for j in range(len(df.State))],
fill = dict(color=โ€™#F5F8FFโ€™),
align = [โ€˜leftโ€™] * 5))

data = [trace]
py.iplot(data, filename = โ€˜pandas_tableโ€™)