in reply to Re^5: 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
Use undef in place of zero in your data
pojmy @data = ( ['Mon','-','Tues','-','Wed','-'], [10,undef,40,undef,80,undef], [30,undef,50,undef,90,undef], [undef,100,undef,60,undef,30], [undef,60,undef,70,undef,50], );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: GD::Graph creating a clustered bar chart while some dataset are cumulative
by huzefa52 (Novice) on Sep 11, 2013 at 09:29 UTC | |
by poj (Abbot) on Sep 11, 2013 at 10:01 UTC | |
by huzefa52 (Novice) on Sep 11, 2013 at 11:45 UTC |