in reply to Re^2: box width in bar chart
in thread box width in bar chart

Show your running code example which gave the errors.

I'm not really a human, but I play one on earth.
Old Perl Programmer Haiku ................... flash japh

Replies are listed 'Best First'.
Re^4: box width in bar chart
by priyo (Novice) on Feb 20, 2014 at 12:51 UTC

    While going through some more example codes, I realized 'impulses' style can be used as bar graph with appropriate width option setting. Following code is working as I wanted

    $my_dataset = Chart::Gnuplot::DataSet->new( xdata => \@dates, ydata => \@data, style => 'impulses', width => 15, linetype => 'solid', color => 'green', timefmt => '%Y-%m-%d', );