stung Report post Posted May 19, 2010 We have encountered an overlap issues in the data values of each stack of a stacked bar 2D chart. The problem was some of the stack size too small, so the data values shown was overlapped over several stacks. Please advise how to solve this problem. Thanks in advance. Share this post Link to post Share on other sites
Sanjukta Report post Posted May 19, 2010 (edited) Hi, There are two possible ways to solve the problem of the oevrlapping of the data values inside the chart, as of now. The first one is to increase the width and height of the chart in the html page. Ref.- var chart = new FusionCharts("StackedBar2D.swf", "ChartId", "700", "500", "0", "0"); The second one is to decrease the font size of the data values, applying "styles" in the XML. Ref.- <styles> <definition> <style name='MyFirstFontStyle' type='font' font='Verdana' size='8' color='FF0000' /> </definition> <application> <apply toObject='DATAVALUES' styles='MyFirstFontStyle' /> </application> </styles> Hope this helps. Edited May 19, 2010 by Guest Share this post Link to post Share on other sites
stung Report post Posted May 19, 2010 Thanks for your advise. We have tried it but still cannot solved as some of stack size are really small. Is there a way to show the data values in two lines or the font is vertical shown? Thank you. Share this post Link to post Share on other sites
Sanjukta Report post Posted May 19, 2010 Hi, We apologize for the inconvenience caused. I am afraid, there are no other ways to resolve this issue, as of now. Share this post Link to post Share on other sites