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โ)