A Medical Graphic for Market Flow Analysis ???


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Complex Event Processing RSS News A Medical Graphic for Market Flow Analysis ???
# 1  
Old 12-29-2008
A Medical Graphic for Market Flow Analysis ???

2008-12-29T07:35:00.004-05:00


Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Graphic application

Hi, do you know any Open source software , equivalent to Lightroom 1.1 of Adob ? Thanks. (0 Replies)
Discussion started by: big123456
0 Replies

2. UNIX Desktop Questions & Answers

graphic problems

Hallo, Is there anyone you is an expert in old sparc hardware ? I have a problem with my "new" ( sparc 20 ,2xCPU,250MB) sparc. For me it is not possible to enhanc the colors of my graphic adaptor.(STP3010PGA TURBOXGX SUN) Is there a chance to adjust more then 256 colors ? Please help my ! (1 Reply)
Discussion started by: joerg
1 Replies

3. UNIX for Dummies Questions & Answers

Graphic apps

We have app. 20.000 UNIX boxes running mainly Solaris 2.4. Among other things we produce product documentation and have previously used Island Draw to produce images and such. Where do I find objective reviews of similar software packages, have any1 of you done any evaluation? I´ve searched this... (4 Replies)
Discussion started by: FredrikB
4 Replies
Login or Register to Ask a Question
Layout::Manager::Flow(3pm)				User Contributed Perl Documentation				Layout::Manager::Flow(3pm)

NAME
Layout::Manager::Flow - Directional layout manager DESCRIPTION
Layout::Manager::Flow is a layout manager that anchors components in one of the four cardinal directions. When you instantiate a Flow manager, you may supply it with an anchor value which may be one of north, south, east or west. The example below shows how the default anchor value of north works when you add two components. north +--------------------------------+ | component 1 | +--------------------------------+ | component 2 | +--------------------------------+ | | | | | | +--------------------------------+ Components are placed in the order they are added. If two items are added with a 'north' anchor then the first item will be rendered above the second. Components will be expanded to take up all space perpendicular to their anchor. North and south will expand widths while east and west will expand heights. Flow is similar to Java's FlowLayout <http://java.sun.com/docs/books/tutorial/uiswing/layout/flow.html>. It does not, however, center components. This features may be added in the future if they are needed. SYNOPSIS
$cont->add_component($comp1); $cont->add_component($comp2); my $lm = Layout::Manager::Flow->new(anchor => 'north'); $lm->do_layout($cont); ATTRIBUTES
anchor The direction this manager is anchored. Valid values are north, south, east and west. used Returns the amount of space used an arrayref in the form of "[ $width, $height ]". wrap If set to a true value, then component will be 'wrapped' when they do not fit. This currently only works for East and West anchored layouts. METHODS
do_layout Size and position the components in this layout. AUTHOR
Cory Watson, "<gphat@cpan.org>" COPYRIGHT &; LICENSE Copyright 2008 by Cory G Watson This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.12.3 2011-05-16 Layout::Manager::Flow(3pm)