Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<CFQUERY name="chartdata" ...>
SELECT ...
</CFQUERY>
<cfset oneunit = 10>
<table border="0" cellspacing="4">
<tr>
<CFOUTPUT query="chartdata">
<cfset barHeight = Ceiling(chartdata.columnwhatever * oneunit)>
<td valign="bottom"><IMG SRC="chartbar.gif" width="#oneunit#" height="#barHeight#" border="0" alt="#chartdata.columnwhatever#" /></td>
</CFOUTPUT>
</tr>
</table>