Hi,
I am using <cfchart> in cf9 and am having an issue with the #itemlabel# value.
here is my code/
<cfchart chartheight="240"
chartwidth="220"
yaxistitle="employees"
url="#myFusebox.getMyself()##xfa.orgDetail#&org=#itemlabel# ">
<cfchartseries type="pie"
query="getOrgCnt"
valuecolumn="orgcnt"
itemcolumn="org" >
</cfchart>
fusebox is 5.5
My problem is that there is no value being passed to #itemlabel#.
If I run the page with the code above I get "itemlabel is not defined" error
If i use cfparam to define itemlabel it takes whatever default value i set and not the value of the data point.
am I missing something?
TIA
J