Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trycf/09d2627daa2430600db02eaa15f8f763 to your computer and use it in GitHub Desktop.
Save trycf/09d2627daa2430600db02eaa15f8f763 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfchart format="jpg" title="Sales Report" name="output">
<cfchartseries type="pie">
<cfchartdata item="2012" value="#RandRange(300000,900000)#">
<cfchartdata item="2013" value="#RandRange(300000,900000)#">
<cfchartdata item="2014" value="#RandRange(300000,900000)#">
<cfchartdata item="2015" value="#RandRange(300000,900000)#">
</cfchartseries>
</cfchart>
<cfscript>
imageWriteToBrowser(output);
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment