dygfloyd Report post Posted March 27, 2014 Is there a way to space individual bars within a chart? I'm trying to reproduce the chart below. I've tried "plotSpacePercent" which spaces out the groups but not the individual bars within the groups. If possible, I'd love to find a way to extend the white bars to the top as well. Thanks for your help! Share this post Link to post Share on other sites
Bindhu Report post Posted March 28, 2014 Hi, We do not support this feature explicitly. As a work around, you may use empty datasets between actual datasets to provide spacing. Ref. Code: <chart caption='Business Results' xAxisName='Month' yAxisName='Revenue' showValues='1' numberPrefix='$' plotSpacePercent='50'> <categories> <category label='Jan' /> <category label='Feb' /> <category label='Mar' /> </categories> <dataset seriesName='2005'> <set value='27400' /> <set value='29800'/> <set value='25800' /> </dataset> <dataset seriesName=''> <set value='' /> <set value=''/> <set value='' /> </dataset> <dataset seriesName='2006'> <set value='21400' /> <set value='39800'/> <set value='45800' /> </dataset> <dataset seriesName=''> <set value='' /> <set value=''/> <set value='' /> </dataset> <dataset seriesName='2007'> <set value='10000'/> <set value='11500'/> <set value='12500'/> </dataset> </chart> Hope this helps! Share this post Link to post Share on other sites
dygfloyd Report post Posted March 28, 2014 I'm dealing with dynamically generated data so that might be a little tricky but I'll give it a shot. Thanks for the suggestion! Share this post Link to post Share on other sites
Bindhu Report post Posted April 1, 2014 Hi, Sure, give it a try. Please do let us know how it goes. Happy FusionCharting Share this post Link to post Share on other sites