Setting a colored bar with EyeSee

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

Setting a colored bar with EyeSee

abergel
Hi!

How can I set the bar color with eyesee?
The script:
-=-=--=-=--=-=--=-=--=-=-
        | diag factory |
        factory := ESDummyFactory new.

        factory yValues: numberOfExecutionsTable values.
        diag := ESDiagramRenderer new.
        (diag verticalBarDiagram)
                y: #yValue;
                regularAxis;
                width: 300;
                height: 200;
                setInvertedLinearFill;
                setColoredFill;
                defaultColor: Color lightBlue;
                models: factory buildDummies. "or setInvertedLinearFill"
-=-=--=-=--=-=--=-=--=-=-

Gives me




How can I turn it into light blue?

Cheers,
Alexandre

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.






_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev

Screen shot 2011-05-27 at 16.46.58.png (10K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Setting a colored bar with EyeSee

Andre Hora
Hello,

 | diag factory |
       factory := ESDummyFactory new.

       factory yValues: numberOfExecutionsTable values.
       diag := ESDiagramRenderer new.
       (diag verticalBarDiagram)
               y: #yValue;
               regularAxis;
               width: 300;
               height: 200;
               setColoredFill;
               defaultColor: Color lightBlue;
               models: factory buildDummies.   "or setInvertedLinearFill"

regards,

On Fri, May 27, 2011 at 10:47 PM, Alexandre Bergel <[hidden email]> wrote:
Hi!

How can I set the bar color with eyesee?
The script:
-=-=--=-=--=-=--=-=--=-=-
       | diag factory |
       factory := ESDummyFactory new.

       factory yValues: numberOfExecutionsTable values.
       diag := ESDiagramRenderer new.
       (diag verticalBarDiagram)
               y: #yValue;
               regularAxis;
               width: 300;
               height: 200;
               setInvertedLinearFill;
               setColoredFill;
               defaultColor: Color lightBlue;
               models: factory buildDummies.   "or setInvertedLinearFill"
-=-=--=-=--=-=--=-=--=-=-

Gives me




How can I turn it into light blue?

Cheers,
Alexandre

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.






_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev




--
Andre Hora


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Setting a colored bar with EyeSee

abergel
Ah sorry. I should have seen the unnecessary  setInvertedLinearFill

how can I remove the border around each bar? I was looking for a withoutBorder, but it does not exist.

Cheers,
Alexandre


On 27 May 2011, at 17:08, Andre Hora wrote:

> Hello,
>
>  | diag factory |
>        factory := ESDummyFactory new.
>
>        factory yValues: numberOfExecutionsTable values.
>        diag := ESDiagramRenderer new.
>        (diag verticalBarDiagram)
>                y: #yValue;
>                regularAxis;
>                width: 300;
>                height: 200;
>                setColoredFill;
>                defaultColor: Color lightBlue;
>                models: factory buildDummies.   "or setInvertedLinearFill"
>
> regards,
>
> On Fri, May 27, 2011 at 10:47 PM, Alexandre Bergel <[hidden email]> wrote:
> Hi!
>
> How can I set the bar color with eyesee?
> The script:
> -=-=--=-=--=-=--=-=--=-=-
>        | diag factory |
>        factory := ESDummyFactory new.
>
>        factory yValues: numberOfExecutionsTable values.
>        diag := ESDiagramRenderer new.
>        (diag verticalBarDiagram)
>                y: #yValue;
>                regularAxis;
>                width: 300;
>                height: 200;
>                setInvertedLinearFill;
>                setColoredFill;
>                defaultColor: Color lightBlue;
>                models: factory buildDummies.   "or setInvertedLinearFill"
> -=-=--=-=--=-=--=-=--=-=-
>
> Gives me
>
>
>
>
> How can I turn it into light blue?
>
> Cheers,
> Alexandre
>
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel  http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>
>
>
>
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>
>
>
>
> --
> Andre Hora
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.





_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Setting a colored bar with EyeSee

Andre Hora
Yes, now it is not possible to remove the border around each bar.
I can have a look into this asap.

regards,

On Fri, May 27, 2011 at 11:14 PM, Alexandre Bergel <[hidden email]> wrote:
Ah sorry. I should have seen the unnecessary  setInvertedLinearFill

how can I remove the border around each bar? I was looking for a withoutBorder, but it does not exist.

Cheers,
Alexandre


On 27 May 2011, at 17:08, Andre Hora wrote:

> Hello,
>
>  | diag factory |
>        factory := ESDummyFactory new.
>
>        factory yValues: numberOfExecutionsTable values.
>        diag := ESDiagramRenderer new.
>        (diag verticalBarDiagram)
>                y: #yValue;
>                regularAxis;
>                width: 300;
>                height: 200;
>                setColoredFill;
>                defaultColor: Color lightBlue;
>                models: factory buildDummies.   "or setInvertedLinearFill"
>
> regards,
>
> On Fri, May 27, 2011 at 10:47 PM, Alexandre Bergel <[hidden email]> wrote:
> Hi!
>
> How can I set the bar color with eyesee?
> The script:
> -=-=--=-=--=-=--=-=--=-=-
>        | diag factory |
>        factory := ESDummyFactory new.
>
>        factory yValues: numberOfExecutionsTable values.
>        diag := ESDiagramRenderer new.
>        (diag verticalBarDiagram)
>                y: #yValue;
>                regularAxis;
>                width: 300;
>                height: 200;
>                setInvertedLinearFill;
>                setColoredFill;
>                defaultColor: Color lightBlue;
>                models: factory buildDummies.   "or setInvertedLinearFill"
> -=-=--=-=--=-=--=-=--=-=-
>
> Gives me
>
>
>
>
> How can I turn it into light blue?
>
> Cheers,
> Alexandre
>
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel  http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>
>
>
>
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>
>
>
>
> --
> Andre Hora
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.





_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev



--
Andre Hora


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Setting a colored bar with EyeSee

abergel
It is not urgent so far.
Thanks for looking into it.

Alexandre


On 27 May 2011, at 17:20, Andre Hora wrote:

> Yes, now it is not possible to remove the border around each bar.
> I can have a look into this asap.
>
> regards,
>
> On Fri, May 27, 2011 at 11:14 PM, Alexandre Bergel <[hidden email]> wrote:
> Ah sorry. I should have seen the unnecessary  setInvertedLinearFill
>
> how can I remove the border around each bar? I was looking for a withoutBorder, but it does not exist.
>
> Cheers,
> Alexandre
>
>
> On 27 May 2011, at 17:08, Andre Hora wrote:
>
> > Hello,
> >
> >  | diag factory |
> >        factory := ESDummyFactory new.
> >
> >        factory yValues: numberOfExecutionsTable values.
> >        diag := ESDiagramRenderer new.
> >        (diag verticalBarDiagram)
> >                y: #yValue;
> >                regularAxis;
> >                width: 300;
> >                height: 200;
> >                setColoredFill;
> >                defaultColor: Color lightBlue;
> >                models: factory buildDummies.   "or setInvertedLinearFill"
> >
> > regards,
> >
> > On Fri, May 27, 2011 at 10:47 PM, Alexandre Bergel <[hidden email]> wrote:
> > Hi!
> >
> > How can I set the bar color with eyesee?
> > The script:
> > -=-=--=-=--=-=--=-=--=-=-
> >        | diag factory |
> >        factory := ESDummyFactory new.
> >
> >        factory yValues: numberOfExecutionsTable values.
> >        diag := ESDiagramRenderer new.
> >        (diag verticalBarDiagram)
> >                y: #yValue;
> >                regularAxis;
> >                width: 300;
> >                height: 200;
> >                setInvertedLinearFill;
> >                setColoredFill;
> >                defaultColor: Color lightBlue;
> >                models: factory buildDummies.   "or setInvertedLinearFill"
> > -=-=--=-=--=-=--=-=--=-=-
> >
> > Gives me
> >
> >
> >
> >
> > How can I turn it into light blue?
> >
> > Cheers,
> > Alexandre
> >
> > --
> > _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> > Alexandre Bergel  http://www.bergel.eu
> > ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
> >
> >
> >
> >
> >
> >
> > _______________________________________________
> > Moose-dev mailing list
> > [hidden email]
> > https://www.iam.unibe.ch/mailman/listinfo/moose-dev
> >
> >
> >
> >
> > --
> > Andre Hora
> >
> > _______________________________________________
> > Moose-dev mailing list
> > [hidden email]
> > https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel  http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>
>
>
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>
>
>
> --
> Andre Hora
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.





_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev