in reply to Re^7: GD::Graph creating a clustered bar chart while some dataset are cumulative
in thread GD::Graph creating a clustered bar chart while some dataset are cumulative

You need 9 data points, try
my @data = ( ['Mar1','Mar2','Mar3','Apr1','Apr2','Apr3','May1','May2','May3], [1,0,0,2,0,0,4,0,0], [2,0,0,1,0,0,5,0,0], [0,3,0,0,4,0,0,6,0], [0,4,0,0,3,0,0,7,0], [0,0,5,0,0,6,0,0,1], [0,0,6,0,0,5,0,0,2], );
poj
  • Comment on Re^8: GD::Graph creating a clustered bar chart while some dataset are cumulative
  • Download Code

Replies are listed 'Best First'.
Re^9: GD::Graph creating a clustered bar chart while some dataset are cumulative
by huzefa52 (Novice) on Sep 11, 2013 at 11:45 UTC
    Thanks a lot...