Hi Folks,
probably this is super silly question but anyways.
I wanted to display a histogramm so i used the inbuild function from pandas:
ax = df["value"].plot.hist(bins=12)
st.plotly_chart(ax.figure, use_container_width=True)
I get:
AttributeError: 'XAxis' object has no attribute '_gridOnMajor'
However, if i use st.write(ax.figure)
it works fine.
What is going wrong here?