Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am making a scatterplot in matplotlib and need to change the background of the actual plot to black. I know how to change the facecolor of the plot using:

fig = plt.figure()
fig.patch.set_facecolor('black')

My issue is that this changes the color of the space around the plot. How to I change the actual background color of the plot?

share|improve this question
1  
Just FYI, in addition to what @Evert said, you could just use ax.patch.set_facecolor('black') (where ax is the axes instance). fig.patch is the figure background and ax.patch is the axes background. – Joe Kington Dec 30 '12 at 18:50

1 Answer

Something like this? Use the axisbg keyword to subplot:

>>> from matplotlib.figure import Figure
>>> from matplotlib.backends.backend_agg import FigureCanvasAgg as FigureCanvas
>>> figure = Figure()
>>> canvas = FigureCanvas(figure)
>>> axes = figure.add_subplot(1, 1, 1, axisbg='red')
>>> axes.plot([1,2,3])
[<matplotlib.lines.Line2D object at 0x2827e50>]
>>> canvas.print_figure('red-bg.png')

(Granted, not a scatter plot, and not a black background.)

enter image description here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.