Nonesense! It's a preasure to having you asking us thing in Graph-ET, that just means you're using it, and it's cool :)

> Date: Mon, 6 Jan 2014 16:42:14 +0100
> From: kevin.lanvin@inria.fr
> To: moose-dev@iam.unibe.ch
> Subject: [Moose-dev] Re: [Pharo-dev] Feature for request for GraphET?
>
> I'm not able to do it myself. I've never done javascript before and I think the problem is coming from here.
> I'm sorry to ask you so much with graph-ET.
>
>
> ----- Mail original -----
> > De: "Alexandre Bergel" <alexandre.bergel@me.com>
> > À: "Moose-related development" <moose-dev@iam.unibe.ch>
> > Envoyé: Lundi 6 Janvier 2014 16:06:26
> > Objet: [Moose-dev] Re: [Pharo-dev] Feature for request for GraphET?
> >
> > Sure! Feel free to provide a fix for this. Sending .st or .cs files
> > is fine :-)
> >
> > Alexandre
> >
> >
> > On Jan 6, 2014, at 11:29 AM, Kevin Lanvin <kevin.lanvin@inria.fr>
> > wrote:
> >
> > > Hello,
> > > I'm displaying a graph on the web , and it's working well, but then
> > > I want tu put a second diagram on my page.
> > > But diagrams are displayed in <div id="chart"></div>
> > > So i can't use a second division to display another one.
> > > Could it be possible to use class instead of id ?
> > >
> > > ----- Mail original -----
> > >> De: "Alexandre Bergel" <alexandre.bergel@me.com>
> > >> À: "Moose-related development" <moose-dev@iam.unibe.ch>
> > >> Envoyé: Lundi 6 Janvier 2014 02:16:48
> > >> Objet: [Moose-dev] Re: [Pharo-dev] Feature for request for
> > >> GraphET?
> > >>
> > >> :-)
> > >>
> > >> That will be the roadmap for week
> > >>
> > >> Alexandre
> > >>
> > >>
> > >> On Jan 5, 2014, at 7:10 PM, Tudor Girba <tudor@tudorgirba.com>
> > >> wrote:
> > >>
> > >>> Reposting here, just in case you missed it :)
> > >>>
> > >>> Doru
> > >>>
> > >>> ---------- Forwarded message ----------
> > >>> From: Tudor Girba <tudor@tudorgirba.com>
> > >>> Date: Sat, Jan 4, 2014 at 10:39 PM
> > >>> Subject: Re: [Pharo-dev] Feature for request for GraphET?
> > >>> To: Pharo Development List <pharo-dev@lists.pharo.org>
> > >>>
> > >>>
> > >>> Here is one thing I would want: a correspondent Graph-ET
> > >>> functionality to make something like this EyeSee script work as
> > >>> in
> > >>> the first attached picture.
> > >>>
> > >>> renderer := ESDiagramRenderer new.
> > >>> grouped := { #item1->{10 . 12 . 11 . 14 } . #item2-> { 1 . 1 . 20
> > >>> }
> > >>> . #item3->{ 1 . 1 . 1 . 1 . 1} }.
> > >>> diag := (ESVerticalBarDiagram new)
> > >>> identifier: [:each | each key ];
> > >>> y: [:each | each value size];
> > >>> yAxisLabel: 'Count';
> > >>> valueAxis;
> > >>> rightYAxis;
> > >>> defaultColor: Color veryVeryLightGray;
> > >>> axisColor: Color veryVeryLightGray;
> > >>> models: grouped;
> > >>> rotatedLabels: true;
> > >>> yourself.
> > >>> diag2 := (ESVerticalBarDiagram new)
> > >>> y: [:each | each value sum];
> > >>> regularAxis;
> > >>> yAxisLabel: 'Sum';
> > >>> gapFraction: 2 / 3;
> > >>> defaultColor: (Color red);
> > >>> axisColor: (Color red);
> > >>> models: grouped;
> > >>> yourself.
> > >>> (renderer compositeDiagram)
> > >>> add: diag;
> > >>> add: diag2.
> > >>> renderer open
> > >>>
> > >>>
> > >>> <Screenshot 2014-01-04 22.31.57.png>
> > >>>
> > >>>
> > >>> The best I could produce with Graph-ET is this (I commented out
> > >>> the
> > >>> message to which I did not find a correspondent):
> > >>>
> > >>> builder := GETDiagramBuilder new.
> > >>> grouped := { #item1->{10 . 12 . 11 . 14 } . #item2-> { 1 . 1 . 20
> > >>> }
> > >>> . #item3->{ 1 . 1 . 1 . 1 . 1} }.
> > >>> diag := (GETVerticalBarDiagram new)
> > >>> "identifier: [:each | each key ];"
> > >>> y: [:each | each value size];
> > >>> yAxisLabel: 'Count';
> > >>> valueAxisLine;
> > >>> "rightYAxis;"
> > >>> color: Color veryLightGray;
> > >>> "axisColor: Color veryLightGray;"
> > >>> models: grouped;
> > >>> "rotatedLabels: true;"
> > >>> yourself.
> > >>> diag2 := (GETVerticalBarDiagram new)
> > >>> y: [:each | each value sum];
> > >>> regularAxis;
> > >>> yAxisLabel: 'Sum';
> > >>> "gapFraction: 2 / 3;"
> > >>> color: (Color red);
> > >>> "axisColor: (Color red);"
> > >>> models: grouped;
> > >>> yourself.
> > >>> (builder compositeDiagram)
> > >>> add: diag;
> > >>> add: diag2.
> > >>> builder open
> > >>>
> > >>> <Screenshot 2014-01-04 22.36.40.png>
> > >>>
> > >>> Cheers,
> > >>> Doru
> > >>>
> > >>>
> > >>>
> > >>>
> > >>> On Thu, Jan 2, 2014 at 7:24 PM, Alexandre Bergel
> > >>> <alexandre.bergel@me.com> wrote:
> > >>> Hi!
> > >>>
> > >>> Daniel is looking for usage scenarios with GraphET. It would be
> > >>> great to hear about your need.
> > >>> Currently, we will work on:
> > >>> - PDF Export using Artefact
> > >>> - support for legend
> > >>> - smarter way to put labels on axis
> > >>>
> > >>> Anything else?
> > >>>
> > >>> Cheers,
> > >>> Alexandre
> > >>> --
> > >>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> > >>> Alexandre Bergel http://www.bergel.eu
> > >>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
> > >>>
> > >>>
> > >>>
> > >>>
> > >>>
> > >>>
> > >>>
> > >>> --
> > >>> www.tudorgirba.com
> > >>>
> > >>> "Every thing has its own flow"
> > >>>
> > >>>
> > >>>
> > >>> --
> > >>> www.tudorgirba.com
> > >>>
> > >>> "Every thing has its own flow"
> > >>> _______________________________________________
> > >>> Moose-dev mailing list
> > >>> Moose-dev@iam.unibe.ch
> > >>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
> > >>
> > >> --
> > >> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> > >> Alexandre Bergel http://www.bergel.eu
> > >> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
> > >>
> > >>
> > >>
> > >>
> > >> _______________________________________________
> > >> Moose-dev mailing list
> > >> Moose-dev@iam.unibe.ch
> > >> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
> > >>
> > >
> > > _______________________________________________
> > > Moose-dev mailing list
> > > Moose-dev@iam.unibe.ch
> > > https://www.iam.unibe.ch/mailman/listinfo/moose-dev
> >
> > --
> > _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> > Alexandre Bergel http://www.bergel.eu
> > ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
> >
> >
> >
> >
> > _______________________________________________
> > Moose-dev mailing list
> > Moose-dev@iam.unibe.ch
> > https://www.iam.unibe.ch/mailman/listinfo/moose-dev
> >
>
> _______________________________________________
> Moose-dev mailing list
> Moose-dev@iam.unibe.ch
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev