I want to change the background color of the embeded matplotlob graph. I already got it to change the background color of the widget, but not of the chart (inside)I mean the white part of the program
here is the code:
from tkinter import *
import matplotlib.pyplot as plt
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg
x = [1, 2, 3, 4, 5]
y = [1, 2, 3, 4, 5]
root = Tk()
root.title("graph embed")
root.geometry("200x300")
root.configure(bg="yellow")
ax = plt.gca()
ax.set_facecolor('yellow')
fig = plt.Figure(figsize=(5, 4), dpi=100)
fig.add_subplot(111).plot(x, y, "bo")
fig.set_facecolor("yellow")
chart = FigureCanvasTkAgg(fig, root)
chart.get_tk_widget().pack()
root.mainloop()