@theengineear @chriddyp So that axes can be generated with custom attributes. Perhaps like ``` py tls.make_subplots(rows=4, cols=3, update_xaxes=dict(), update_yaxes=dict()) ``` and/or ``` py tls.make_subplots(rows=2, cols=2, specs=[[{update_xaxis=dict(), update_yaxis=dict()}, {}], [{}, {}]]) ``` more info [here](http://stackoverflow.com/questions/30429127/how-to-set-axis-properties-using-a-row-column-type-index-on-a-plotly-graph-creat).