If I understand you correct, you've a column with 24 values that you want to 
use as a source to plot your data points on the chart. If so, use 
ListGetAt(list,index, delimiters) function to get the individual values from 
the list.

<cfset colList1 = "#<<query_name>>.<<Column_Name>>#">
<cfchart>
        <cfchartseries type="bar">
                <cfloop from="1" to="#Listlen(colList1)#" index="x">
                        <cfchartdata item="#x#"
value="#ListGetAt(colList1,x)#">
                 </cfloop>
        </cfchartseries>
</cfchart>

If this is not what you are looking for, please give additional details.

Regards,
Vamsee

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Purchase Dreamweaver with Homesite Plus from House of Fusion, a Macromedia 
Authorized Affiliate and support the CF community.
http://www.houseoffusion.com/banners/view.cfm?bannerid=54

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

Reply via email to