AttributeError: Unknown property axisbg

Abhishek Kumar picture Abhishek Kumar · May 24, 2018 · Viewed 14.2k times · Source

Here is a code am trying to run:

ax = plt.axes(axisbg='#E6E6E6')
ax.set_axisbelow(True)
plt.grid(color='w',linestyle='solid')

for spine in ax.spines.values():
   spine.set_visible(False)

ax.xaxis.tick_bottom()
ax.yaxis.tick_left()

ax.tick_params(colors='gray',direction='out')
for tick in ax.get_xticklabels():
   tick.set_color('gray')
for tick in ax.get_yaxislabels():
   tick.set_color('gray')

ax.hist(x,edgecolor='E6E6E6',color='E6E6E6');

And the Error is: AttributeError: Unknown property axisbg

Please help me identify the error.

Answer

kmario23 picture kmario23 · Mar 30, 2019

Replace the below line of code

ax = plt.axes(axisbg='#E6E6E6')

with

ax = plt.axes(facecolor='#E6E6E6')