barado43 Report post Posted April 23, 2009 Hi. I just wondering if there is any way adjust chart vertical value position in column 2d chart. because if some dataplot value is so small value is printed over the dataplot label so that hardly readable. so I'd like print value into top of outside of dataplot when it's value is small. and I also looked at column 2d chart API <set> elements and can't find any option. is there any options that I missed or is there any other solution to solve this problem? thanks Share this post Link to post Share on other sites
FusionCharts Support Report post Posted April 24, 2009 Hi, Please use placeValuesInside='0' to make the values outside. This wont be applicable when the columns' roof come very near to the canvas top margin. Share this post Link to post Share on other sites
barado43 Report post Posted April 26, 2009 (edited) thanks for replay but in this example. var str = '<chart palette="2" forceDecimals="1" decimals="1" useRoundEdges="1" baseFont="arial" yAxisMinValue="0" yAxisMaxValue="100" numDivLines="1" chartBottomMargin="1" bgColor="#ffffff" placeValuesInside="0" baseFontSize="11" borderColor="#ffffff"><set label="aaaaa" value="40.6" color="#88BF60" placeValuesInside="0" /><set label="bbbbb" value="0" color="#88BF60" placeValuesInside="0" /><set label="ccccc" value="10" color="#88BF60" placeValuesInside="0" /></chart>'; var chart1 = new FusionCharts("./Column2D.swf","chart1Id_mag","400","55","0","0"); chart1.setDataXML(str); chart1.render('chart6div'); there seems to be enough space to print value between topmagin and top of columns but still problem occur which is value and label are overlapped. I have to set chart height less than 55 pixel to show all chart in one web page for a reason. is there any way to solve this problem? Regards, Bae. Edited April 26, 2009 by Guest Share this post Link to post Share on other sites
FusionCharts Support Report post Posted April 27, 2009 Hi, Could you please send us an image? Share this post Link to post Share on other sites
barado43 Report post Posted April 28, 2009 Hi. I sent email with image and short memo. could you check email and reply either by email or forum? Thanks. Regards. Bae. Share this post Link to post Share on other sites
FusionCharts Support Report post Posted April 30, 2009 Hi, Please try this XML: <chart labelPadding="-2" palette="2" forceDecimals="1" decimals="1" useRoundEdges="1" baseFont="arial" baseFontSize="10" yAxisMinValue="0" yAxisMaxValue="100" numDivLines="1" chartLeftMargin="0" chartRightMargin="5" chartTopMargin="5" chartBottomMargin="1" bgColor="ffffff" placeValuesInside="0" baseFontSize="11" borderColor="ffffff"><set label="aaaaa" value="40.6" color="88BF60" placeValuesInside="0" /><set label="bbbbb" value="0" color="88BF60" /><set label="ccccc" value="10" color="88BF60" placeValuesInside="0" /></chart> Share this post Link to post Share on other sites
FusionCharts Support Report post Posted April 30, 2009 If you are still facing problem you can use valuePadding='0'. The problem was that there is a default padding between value text and the end of column. Share this post Link to post Share on other sites
barado43 Report post Posted April 30, 2009 Thank you. That's chart that I expect to see and thank you for kind explanation. Regards, Bae Share this post Link to post Share on other sites