#!C:/Perl/bin/perl.exe use warnings; use strict; use open_flash_chart; use CGI::Carp qw(fatalsToBrowser); use CGI qw/:standard/; use Chart::OFC; print header, start_html( -title => "Open Flash Demo" ); my $data = Chart::OFC::Dataset->new( values => [ 1..10 ] ); my $pie = Chart::OFC::Pie->new( title => 'Pie Test', dataset => $data, labels => [ 'a'..'j' ] ); print ''; print '
' ."\n"; print ''; print end_html;