I'm new to Perl and want to plot a chart using Excel. I found some code, but when I tried to execute it, it only shows "Press any key to continue..." on the command prompt. The code is executable by others. I also tried to download the Excel writer pack and placed them in the lib folder, but it isn't executing at all. The code is found definitely executable.
#!/usr/bin/perl
use strict;
use warnings;
use Excel::Writer::XLSX;
my $workbook = Excel::Writer::XLSX->new('chart.xlsx');
my $worksheet = $workbook->add_worksheet();
# Add the worksheet data the chart refers to.
my $data = [
['Category', 2, 3, 4, 5, 6, 7],
['Value', 1, 4, 5, 2, 1, 5],
];
$worksheet->write('A1', $data);
# Add a worksheet chart.
my $chart = $workbook->add_chart(type => 'column');
# Configure the chart.
$chart->add_series(
categories => '=Sheet1!$A$2:$A$7',
values => '=Sheet1!$B$2:$B$7',
);
__END__
Does anyone have any idea?