Is there an easy way to change the legend orientation when using plotly cufflinks? E.g for the code below:
df = pd.DataFrame(np.random.randn(1000, 2), columns=['A', 'B']).cumsum()
df.iplot(filename='cufflinks/line-example')
the legend appears on the right hand side of the graph. Is there an easy way to change it to the bottom without rewriting the layout dictionary?
For e.g. to create a secondary y-axis in cufflinks, I can just use:
df.iplot(secondary_y ='B')
without rewriting the layout dictionary.
Hope the above makes sense.