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