kjgraham

Members
  • Content count

    3
  • Joined

  • Last visited

About kjgraham

  • Rank
    Forum Newbie
  1. HELP!! How do I remove the X-Axis Numbers?

    Thank you so much!!!
  2. HELP!! How do I remove the X-Axis Numbers?

    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);
  3. 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