How can I set the background color on specific areas of a Pyplot figure using Matplotlib?


To set the background color on specific areas of a pyplot, we can take the following steps −

  • Using subplots() method, create a figure and a set of subplots, where nrows=1.

  • Using rectangle, we can create a rectangle, defined via an anchor point and its width and height. Where, edgecolor=orange, linewidth=7, and facecolor=green.

  • To plot a diagram over the axis, we can create a line using plot() method, where line color is red.

  • To color a specific portion of the plot, add a rectangle patch on the diagram using add_patch() method.

  • To display the figure, use show() method.

Example

from matplotlib import pyplot as plt, patches
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
figure, ax = plt.subplots(1)
rectangle = patches.Rectangle((2, 4), 3, 3, edgecolor='orange',
facecolor="green", linewidth=7)
ax.plot([2, 4, 5, 1, 4, 8, 0], c='red')
ax.add_patch(rectangle)
plt.show()

Output

Updated on: 06-May-2021

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements