It won't take it like this.
Main Topics
Browse All TopicsI am new to the charting function in CF. This example works but I want to pull the data, not have to enter it into each value. When I put the field in #field# syntax it bombs.
Any help is appreciated.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I found the solution but you were close so I will send the points. Here is what I found.
<cfchart format="flash"
show3d="false"
chartwidth="400"
chartheight="400"
pieslicestyle="sliced"
title="The Title you want">
<cfchartseries type="pie">
<cfloop query="qryData">
<cfchartdata item="Label1" value="#FieldName1#">
<cfchartdata item="Label2" value="#FieldName2#">
<cfchartdata item="Label3" value="#FieldName3#">
</cfloop>
</cfchartseries>
</cfchart>
Business Accounts
Answer for Membership
by: Mr_NilPosted on 2009-09-02 at 05:55:35ID: 25240453
Can you attach the code that doesn't work please?