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