4

鉴于此代码,

from pylab import *
ion()
axes(frameon = 0, aspect = 1, polar = 1)
grid (True)

我得到了包含轴的窗口,我可以在其中绘制我需要的东西。

我想将此窗口的背景从标准灰色更改为另一种颜色。

我不想使用框架。

4

1 回答 1

8

facecolor调用时需要为参数指定参数figure()

from pylab import *
ion()
figure(facecolor='white') # Or any other color
axes(frameon = 0, aspect = 1, polar = 1)
grid(True)

在此处输入图像描述

于 2013-06-03T13:25:51.597 回答