“Plot -Hintergrundfarbe matplotlib Diagramm” Code-Antworten

Matplotlib -Hintergrundfarbe

fig, ax = plt.subplots()
#to change the inside of the graph
ax.set_facecolor('xkcd:salmon')
ax.set_facecolor((1.0, 0.47, 0.42))
#to change the border color around the back
fig.patch.set_facecolor('xkcd:mint green')
Exuberant Eel

Plot -Hintergrundfarbe matplotlib Diagramm

### How to change plot background color

fig, ax = plt.subplots()
## to change the inside of the graph
ax.set_facecolor('xkcd:salmon')
ax.set_facecolor((1.0, 0.47, 0.42))
## to change the border color around the back
fig.patch.set_facecolor('xkcd:mint green')
DON-PECH

Ähnliche Antworten wie “Plot -Hintergrundfarbe matplotlib Diagramm”

Fragen ähnlich wie “Plot -Hintergrundfarbe matplotlib Diagramm”

Weitere verwandte Antworten zu “Plot -Hintergrundfarbe matplotlib Diagramm” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen