Juri Report post Posted February 28, 2012 (edited) 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! Edited February 28, 2012 by Juri Share this post Link to post Share on other sites
hyder Report post Posted February 28, 2012 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! Share this post Link to post Share on other sites
Guest Sumedh Report post Posted February 29, 2012 Hi, Please try to use 'showSum=0' attribute under the chart element as mentioned in the above post. Thanks Hyder . 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. Share this post Link to post Share on other sites
Juri Report post Posted February 29, 2012 Thanks very much for that guys, showSum worked instantly And oops to the extra showValues hehehe Share this post Link to post Share on other sites
Guest Sumedh Report post Posted February 29, 2012 Happy FusionCharting ! Share this post Link to post Share on other sites