Sign in to follow this  
Juri

Fun With Msstackedcolumn2D

Recommended Posts

Hi there,

 

New to the forum but been a FusionCharts user for a while in my place of work.

 

I'm trying to use a Multi-series Stacked Column chart. The data is basically two sets of comparisons against each other - I'll attach a screenshot.

 

The main problem I'm having is those numbers at the top. Yes I know each bar is 100%. I don't want you there numbers! I've tried plopping showValues tags pretty much everywhere and I'm starting to wonder - can these values actually be got rid of? As the only example of this type of chart I've seen has these included. I'll copy paste the rough XML I'm using: -

 

<chart caption='Data Tested' numbersuffix='%25' showLegend='1' legendPosition='BOTTOM' yAxisName='Percent' xAxisName='Months' showBorder='0' useRoundEdges='1' bgColor='FFFFFF' slantLabels='1' rotateLabels='1'  yAxisMinValue='0' yAxisMaxValue='100'  >

<categories>
<category label='Jan' />
<category label='Feb' />
<category label='Mar' />
<category label='Apr' />
<category label='May' />
<category label='Jun' />
<category label='Jul' />
<category label='Aug' />
<category label='Sep' />
<category label='Oct' />
<category label='Nov' />
<category label='Dec' />
</categories>
<dataset>

<dataset color='550000' showValues='0' seriesName='Percent Invalid Next Service Dates' showValues='1' >
insert data here
</dataset>
<dataset color='77ffcc' showValues='0' seriesName='Percent Valid Next Service Dates' showValues='1'>
insert data here
</dataset>
</dataset>
<dataset>
<dataset color='FF5555' showValues='0' seriesName='Percent Invalid Next MOT Dates' showValues='1'>
insert data here
</dataset>
<dataset color='004e04' showValues='0' seriesName='Percent Valid Next MOT Dates' showValues='1'>
insert data here
</dataset>
</dataset>
</chart>

 

Any help much appreciated, I'll have to have a look around see if theres anything I can help with!

 

 

 

post-27593-0-49154500-1330443844_thumb.jpg

Edited by Juri

Share this post


Link to post
Share on other sites

Juri,

I found this in another post.

Try adding showSum='0' to the chart element.

I also noticed you have showValue in your dataset twice. I suspect you were just trying to figure out which worked.

>>dataset color='550000' showValues='0' seriesName='Percent Invalid Next Service Dates' showValues='1'

 

 

Hi there,

 

New to the forum but been a FusionCharts user for a while in my place of work.

 

I'm trying to use a Multi-series Stacked Column chart. The data is basically two sets of comparisons against each other - I'll attach a screenshot.

 

The main problem I'm having is those numbers at the top. Yes I know each bar is 100%. I don't want you there numbers! I've tried plopping showValues tags pretty much everywhere and I'm starting to wonder - can these values actually be got rid of? As the only example of this type of chart I've seen has these included. I'll copy paste the rough XML I'm using: -

 

<chart caption='Data Tested' numbersuffix='%25' showLegend='1' legendPosition='BOTTOM' yAxisName='Percent' xAxisName='Months' showBorder='0' useRoundEdges='1' bgColor='FFFFFF' slantLabels='1' rotateLabels='1'  yAxisMinValue='0' yAxisMaxValue='100'  >

<categories>
<category label='Jan' />
<category label='Feb' />
<category label='Mar' />
<category label='Apr' />
<category label='May' />
<category label='Jun' />
<category label='Jul' />
<category label='Aug' />
<category label='Sep' />
<category label='Oct' />
<category label='Nov' />
<category label='Dec' />
</categories>
<dataset>

<dataset color='550000' showValues='0' seriesName='Percent Invalid Next Service Dates' showValues='1' >
insert data here
</dataset>
<dataset color='77ffcc' showValues='0' seriesName='Percent Valid Next Service Dates' showValues='1'>
insert data here
</dataset>
</dataset>
<dataset>
<dataset color='FF5555' showValues='0' seriesName='Percent Invalid Next MOT Dates' showValues='1'>
insert data here
</dataset>
<dataset color='004e04' showValues='0' seriesName='Percent Valid Next MOT Dates' showValues='1'>
insert data here
</dataset>
</dataset>
</chart>

 

Any help much appreciated, I'll have to have a look around see if theres anything I can help with!

 

 

 

post-27593-0-49154500-1330443844_thumb.jpg

Share this post


Link to post
Share on other sites
Guest Sumedh

Hi,

 

Please try to use 'showSum=0' attribute under the chart element as mentioned in the above post. Thanks Hyder smile.gif.

 

Also note that, you would need to use proper XML chart attributes to get proper effect on the chart. As, the attributes should be not repeatative.(like ex: showValues='0' seriesName='Percent Invalid Next Service Dates' showValues='1' >). 'showValues attribute' is used multiple times in your code.

 

Find attached screenshot for your reference.

 

Hope this helps. smile.gif

post-24802-0-46063500-1330491774_thumb.jpg

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