andrei_b_c Report post Posted May 7, 2014 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 Share this post Link to post Share on other sites
Bindhu Report post Posted May 9, 2014 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
andrei_b_c Report post Posted May 12, 2014 Thanks but unfortunately it didn't work. It adds 3 columns one beside each other for each X axis value. Share this post Link to post Share on other sites
Bindhu Report post Posted May 13, 2014 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! Share this post Link to post Share on other sites
andrei_b_c Report post Posted May 14, 2014 Hi, It may be the problem in the FusionCharts version - I'm using v 3.2.2. Andrei Share this post Link to post Share on other sites
Bindhu Report post Posted May 15, 2014 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