I am trying to change the figure size (height and width) of the figure that I called using plotly cufflinks for pandas. I know that I could separately Layout from plotly.graph_objs and then give the height and width command. However, is there a way I could control the font and/or figure parameters using cufflinks.
I am plotting the Reasons for delisting of stocks on X axis and their count on Y.
Here is my code
grped = d_list_data.groupby(['Reasons Short']).size()
import cufflinks as cf
grped.iplot(kind = 'bar',
xTitle = 'Reasons for Delisting',
yTitle= 'Count',
title= 'Delisting Reasons since 2001',
theme = 'polar',
)