Sign in to follow this  
andrei_b_c

MSCombiDY2D overlap bars

Recommended Posts

Hi there,

 

Does anybory knows if is possible on MSCombiDY2D chart to overlap columns?

So, I need one column to be behind the other 2 columns (see attached for more info).

 

Any help will be appreciated.

 

Thanks in advance,

Andrei

post-30211-0-43302600-1399453360_thumb.png

Share this post


Link to post
Share on other sites

Hi,

 

Render the secondary axis dataset as Column and set plotSpacePercent to a negative value.

 

Ref. Code:

<chart caption='Sales Volume' PYAxisName='Revenue' SYAxisName='Quantity' showvalues='0' numberPrefix='$' plotSpacePercent='-50'>

....

<dataset seriesName='Quantity' parentYAxis='S' renderAs='Column'>

....

</chart>

 

Hope this helps!

Share this post


Link to post
Share on other sites

Hi,

 

Can you please share the XML data for testing purposes?

 

You may refer to the sample XML data below,

<chart caption='Sales Volume' PYAxisName='Revenue' SYAxisName='Quantity' showvalues='0' numberPrefix='$' plotSpacePercent='-50'>
   <categories>
      <category label='Jan' />
      <category label='Feb' />
      <category label='Mar' />
      <category label='Apr' />
      <category label='May' />
     
   </categories>
  <dataset seriesName='Quantity' parentYAxis='S' renderAs='column'>
      <set value='340' />
      <set value='120' />
      <set value='280' />
      <set value='270' />
      <set value='430' />
 
   </dataset>
   <dataset seriesName='Revenue'>
      <set value='170' />
      <set value='610' />
      <set value='142' />
      <set value='135' />
      <set value='214' />
    
   </dataset>
 
   
</chart>

Please find attached screen shot of the chart rendered.

 

Hope this helps!

post-62559-0-22734700-1399971659_thumb.png

Share this post


Link to post
Share on other sites

Hi,

 

Yes this feature works only with the latest version(v3.3.1 SR3).

 

Please upgrade to the latest version.

 

You may download the latest trial version from the link below,

www.fusioncharts.com/download/

 

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