9951 explained code solutions for 126 technologies


python-matplotlibHow to set text box background color


import matplotlib.pyplot as plt

plt.plot([2,1,3,6,2])
plt.text(1, 3.5, "hi from python", bbox=dict(facecolor='green', alpha=0.25))

plt.show()ctrl + c
import matplotlib.pyplot as plt

loads Matplotlib module to use plotting capabilities

.plot(

plot specified data

.text(

adds custom text to chart

1, 3.5

vertical and horizontal coordinates for our text box

hi from python

sample text to show

facecolor

background color

alpha

background opacity (transparency)

.show()

render chart in a separate window