[ANN] Double-Axis chart diagram

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

[ANN] Double-Axis chart diagram

abergel
Hi!

A new builder, part of Charter is now in!


-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
b := RTDoubleGrapherBuilder new.
b extent: 300 @ 200.

ds := RTStackedDataSet new.
ds points: #(4 3 2 2).
ds barShape width: 40.
b add: ds.

ds := RTStackedDataSet new.
ds points: (10 to: 13).
ds dotShape color: Color blue.
ds connectColor: Color red.
b addRight: ds.


b axisXNoLabel; axisY.
b axisConfiguration color: Color red.
b axisYRight.
b build.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

Cheers,
Alexandre

-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
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: [ANN] Double-Axis chart diagram

Ben Coman
Alexandre Bergel wrote:
> Hi!
>
> A new builder, part of Charter is now in!

Looks nice.




>
> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
> b := RTDoubleGrapherBuilder new.
> b extent: 300 @ 200.
>
> ds := RTStackedDataSet new.
> ds points: #(4 3 2 2).
> ds barShape width: 40.
> b add: ds.
>
> ds := RTStackedDataSet new.
> ds points: (10 to: 13).
> ds dotShape color: Color blue.
> ds connectColor: Color red.
> b addRight: ds.
>
>
> b axisXNoLabel; axisY.
> b axisConfiguration color: Color red.
> b axisYRight.
> b build.
> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
>
_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: [ANN] Double-Axis chart diagram

Tudor Girba-2
Looks nice, indeed. I am happy to see the concept of stacking charts available in Moose again!

Doru

On Wed, Dec 3, 2014 at 2:40 PM, Ben Coman <[hidden email]> wrote:
Alexandre Bergel wrote:
Hi!

A new builder, part of Charter is now in!

Looks nice.





-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
b := RTDoubleGrapherBuilder new.
b extent: 300 @ 200.

ds := RTStackedDataSet new.
ds points: #(4 3 2 2).
ds barShape width: 40.
b add: ds.

ds := RTStackedDataSet new.
ds points: (10 to: 13).
ds dotShape color: Color blue.
ds connectColor: Color red.
b addRight: ds.


b axisXNoLabel; axisY.
b axisConfiguration color: Color red.
b axisYRight.
b build.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

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



--

"Every thing has its own flow"

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

Re: [ANN] Double-Axis chart diagram

Usman Bhatti
In reply to this post by abergel
Thanks Alex.

On Wed, Dec 3, 2014 at 2:34 PM, Alexandre Bergel <[hidden email]> wrote:
Hi!

A new builder, part of Charter is now in!


-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
b := RTDoubleGrapherBuilder new.
b extent: 300 @ 200.

ds := RTStackedDataSet new.
ds points: #(4 3 2 2).
ds barShape width: 40.
b add: ds.

ds := RTStackedDataSet new.
ds points: (10 to: 13).
ds dotShape color: Color blue.
ds connectColor: Color red.
b addRight: ds.


b axisXNoLabel; axisY.
b axisConfiguration color: Color red.
b axisYRight.
b build.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

Cheers,
Alexandre

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




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



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

Re: [ANN] Double-Axis chart diagram

cbc
In reply to this post by abergel
very nice!

Now, can you stack many (more than 2), and even more importantly, can you set the max values for the two Y axis?  for graphs such as:
Inline image 1
-cbc

On Wed, Dec 3, 2014 at 5:34 AM, Alexandre Bergel <[hidden email]> wrote:
Hi!

A new builder, part of Charter is now in!


-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
b := RTDoubleGrapherBuilder new.
b extent: 300 @ 200.

ds := RTStackedDataSet new.
ds points: #(4 3 2 2).
ds barShape width: 40.
b add: ds.

ds := RTStackedDataSet new.
ds points: (10 to: 13).
ds dotShape color: Color blue.
ds connectColor: Color red.
b addRight: ds.


b axisXNoLabel; axisY.
b axisConfiguration color: Color red.
b axisYRight.
b build.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

Cheers,
Alexandre

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




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



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

Re: [ANN] Double-Axis chart diagram

Offray
In reply to this post by Ben Coman
Alexandre,

Nice to see the "export PNG" menu. I got an error which I posted on [1].
By the way, should be nice to be able to post error traces directly on
stfx.eu

[1] http://ws.stfx.eu/AUT3L33FDMUG

Cheers,

Offray

El 03/12/14 a las 08:40, Ben Coman escribió:

> Alexandre Bergel wrote:
>> Hi!
>>
>> A new builder, part of Charter is now in!
>
> Looks nice.
>
>
>
>
>>
>> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
>> b := RTDoubleGrapherBuilder new.
>> b extent: 300 @ 200.
>>
>> ds := RTStackedDataSet new.
>> ds points: #(4 3 2 2).
>> ds barShape width: 40.
>> b add: ds.
>>
>> ds := RTStackedDataSet new.
>> ds points: (10 to: 13).
>> ds dotShape color: Color blue.
>> ds connectColor: Color red.
>> b addRight: ds.
>>
>>
>> b axisXNoLabel; axisY.
>> b axisConfiguration color: Color red.
>> b axisYRight.
>> b build.
>> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
>>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>


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

Re: [ANN] Double-Axis chart diagram

Tudor Girba-2
Thanks for the report.

What did you trigger the export on?

Cheers,
Doru


On Thu, Dec 4, 2014 at 12:48 AM, Offray Vladimir Luna Cárdenas <[hidden email]> wrote:
Alexandre,

Nice to see the "export PNG" menu. I got an error which I posted on [1]. By the way, should be nice to be able to post error traces directly on stfx.eu

[1] http://ws.stfx.eu/AUT3L33FDMUG

Cheers,

Offray

El 03/12/14 a las 08:40, Ben Coman escribió:

Alexandre Bergel wrote:
Hi!

A new builder, part of Charter is now in!

Looks nice.





-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
b := RTDoubleGrapherBuilder new.
b extent: 300 @ 200.

ds := RTStackedDataSet new.
ds points: #(4 3 2 2).
ds barShape width: 40.
b add: ds.

ds := RTStackedDataSet new.
ds points: (10 to: 13).
ds dotShape color: Color blue.
ds connectColor: Color red.
b addRight: ds.


b axisXNoLabel; axisY.
b axisConfiguration color: Color red.
b axisYRight.
b build.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

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



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



--

"Every thing has its own flow"

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