How to do interactive Graph Builder in a custom window without toolbars or menus?
Currently I have the following script: gb = Graph Builder(...);
rgb = Report(gb);
win = New Window("Custom Window", Show Menu( 0 ), Show Toolbars( 0 ), rgb);
gb << Close Window;
This way I get my small GB plot in a nice window without unnecessary user controls.The problem is that I cannot select points on that plot - it's a report, plot is not interactive. How do I either:a) make it interactive, so...