I have started using Cfchart to output data. I have it all working, yet I want 
it to not display the value of the horizontal item:

Here is the page that I am testing:

http://forumsigs.com/dev/StatsData/top10.cfm

My code is as such:

<cfchart format="flash"
chartheight="300"
chartwidth="800"
showXGridlines="yes"
showYGridlines="yes" databackgroundcolor="##DDDDDD" showborder="yes"
font="Arial"
xaxistitle="Images"
yaxistitle="hits"
show3d="yes" >

<cfchartseries
type="bar"
seriesLabel="Image"
seriesColor="navy">
<cfloop query="qryImagedata">
<cfchartdata value="#hits#" item="#image#">
</cfloop>
</cfchartseries>
</cfchart>

As you can see, the chartdata item at the bottom is a long string, and it 
jumbles up the text. I would like to just not display it on the chart, and just 
have the xaxistitle="Images" showing at the bottom and not the 
"/users/xxx/xxx//xxx....
I am happy with just the mouseover displaying the name or value.

Anyway to strip that out of the chart?

Michael Tyler
http://www.forumsigs.com
Image Hosting Made Easy!

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221825
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to