Sign in to follow this  
kjgraham

HELP!! How do I remove the X-Axis Numbers?

Recommended Posts

Hi, thanks for the fast response! :blink:

 

 

 

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

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this