root/trunk/website/soundings/admin/stats_mc.cfm @ 5

Revision 5, 0.6 kB (checked in by DanWilson, 17 years ago)

Initial Commit Of ModelGlue? Website (upgrade to blogcfc 511)

Line 
1<!---
2        Name         : C:\projects\soundings\wwwroot\soundings\admin\stats_mc.cfm
3        Author       : Raymond Camden
4        Created      : 03/02/06
5        Last Updated :
6        History      :
7--->
8
9<cfchart format="flash" chartWidth="575" chartHeight="575"
10                 rotated="yes" gridlines="#max+1#" style="style.xml">
11        <cfchartseries type="bar" paintStyle="raise" seriesColor="#currentColor#">
12                <cfif structKeyExists(data,"other")>
13                        <cfchartdata item="Other" value="#data.other#">
14                </cfif>
15                <cfloop query="answers">
16                        <cfchartdata item="#answer#" value="#data[id]#">
17                </cfloop>
18        </cfchartseries>
19        <cfset currentColorIndex = currentColorIndex + 1>
20</cfchart>
Note: See TracBrowser for help on using the browser.