Compare commits
No commits in common. "0d47dee3cd114c63b24966f9a0acf00a9c220aa3" and "7fc7cb46a99249e6f8fc4af50bd6c4396e2d6bdc" have entirely different histories.
0d47dee3cd
...
7fc7cb46a9
3
tsplot
3
tsplot
|
@ -57,7 +57,6 @@ my $stacked = 0;
|
|||
my @yrange;
|
||||
my $keeptempfiles;
|
||||
my $finalresolution;
|
||||
my $legend_position = 'top right';
|
||||
|
||||
GetOptions('output_format|output-format=s' => \$output_format,
|
||||
'log_y|log-y' => \$log_y,
|
||||
|
@ -68,7 +67,6 @@ GetOptions('output_format|output-format=s' => \$output_format,
|
|||
'yrange=s{2}' => \@yrange,
|
||||
'keeptempfiles' => \$keeptempfiles,
|
||||
'finalresolution=i' => \$finalresolution,
|
||||
'legend-position=s' => \$legend_position,
|
||||
)
|
||||
or pod2usage(verbose => 0);
|
||||
|
||||
|
@ -78,7 +76,6 @@ binmode STDOUT, ':raw';
|
|||
|
||||
my $ts = TimeSeries->new(output_format => $output_format);
|
||||
$ts->{keeptempfiles} = 1 if $keeptempfiles;
|
||||
$ts->legend_position($legend_position);
|
||||
while (<>) {
|
||||
chomp;
|
||||
my @legend = split($sep);
|
||||
|
|
Loading…
Reference in New Issue