in reply to Re^2: Chart::Gnuplot dataset under Windows XP empty GIF
in thread Chart::Gnuplot dataset under Windows XP empty GIF

There seems a bug in the block "Data in points" in the subroutine _thaw. Please try to replace the lines
my $dirTmp = tempdir(CLEANUP => 1, DIR => '/tmp'); my $fileTmp = "$dirTmp/data";
and by the following line
my $fileTmp = $self->{_data};

Replies are listed 'Best First'.
Re^4: Chart::Gnuplot dataset under Windows XP empty GIF
by anthonyt (Novice) on Feb 15, 2009 at 16:54 UTC
    Getting closer I think.

    Now the data temp directory is the same as the script directory was, but they both do not seem to exist at the same time. I'll try to find out why the data file is gone when the script file is ready to be used.

    Also, another bug: $baseTmp construction varies with $ENV(TMP) having priority over $ENV(TEMP) and vice versa elsewhere.