Graphing in Seaside

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

Graphing in Seaside

Robert Bruce Carleton-4
I'm considering moving gnuplot generated 2D graphs to Seaside.  Can
anyone suggest the kinds of Squeak/Seaside tools that could help me
generate graphs in Seaside?  We're already using PlotMorph in squeak to
do this kind of thing in Squeak and I'd like to move that kind of
functionality to the web.

Thanks,

          --Bruce


_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

RE: Graphing in Seaside

Boris Popov, DeepCove Labs (SNN)
http://www.fusioncharts.com/

(html chart)
  type: (Charts flash: 'Line');
  size: 730 @ 300;
  callback: [:xml | self recentChartOn: xml];
  with: []

recentChartOn: xml
 (xml line2D)
  lineThickness: 2;
  animation: false;
  adjustDiv: true;
  setAdaptiveYMin: true;
  drawAnchors: true;
  caption: 'Last Balances (30 days)';
  yAxisName: 'Balance';
  with: [xml trendLines: [(xml line)
                                        displayValue: 'Holdback';
                                        showOnTop: true;
                                        valueOnRight: true;
                                        thickness: 2;
                                        alpha: 50;
                                        color: 'ff0000';
                                        startValue: ....

-Boris

--
+1.604.689.0322
DeepCove Labs Ltd.
4th floor 595 Howe Street
Vancouver, Canada V6C 2T5
http://tinyurl.com/r7uw4

[hidden email]

CONFIDENTIALITY NOTICE

This email is intended only for the persons named in the message
header. Unless otherwise indicated, it contains information that is
private and confidential. If you have received it in error, please
notify the sender and delete the entire message including any
attachments.

Thank you.

> -----Original Message-----
> From: [hidden email] [mailto:seaside-
> [hidden email]] On Behalf Of Robert Bruce Carleton
> Sent: Tuesday, October 16, 2007 2:18 PM
> To: [hidden email]
> Subject: [Seaside] Graphing in Seaside
>
> I'm considering moving gnuplot generated 2D graphs to Seaside.  Can
> anyone suggest the kinds of Squeak/Seaside tools that could help me
> generate graphs in Seaside?  We're already using PlotMorph in squeak
to

> do this kind of thing in Squeak and I'd like to move that kind of
> functionality to the web.
>
> Thanks,
>
>           --Bruce
>
>
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Graphing in Seaside

Göran Krampe
In reply to this post by Robert Bruce Carleton-4
Hi!

> I'm considering moving gnuplot generated 2D graphs to Seaside.  Can

We are already doing this in the Gjallar project - check with Igor Stasenko.

regards, Göran

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Graphing in Seaside

Brian Murphy-Dye-3
In reply to this post by Boris Popov, DeepCove Labs (SNN)
Boris, the FusionCharts look extremely nice, but couldn't find a  
project that supports it on squeaksource or squeakmap. Is it already  
integrated with Seaside? Brian.


On Oct 16, 2007, at 3:26 PM, Boris Popov wrote:

> http://www.fusioncharts.com/
>
> (html chart)
>   type: (Charts flash: 'Line');
>   size: 730 @ 300;
>   callback: [:xml | self recentChartOn: xml];
>   with: []
>
> recentChartOn: xml
>  (xml line2D)
>   lineThickness: 2;
>   animation: false;
>   adjustDiv: true;
>   setAdaptiveYMin: true;
>   drawAnchors: true;
>   caption: 'Last Balances (30 days)';
>   yAxisName: 'Balance';
>   with: [xml trendLines: [(xml line)
> displayValue: 'Holdback';
> showOnTop: true;
> valueOnRight: true;
> thickness: 2;
> alpha: 50;
> color: 'ff0000';
> startValue: ....
>
> -Boris
>
> --
> +1.604.689.0322
> DeepCove Labs Ltd.
> 4th floor 595 Howe Street
> Vancouver, Canada V6C 2T5
> http://tinyurl.com/r7uw4
>
> [hidden email]
>
> CONFIDENTIALITY NOTICE
>
> This email is intended only for the persons named in the message
> header. Unless otherwise indicated, it contains information that is
> private and confidential. If you have received it in error, please
> notify the sender and delete the entire message including any
> attachments.
>
> Thank you.
>
>> -----Original Message-----
>> From: [hidden email] [mailto:seaside-
>> [hidden email]] On Behalf Of Robert Bruce  
>> Carleton
>> Sent: Tuesday, October 16, 2007 2:18 PM
>> To: [hidden email]
>> Subject: [Seaside] Graphing in Seaside
>>
>> I'm considering moving gnuplot generated 2D graphs to Seaside.  Can
>> anyone suggest the kinds of Squeak/Seaside tools that could help me
>> generate graphs in Seaside?  We're already using PlotMorph in squeak
> to
>> do this kind of thing in Squeak and I'd like to move that kind of
>> functionality to the web.
>>
>> Thanks,
>>
>>           --Bruce
>>
>>
>> _______________________________________________
>> seaside mailing list
>> [hidden email]
>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside