Re: [Pharo-users] dynamic interaction with Mondriam

2017-06-07 Thread Alidra Abdelghani via Pharo-users
--- Begin Message ---
Ok, 
Thanks Vincent :)

> On 07 Jun 2017, at 15:52, Blondeau Vincent  
> wrote:
> 
> Hi,
> 
> You should ask in the Moose list ;)
> 
> Vincent
> 
>> -Message d'origine-
>> De : Alidra Abdelghani [mailto:alidran...@yahoo.fr]
>> Envoyé : mercredi 7 juin 2017 15:34
>> À : pharo-users@lists.pharo.org
>> Objet : dynamic interaction with Mondriam
>> 
>> Hi all,
>> 
>> I would like to do some visualisations with Mondrian where you change the
>> visualisation by selecting actions. For instance you have :
>> b := RTMondrian new.
>> b shape rectangle withTextAbove.
>> b nodes:(1 to: 5).
>> b layout grid.
>> b edges connectFrom: [ :e | e + 1 ].
>> b build.
>> b view
>> 
>> then you can click a button to:
>> 1  display/hide the labels above the elements.
>> 2 display/hide some elements (all odd numbers for instance)
>> 3 display/hide connections between elements.
>> I saw a visualisation in the Roassal examples where you can add elements in a
>> dynamic stack grapher. So I presume it is possible to do the same with other
>> types of visus.
>> 
>> Any hints?
>> Thanks in advance.
>> Abdelghani
> 
> !!!*
> "Ce message et les pièces jointes sont confidentiels et réservés à l'usage 
> exclusif de ses destinataires. Il peut également être protégé par le secret 
> professionnel. Si vous recevez ce message par erreur, merci d'en avertir 
> immédiatement l'expéditeur et de le détruire. L'intégrité du message ne 
> pouvant être assurée sur Internet, la responsabilité de Worldline ne pourra 
> être recherchée quant au contenu de ce message. Bien que les meilleurs 
> efforts soient faits pour maintenir cette transmission exempte de tout virus, 
> l'expéditeur ne donne aucune garantie à cet égard et sa responsabilité ne 
> saurait être recherchée pour tout dommage résultant d'un virus transmis.
> 
> This e-mail and the documents attached are confidential and intended solely 
> for the addressee; it may also be privileged. If you receive this e-mail in 
> error, please notify the sender immediately and destroy it. As its integrity 
> cannot be secured on the Internet, the Worldline liability cannot be 
> triggered for the message content. Although the sender endeavours to maintain 
> a computer virus-free network, the sender does not warrant that this 
> transmission is virus-free and will not be liable for any damages resulting 
> from any virus transmitted.!!!"


--- End Message ---


Re: [Pharo-users] dynamic interaction with Mondriam

2017-06-07 Thread Blondeau Vincent
Hi,

You should ask in the Moose list ;)

Vincent

> -Message d'origine-
> De : Alidra Abdelghani [mailto:alidran...@yahoo.fr]
> Envoyé : mercredi 7 juin 2017 15:34
> À : pharo-users@lists.pharo.org
> Objet : dynamic interaction with Mondriam
>
> Hi all,
>
> I would like to do some visualisations with Mondrian where you change the
> visualisation by selecting actions. For instance you have :
> b := RTMondrian new.
> b shape rectangle withTextAbove.
> b nodes:(1 to: 5).
> b layout grid.
> b edges connectFrom: [ :e | e + 1 ].
> b build.
> b view
>
> then you can click a button to:
> 1  display/hide the labels above the elements.
> 2 display/hide some elements (all odd numbers for instance)
> 3 display/hide connections between elements.
> I saw a visualisation in the Roassal examples where you can add elements in a
> dynamic stack grapher. So I presume it is possible to do the same with other
> types of visus.
>
> Any hints?
> Thanks in advance.
> Abdelghani

!!!*
"Ce message et les pièces jointes sont confidentiels et réservés à l'usage 
exclusif de ses destinataires. Il peut également être protégé par le secret 
professionnel. Si vous recevez ce message par erreur, merci d'en avertir 
immédiatement l'expéditeur et de le détruire. L'intégrité du message ne pouvant 
être assurée sur Internet, la responsabilité de Worldline ne pourra être 
recherchée quant au contenu de ce message. Bien que les meilleurs efforts 
soient faits pour maintenir cette transmission exempte de tout virus, 
l'expéditeur ne donne aucune garantie à cet égard et sa responsabilité ne 
saurait être recherchée pour tout dommage résultant d'un virus transmis.

This e-mail and the documents attached are confidential and intended solely for 
the addressee; it may also be privileged. If you receive this e-mail in error, 
please notify the sender immediately and destroy it. As its integrity cannot be 
secured on the Internet, the Worldline liability cannot be triggered for the 
message content. Although the sender endeavours to maintain a computer 
virus-free network, the sender does not warrant that this transmission is 
virus-free and will not be liable for any damages resulting from any virus 
transmitted.!!!"



[Pharo-users] dynamic interaction with Mondriam

2017-06-07 Thread Alidra Abdelghani via Pharo-users
--- Begin Message ---
Hi all,

I would like to do some visualisations with Mondrian where you change the 
visualisation by selecting actions. For instance you have :
b := RTMondrian new.
b shape rectangle withTextAbove.
b nodes:(1 to: 5).
b layout grid.
b edges connectFrom: [ :e | e + 1 ].
b build.
b view

then you can click a button to:
1  display/hide the labels above the elements.
2 display/hide some elements (all odd numbers for instance)
3 display/hide connections between elements.
I saw a visualisation in the Roassal examples where you can add elements in a 
dynamic stack grapher. So I presume it is possible to do the same with other 
types of visus. 

Any hints?
Thanks in advance.
Abdelghani
--- End Message ---