Google charts now has a wizard

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Google charts now has a wizard
# 1  
Old 07-31-2010
Google charts now has a wizard

Here is a link to google charts, but wizard driven, which makes for much easier prototyping:
Chart Wizard - Google Chart Tools / Image Charts (aka Chart API) - Google Code

It is still in Beta, so near-future changes are likely. It gives the opportunity to experiment with your data and the way the information should be displayed, before turning to something server side like gnuplot or jpgraph, if so required.
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. What is on Your Mind?

Org Charts

Funny org charts for Apple, Google, Microsoft, Oracle, Amazon and Facebook. https://www.unix.com/picture.php?albumid=112&pictureid=613 (0 Replies)
Discussion started by: Neo
0 Replies

2. Red Hat

Wizard error

I am getting the below error while installing a bin file on linux system. ERROR: .The wizard cannot continue because of the following error: could not load wizard specified in /wizard.inf (104) (0 Replies)
Discussion started by: jaituteja
0 Replies

3. Web Development

Helpful Tip: Forcing Google to www.google.com

Helpful Tip! Sometimes when we are in another country, Google redirects our request for www.google.com to: www.google.co.in or to: www.google.co.th If you want to force Google to go to the US site, use: www.google.com/webhp (1 Reply)
Discussion started by: Neo
1 Replies

4. SuSE

Suse DNS wizard

Hi everybody, I am doing some test with the Yast DNS wizard in Suse 10 and everything seems to be working fine, it's a great tool, very easy to get a bind 9 dns up and running in 15 minutes. Initially I have run the normal wizard and created just a master zone in order to get a DNS server... (0 Replies)
Discussion started by: sspirito
0 Replies
Login or Register to Ask a Question
Jifty::Plugin::Chart(3pm)				User Contributed Perl Documentation				 Jifty::Plugin::Chart(3pm)

NAME
Jifty::Plugin::Chart - A charting API for Jifty SYNOPSIS
In your config.yml: Plugins: - Chart: {} In your Mason templates: <% Jifty->web->chart( type => 'Bar', width => 400, height => 300, data => [ [ '2004', '2005', '2006', '2007' ], # labels [ 14, 15, 17, 22 ], # first data set [ 22, 25, 20, 21 ], # second data set ], ) %> DESCRIPTION
CAUTION: This plugin is experimental. The API will change. This plugin provides a charting API that can be used by Jifty applications to build data visualizations without regard to the underlying rendering mechanism. As of this writing, the API is a barely veiled interface over Chart. However, I intend to expand the interface to apply to something like Maani's XML/SWF Charts or Imprise Javascript charts or even something like OpenLaszlo (or something Open Source and Perl if I can find or build such a thing in time). INTERFACE
By adding this method to the plugin configuration for your Jifty application, you will cause Jifty::Web to inherit a new method, "chart", which is the cornerstone of this API. This method is described in Jifty::Plugin::Chart::Web and an example is shown in the "SYNOPSIS" above. CONFIGURATION
Here is an example configuration for config.yml: Plugins: - Chart: DefaultRenderer: PlotKit PreloadRenderers: - XMLSWF - SimpleBars - App::Renderer::Custom The available options are: DefaultRenderer This is the name of the class to use as the default renderer. Jifty::Plugin::Chart::Renderer::Chart is the current default, but that could change in the future. It's recommended that you set this to your preference. PreloadRenderers This is a list of other render classes to load during initialization. If they are not loaded during initialization some renderers may not work correctly the first time they are run because they are not able to inform Jifty of the CSS or JS files they need before that part of the page is already rendered. If you use the "renderer" option of "chart" in Jifty::Plugin::Chart::Web, then you should make sure any value you use is set here in the configuration to make sure it works properly. METHODS
init Adds the "chart" in Jifty::Plugin::Chart::Web method to Jifty::Web. init_renderer my $renderer = $chart_plugin->init_renderer($renderer_class) This is a helper method that is used by the API to initialize the renderer class. This is handled automatically so you probably shouldn't use this. SEE ALSO
Jifty::Plugin, Jifty::Web, Jifty::Plugin::Chart::Renderer, Jifty::Plugin::Chart::Renderer::Chart, Jifty::Plugin::Chart::View AUTHOR
Andrew Sterling Hanenkamp "<andrew.hanenkamp@boomer.com>" COPYRIGHT AND LICENSE
Copyright 2007 Boomer Consulting, Inc. This is free software and may be modified and redistributed under the same terms as Perl itself. perl v5.12.4 2009-07-15 Jifty::Plugin::Chart(3pm)