Sign in to follow this  
dygfloyd

Spacing Bars

Recommended Posts

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!

 

 

post-62587-0-95426900-1395963312_thumb.gif

Share this post


Link to post
Share on other sites

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this