in reply to Re: teach me Chart::Pie
in thread teach me Chart::Pie
use Chart::Pie; my $chart = Chart::Pie->new(640,480); $chart->set( 'title' => 'A Day in the Life', 'x_label' => 'X Axis Label', 'y_label' => 'Y Axis Label' , 'label_values' => 'percent', # tell me percentage of # each day spent on # each activity 'x_ticks' => 'none', 'y_ticks' => 'none', ); $chart->add_dataset( qw(Junk_X_Tick_Label) ); $chart->add_dataset( qw(8) ); $chart->add_dataset( qw(8) ); $chart->add_dataset( qw(2) ); $chart->add_dataset( qw(6) ); $chart->set('legend_labels' => [ 'Sleep', 'Work', 'Eat', 'Watch TV' + ]); $chart->gif('pie.gif');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: teach me Chart::Pie
by samizdat (Vicar) on Feb 18, 2005 at 17:09 UTC | |
|
Re^3: teach me Chart::Pie
by Mr. Muskrat (Canon) on Feb 18, 2005 at 17:15 UTC |