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/bfaedaa9b2301dd5c8c60169eba7354f to your computer and use it in GitHub Desktop.
Save trycf/bfaedaa9b2301dd5c8c60169eba7354f to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
rsGraph16 = queryNew("range_des,perc", "int,int");
</cfscript>
<cfchart chartHeight = "250"
chartWidth = "670"
scaleFrom = "0"
scaleTo = "1"
showXGridlines = "no"
gridlines="11"
showYGridlines = "yes"
showBorder = "yes"
font = "arial"
fontSize = "11"
fontBold = "no"
fontItalic = "no"
labelFormat = "percent"
xAxisTitle = "ages"
yAxisTitle = "percentage"
show3D = "no">
<cfchartseries type="bar"
query="rsGraph16"
itemColumn="range_des"
valueColumn="perc"
seriesColor="##CC0000">
</cfchartseries>
</cfchart>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment