[email protected] Report post Posted June 12, 2014 Hi, Can anyone please help me to show value on the middle of bar2d by fusioncharts. Thanks,Vishnu Share this post Link to post Share on other sites
Swarnam Report post Posted June 16, 2014 Hi Vishnu, Single Series Bar 2D does not support to display the value in the centre of the bar. Try using "StackedBar2D" chart and display a single dataset to reproduce a similar effect. <chart caption='Company Revenue' xAxisName='Month' yAxisName='Revenue' showValues='0' numberPrefix='$' showLegend='0'> <categories> <category label='Jan' /> <category label='Feb' /> <category label='Mar' /> <category label='Apr' /> </categories> <dataset seriesName='Product A'> <set value='27400' color='AAEEBB'/> <set value='29800' color='FFEEBB'/> <set value='25800' color='DDAACC' /> <set value='26800' color='FFAABB'/> </dataset> </chart> Share this post Link to post Share on other sites