Skip to content

Instantly share code, notes, and snippets.

@adamcameron
Created July 31, 2012 20:09
Show Gist options
  • Select an option

  • Save adamcameron/3220077 to your computer and use it in GitHub Desktop.

Select an option

Save adamcameron/3220077 to your computer and use it in GitHub Desktop.
A CFCHART showing some medals, and that CF "phones home" (indeed, not even its own home!) when saving to PDF (http://bit.ly/N9cH2K)
<!--- medalsChart.cfm --->
<cfchart chartheight="400" chartwidth="400" title="Medals at the Olympics @ 2/8/2012" format="html" seriesplacement="stacked">
<cfchartseries label="Bronze" type="bar" seriescolor="8C7853">
<cfchartdata item="NZ" value="2">
<cfchartdata item="GB" value="4">
<cfchartdata item="USA" value="10">
</cfchartseries>
<cfchartseries label="Silver" type="bar" seriescolor="E6E8FA">
<cfchartdata item="NZ" value="0">
<cfchartdata item="GB" value="6">
<cfchartdata item="USA" value="9">
</cfchartseries>
<cfchartseries label="Gold" type="bar" seriescolor="CD7F32">
<cfchartdata item="NZ" value="1">
<cfchartdata item="GB" value="5">
<cfchartdata item="USA" value="18">
</cfchartseries>
</cfchart>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment