kjgraham Report post Posted August 28, 2008 I've looked through the documentation and trying all the possible properties, I can't figure out how to remove the x-axis numbers on a chart I've made. See it here: http://www.firemywebdesigner.com/sr/index.php?id=e1453 (How do I remove "3, 6, 10, 13?") I don't know if I've overlooked something, Please help! Kyle Share this post Link to post Share on other sites
Arindam Report post Posted August 28, 2008 (edited) Hi, Could you please use showYAxisValues='0' i.e <chart showYAxisValues='0' > Edited August 28, 2008 by Guest Share this post Link to post Share on other sites
kjgraham Report post Posted September 4, 2008 Hi, thanks for the fast response! I added your suggestion and I still am not having success. Here's my php code for generating the chart on this page (replace the ['s with <'s, it was the only way to get it to show) http://www.firemywebdesigner.com/sr/index.php?id=e1453 I simply want to remove the 3 6 10 13 Thanks //Create an XML data document in a string variable $strXML = ""; $strXML .= "[graph caption='' xAxisName='' yAxisName='Today' decimalPrecision='0' formatNumberScale='0' canvasBgAlpha='0' canvasBorderThickness='0' canvasBorderColor='FFFFFF' showBarShadow='0' showhovercap='0' chartLeftMargin='0' chartRightMargin='11' chartTopMargin='0' chartBottomMargin='0' showLimits='0' showValues='1' showNames='1' showYAxisValues='0']"; $strXML .= "[set name='' value='12' color='ffcd0e' /]"; $strXML .= "[set name='' value='13' color='3cde2b' /]"; $strXML .= "[set name='' value='14' color='e52626s' /]"; $strXML .= "[set name='' value='15' color='0000ff' /]"; $strXML .= "[/graph]"; //Create the chart - Column 3D Chart with data from strXML variable using dataXML method echo renderChartHTML("FusionCharts/FCF_Bar2D.swf", "", $strXML, "myNext", 160, 75); Share this post Link to post Share on other sites
Arindam Report post Posted September 5, 2008 Hi, you are using Free version of fusion charts. so please use showDivLineValue='0' i.e <graph caption='' xAxisName='' yAxisName='Today' decimalPrecision='0' formatNumberScale='0' canvasBgAlpha='0' canvasBorderThickness='0' canvasBorderColor='FFFFFF' showBarShadow='0' showhovercap='0' chartLeftMargin='0' chartRightMargin='11' chartTopMargin='0' chartBottomMargin='0' showLimits='0' showValues='1' showNames='0' showDivLineValue='0' > Share this post Link to post Share on other sites
kjgraham Report post Posted September 15, 2008 Thank you so much!!! Share this post Link to post Share on other sites