~ubuntu-branches/ubuntu/karmic/libjifty-plugin-chart-perl/karmic

« back to all changes in this revision

Viewing changes to t/TestApp-Plugin-Chart/lib/TestApp/Plugin/Chart/View.pm

  • Committer: Bazaar Package Importer
  • Author(s): AGOSTINI Yves
  • Date: 2009-06-11 12:23:49 UTC
  • Revision ID: james.westby@ubuntu.com-20090611122349-s1ss1jf2bw9mtvjn
Tags: upstream-0.90000
ImportĀ upstreamĀ versionĀ 0.90000

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use strict;
 
2
use warnings;
 
3
 
 
4
package TestApp::Plugin::Chart::View;
 
5
use Jifty::View::Declare -base;
 
6
 
 
7
template '/graphit' => page {
 
8
    Jifty->web->chart(
 
9
        type   => 'Pie',
 
10
        width  => '100%',
 
11
        height => 500,
 
12
        data   => sub {
 
13
            [
 
14
                [ 2004, 2005, 2006, 2007 ],
 
15
                [ 26, 37, 12, 42 ]
 
16
            ];
 
17
        },
 
18
    );
 
19
};
 
20
 
 
21
1;