sarath_varma Report post Posted December 5, 2012 Hi, We are using 3D Column fusion chart for one of our requirements. Is it possible to hide/remove the hard surface (highlighted in red) in the attached screen as this is causing confusion in some scenarios. Appreciate your help. Thanks, Sarath Share this post Link to post Share on other sites
Swarnam Report post Posted December 5, 2012 Hi Sarath, To remove the canvas base from Column 3D chart try setting "showCanvasBase" attribute to zero in the chart element. Hope this helps. Share this post Link to post Share on other sites
sarath_varma Report post Posted December 5, 2012 Hi Swarnam, Thanks a lot. Your suggestion helped. Regards, Sarath Share this post Link to post Share on other sites
sanjaypatel62 Report post Posted June 7, 2013 Sorry to ask here. Actually I am not getting where to post new topic. so I am just asking through this topic chain. Topic: How to replace percentage with some number in bar charts ( It doesn't mean to just remove %sign i mean e.g. 55.75% to 12450) Hi, Actually I have a 2D horizontal stack chart and it is based on percentage so in each stack it is showing percentage but my requirement is to show some number in place of percentage. I have seen in fusion chart documents and it is mentioned to use displayValue attribute to provide some other value to display but it doesn't work as I am specifying tool-text. Below URL is giving this information. http://docs.fusioncharts.com/charts/contents/AttDesc/DataValues.html But I don't know how to specify tool-text. Please help!!! Thanks, Sanjay Share this post Link to post Share on other sites
Haritha Report post Posted June 25, 2013 Hi Sanjay, Welcome to FusionCharts Forum You can create a new Forum post under the desired subtopic by clicking on "Start New Topic" button. For Eg. If you want to start a new topic under General usage http://forum.fusioncharts.com/forum/23-general-usage/ , you may do so by clicking on Start New Topic button present on the right hand side of the page. The attribute "displayValue" allows you to specify custom values instead of the numeric data values for each data item and the attribute "toolText" is used to display a tool tip when the mouse is hovered over the data item. Eg. <set value='55.75' displayValue='12450' toolText='Jan-12450' > Hope this helps. Share this post Link to post Share on other sites
Santhiya Report post Posted October 31, 2013 (edited) How to show the overlapped datapoints in fusion chart Here is my code in this code the meadianvalue and tagetValue are same so in graph i am able to see only one line which represents median xmlData.Append("<graph numdivlines='10' caption='" + metricName + "' subcaption='" + mystring + "' lineThickness='3' numVDivLines='10' showValues='0' decimalPrecision='1' bgSWF='images/blank.jpg' xAxisName='Month' anchorRadius='3.5' showAlternateVGridColor='0' alternateVGridColor='CCE6FF' anchorAlpha='100' animation='1' limitsDecimalPrecision='0' lineAlpha='85' baseFont='Tahoma' baseFontSize='10' legendAllowDrag='1' canvasBgAlpha='0' divLineDecimalPrecision='0'>"); medianValue.Append("<dataset seriesName='" + parameterName + "' color='8BBA00' anchorBorderColor='8BBA00' anchorBgColor='8BBA00'>"); baseValue.Append("<dataset seriesName='BaseLine' color='aa56ff' anchorBorderColor='aa56ff' anchorBgColor='aa56ff'>"); targetValue.Append("<dataset seriesName='Target' color='ffaad4' anchorBorderColor='ffaad4' anchorBgColor='ffaad4'>"); have set stagger also ..but i need to show both the lines which hv same values is it possible to show like tat Edited October 31, 2013 by Santhiya Share this post Link to post Share on other sites
Sanjukta Report post Posted November 1, 2013 How to show the overlapped datapoints in fusion chart Here is my code in this code the meadianvalue and tagetValue are same so in graph i am able to see only one line which represents median xmlData.Append("<graph numdivlines='10' caption='" + metricName + "' subcaption='" + mystring + "' lineThickness='3' numVDivLines='10' showValues='0' decimalPrecision='1' bgSWF='images/blank.jpg' xAxisName='Month' anchorRadius='3.5' showAlternateVGridColor='0' alternateVGridColor='CCE6FF' anchorAlpha='100' animation='1' limitsDecimalPrecision='0' lineAlpha='85' baseFont='Tahoma' baseFontSize='10' legendAllowDrag='1' canvasBgAlpha='0' divLineDecimalPrecision='0'>"); medianValue.Append("<dataset seriesName='" + parameterName + "' color='8BBA00' anchorBorderColor='8BBA00' anchorBgColor='8BBA00'>"); baseValue.Append("<dataset seriesName='BaseLine' color='aa56ff' anchorBorderColor='aa56ff' anchorBgColor='aa56ff'>"); targetValue.Append("<dataset seriesName='Target' color='ffaad4' anchorBorderColor='ffaad4' anchorBgColor='ffaad4'>"); have set stagger also ..but i need to show both the lines which hv same values is it possible to show like tat Hi, Please note that in case 2 of your values are exactly same, the datapoints would automatically overlap. The same values of the last <dataset> would be only visible and the remaining would be placed behind. In case you are using a line chart and wish to display anchors for both the dataset, you can increase the "anchorRadius" of the 1st <dataset> to a larger value so that both the anchors for the overlapping points are visible. Hope this helps. Share this post Link to post Share on other sites