Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

matplotlib 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')
Comment

plot background color matplotlib

### 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')
Comment

matplotlib python background color

fig = plt.figure()
fig.patch.set_facecolor('xkcd:mint green')
Comment

PREVIOUS NEXT
Code Example
Python :: pandas fillna with median of column 
Python :: python get last modification time of file 
Python :: calculate euclidian distance python 
Python :: required validator python WTForms 
Python :: define a column as index pandas 
Python :: python day from date 
Python :: flask development mode 
Python :: tkinter draw circle 
Python :: django proper capitalization case jinja 
Python :: how to get the angle of mouse from the center formulae 
Python :: redirect to the same page django 
Python :: pandas index to list 
Python :: how to access for loop counter of outer loop 
Python :: pandas not is na 
Python :: How to develop a TCP echo server, in Python? 
Python :: sort list by attribute python 
Python :: first 2 terms 
Python :: pyqt5 wait cursor 
Python :: how to stop the program in python 
Python :: plt.xlabel not working 
Python :: filter dataframe by index 
Python :: discord identity python html avatar 
Python :: age calculator in python 
Python :: convert all values in array into float 
Python :: how to add an active class to current element in navbar in django 
Python :: discord.py create text channel 
Python :: pandas split column into multiple columns by delimiter 
Python :: python detect keypress 
Python :: Not getting spanish characters python 
Python :: How to save XLSX file to ir_attachment odoo 
ADD CONTENT
Topic
Content
Source link
Name
4+9 =