> I have a query that returns a single row of summary info:
> YTD sales, MTD sates, forcastMTD, forcastYTD, and so forth. Anyone 
> know how i can represent data in a cfgraph using these kind of values?.
> 

I'm doin the exact same thing with a bar chart. You have to manually plot the 
chart with chartdata items. Here's my code. 

<cfchart format="flash" yaxistitle="Percentage" xaxistitle="Answer" 
databackgroundcolor="##EEEEEE" backgroundcolor="##EEEEEE" chartheight="150" 
chartwidth="320" show3d="yes">
          <cfchartseries type="bar">
            <cfchartdata item="SA" value="#PTA#">
                <cfchartdata item="A" value="#PTB#">
                <cfchartdata item="N" value="#PTC#">
                <cfchartdata item="D" value="#PTD#">
                <cfchartdata item="SD" value="#PTE#">
          </cfchartseries>
        </cfchart>

Will

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:244366
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to