Hi all, I am trying to develop a browser with GLAMOUR and I wish to have a graphET panel therein. How can I view my graph in this panel?
thank you!
Hi!
Try this: -=-=-=-=-=-=-=-=-=-=-=-= | b | b := GLMTabulator new. b column: #first. b column: #second. b transmit to: #first; andShow: [ :a | a list display: (1 to: 20); yourself ].
b transmit from: #first; to: #second; andShow: [ :a | a roassal2 painting: [ :view :input | | bg | bg := GET2Line new view: view; data: (input to: 30). bg y: [ :x | x * x ]. bg build ] ].
b openOn: 42 -=-=-=-=-=-=-=-=-=-=-=-=
Here is a screenshot:
Alexandre