github
Advanced Search
  • Home
  • Pricing and Signup
  • Explore GitHub
  • Blog
  • Login

gphat / chart-clicker

  • Admin
  • Watch Unwatch
  • Fork
  • Your Fork
  • Pull Request
  • Download Source
    • 18
    • 3
  • Source
  • Commits
  • Network (3)
  • Issues (0)
  • Downloads (19)
  • Wiki (1)
  • Graphs
  • Tree: 9671b82

click here to add a description

click here to add a homepage

  • Branches (2)
    • master
    • sg-gp
  • Tags (19)
    • 2.41
    • 2.40
    • 2.39
    • 2.38
    • 2.37
    • 2.35
    • 2.34
    • 2.33
    • 2.32
    • 2.31
    • 2.30
    • 2.29
    • 2.27
    • 2.26
    • 2.24
    • 2.22
    • 2.21
    • 2.20
    • 2.19
Sending Request…
Enable Donations

Pledgie Donations

Once activated, we'll place the following badge in your repository's detail box:
Pledgie_example
This service is courtesy of Pledgie.

Extensible, Beautiful Charts for Perl — Read more

  cancel

http://www.onemogin.com/clicker/

  cancel
  • Private
  • Read-Only
  • HTTP Read-Only

This URL has Read+Write access

- Legend 
Cory Watson (author)
Sun Jun 28 00:24:57 -0700 2009
commit  9671b82f70613d2de4ca994add2c2a46410a244a
tree    dd907b42cdcee5b4a05c06e2ecaae8478a481fa6
parent  344b7b24823d1376927918f144e03a4f80425e43
chart-clicker / lib / Chart / Clicker / Tutorial.pod lib/Chart/Clicker/Tutorial.pod
100644 173 lines (127 sloc) 4.46 kb
edit raw blame history

  • NAME
  • DESCRIPTION
  • DISCLAIMER
  • EXAMPLES
    • Simple chart from a single data source
    • Simple chart from multiple data sources
    • Simple chart with multiple data sources and custom colors
    • Example 4 : Simple chart with a different render type
  • AUTHOR
  • CONTRIBUTORS
  • LICENSE

NAME

Chart::Clicker::Tutorial


DESCRIPTION

This document aims to provide a tutorial for using Chart::Clicker.


DISCLAIMER

This is a work in progress. If you find errors or would like to make contributions, drop me a line!


EXAMPLES

Simple chart from a single data source

        # grab the needed modules
        use Chart::Clicker;
        use Chart::Clicker::Data::Series;
        use Chart::Clicker::Data::DataSet;
        # build the chart
        my $chart = Chart::Clicker->new;
        # build the series (static here, will usually be supplied arrayrefs from elsewhere)
        my $series = Chart::Clicker::Data::Series->new(
                keys    =>      [ 1,2,3,4,5  ],
                values  =>      [ 52,74,52,82,14 ],
        );
        # build the dataset
        my $dataset = Chart::Clicker::Data::DataSet->new(
                series  =>      [ $series ],
        );
        # add the dataset to the chart
        $chart->add_to_datasets($dataset);
        # draw and write the chart to a file
        $chart->draw;
        $chart->write('chart.png');

Simple chart from multiple data sources

        use Chart::Clicker;
        use Chart::Clicker::Data::Series;
        use Chart::Clicker::Data::DataSet;
        my $chart = Chart::Clicker->new;
        # start an array that will hold the series data
    my $series1 = Chart::Clicker::Data::Series->new(
                keys    =>      [ 1,2,3,4,5 ],
                values  =>      [ 52,74,52,82,14 ]
        );
    my $series2 = Chart::Clicker::Data::Series->new(
                keys    =>      [ 1,2,3,4,5 ],
                values  =>      [ 34,67,89,45,67 ]
        );
        # add the array of series data to the dataset
        my $dataset = Chart::Clicker::Data::DataSet->new(
                series  => [ $series1, $series2 ]
        );
        $chart->add_to_datasets($dataset);
        $chart->draw;
        $chart->write('chart.png');

Simple chart with multiple data sources and custom colors

        use Chart::Clicker;
        use Chart::Clicker::Data::Series;
        use Chart::Clicker::Data::DataSet;
        # some new modules, these are only needed if you want to monkey with color changing
        use Graphics::Color::RGB;
        use Chart::Clicker::Drawing::ColorAllocator;
        # build the color allocator
        my $ca = Chart::Clicker::Drawing::ColorAllocator->new;
        # this hash is simply here to make things readable and cleaner, you can always call G::C::R inline
        my $red => Graphics::Color::RGB->new({
            red =>.75, green =>0, blue =>0, alpha =>.8
        });
        my $green => Graphics::Color::RGB->new({
            red => 0,green => .75, blue=> 0, alpha=>.8
        });
        my $blue => Graphics::Color::RGB->new({
            red => 0, green => 0, blue => .75, alpha => .8
        }),
        my $chart = Chart::Clicker->new;
    # Create an empty dataset that we can add to
        my $dataset = Chart::Clicker::Data::DataSet->new;
        $dataset->add_to_series(Chart::Clicker::Data::Series->new(
            keys    => [ 1,2,3,4,5 ],
            values  => [ 52,74,52,82,14 ]
    ));
    # add a color - note that the order of colors and the order of the
        # series must match, the first series will use the first color and so on
        # see contexts and axes for alternate ways of doing this
        $ca->add_to_colors($blue);
        
        $dataset->add_to_series(Chart::Clicker::Data::Series->new(
                keys    =>      [ 1,2,3,4,5 ],
                values  =>      [ 34,67,89,45,67 ],
        ));
        # add a second color
        $ca->add_to_colors($colorset{red});
        
        $dataset->add_to_series(Chart::Clicker::Data::Series->new(
                keys    =>      [ 1,2,3,4,5 ],
                values  =>      [ 11,22,33,44,55 ],
        ));
        # add a third color
        $ca->add_to_colors($colorset{green});
        $chart->add_to_datasets($dataset);
        # assign the color allocator to the chart
        $chart->color_allocator($ca);
        $chart->draw;
        $chart->write('chart.png');

Example 4 : Simple chart with a different render type

    use Chart::Clicker;
    use Chart::Clicker::Data::Series;
    use Chart::Clicker::Data::DataSet;
    # add in the module of the renerer(s) you want to use
    use Chart::Clicker::Renderer::Area;
    my $chart=Chart::Clicker->new;
    my $series=Chart::Clicker::Data::Series->new(
        keys    => [ 1,2,3,4,5 ],
        values  => [ 52,74,52,82,14 ]
    );
    my $dataset = Chart::Clicker::Data::DataSet->new(
        series  => [ $series ]
    );
    $chart->add_to_datasets($dataset);
        # build the renderer to use
        my $renderer = Chart::Clicker::Renderer::Area->new(
                opacity => .75,
        );
        # assign the renderer to the default context
        $chart->get_context('default')->renderer($renderer);
    $chart->draw;
    $chart->write('chart.png');


AUTHOR

Cory G Watson <gphat@cpan.org>


CONTRIBUTORS

Steve Bradford


LICENSE

You can redistribute and/or modify this code under the same terms as Perl itself.

Blog | Support | Training | Contact | API | Status | Twitter | Help | Security
© 2010 GitHub Inc. All rights reserved. | Terms of Service | Privacy Policy
Powered by the Dedicated Servers and
Cloud Computing of Rackspace Hosting®
Dedicated Server