i know this might sound like a similar question to some already asked question, but the problem that im having is that i placed all widgets using .place(x=?,y=?) instead of using a tkinter grid like most questions, thats why im wondering if anyone have an idea to make it work without the need to rewrite everything using grid, here is an example from my code :
#canvas
self.fig.clear()
self.fig=plt.figure()
plt.gcf().subplots_adjust(left=0.16)
plt.xlabel(xlabel)
plt.ylabel(ylabel)
self.CS = plt.contour(X, Y, Z)
plt.plot(pointX, pointY, 'kx')
plt.clabel(self.CS, inline=1, fontsize=10)
self.canvas = FigureCanvasTkAgg(self.fig, self)
self.canvas.get_tk_widget().pack(side=tk.BOTTOM, fill=tk.BOTH, expand=True)
self.canvas.tkcanvas.place(x=0,y=350,hight=400,width=400)
self.canvas.show()
#Label
label1 = tk.Label(self, text="Horizontal", font=LARGE_FONT)
label1.place(x = 20, y = 50,height=20)
label2 = tk.Label(self, text="Vertikal", font=LARGE_FONT)
label2.place(x = 120, y = 50,height=20)
Thank you
.pack()or.grid().