Issue 1012 in moose-technology: GLMExpander does not allow changing pane size

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

Issue 1012 in moose-technology: GLMExpander does not allow changing pane size

moose-technology
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium Component-Glamour

New issue 1012 by [hidden email]: GLMExpander does not allow  
changing pane size
http://code.google.com/p/moose-technology/issues/detail?id=1012

In GLMExpander panes cannot be resized to show completely the contents of  
the contained presentation. A script with an expander showing an Eyesee  
chart to demonstrate the problem:

browser := GLMDashboard new.
        browser title: 'Expander Example'.
        expander := GLMExpander new.
        expander title: 'Chart'.
        expander show: [ :a |
                                        a title: [ 'A simple eyesee chart' ].
                a eyesee
                        title: 'Sample bar chart';
                        diagram: [:renderer :x :y |
                     renderer verticalBarDiagram
                                                y: #yourself;
                                                models: #(5 2 10 6 12 8);
                                                width: 200;
                                                height: 450;
                                                baseAxisLine.
                                        renderer interaction popupText:  
#yourself ]].
        browser addPaneNamed: #metrics extent: 200@450.
        browser transmit to: #metrics; andShow: [:a |
                a custom: expander  ].
        browser openOn: #('first exmple')

--
You received this message because this project is configured to send all  
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev