Python Forum
draw chart in wx Frame
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
draw chart in wx Frame
#1
I have the following code as startup. I need to add an image place in the wx frame to draw stock chart on it.
I found many similar codes on Internet such as this link below but they draw chart on a popup window, not in a wx frame. Is there a way to do it? thanks.
https://matplotlib.org/examples/pylab_ex..._demo.html

import wx
import wx.grid
 
app = wx.App()
window = wx.Frame(None, -1, title='Test', size=(960, 850), pos = (-5, 0))
background = wx.Panel(window)
background.SetBackgroundColour("Blue")
 
grid = wx.grid.Grid(background, size=(312,150), pos=(0,0))
grid.CreateGrid(6,6)
 
window.Show()
app.MainLoop()
Reply
#2
This works fine for me.
I don't see how you could possible get a popup.
I think you're confusing the entire application as a popup
   
Reply
#3
Sorry, I may not explain clearly. the code is what I have done. What I need is to add the second part beside the grid on the frame. I will draw chart in it. Thanks
Reply
#4
My suggestion is download the source here: https://pypi.python.org/packages/b7/1a/6...7a87b82ba3
once done, and code extracted, change to demo directory.
from command line run:
python demo.py
you should be able to find some good examples with sample code of what you're looking for
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [Tkinter] Scrollbar, Frame and size of Frame Maksim 2 8,940 Sep-30-2019, 07:30 AM
Last Post: Maksim
  [Tkinter] create and insert a new frame on top of another frame atlass218 4 10,992 Apr-18-2019, 05:36 PM
Last Post: atlass218
  [Tkinter] Frame size only works if frame is empty(Solved) Tuck12173 7 6,367 Jan-29-2018, 10:44 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020