Status: New Owner: ---- Labels: Type-Defect Priority-Medium Component-Glamour
New issue 1012 by usman.bh...@gmail.com: 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')