Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I make charts with CF?

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I need to generate some charts on our corporate intranet with CF,, the data is in our MS SQL Server. Anyone got a clue on how I can do this??

-Mike
 
Try HanengCharts. You can find it at I use it for all my projects, have included some sample CF code for you to use:

Code:
<CFQUERY NAME=&quot;Sales&quot; DATASOURCE=&quot;HanengCharts&quot;>
SELECT * FROM Chart
</CFQUERY>
<HTML>
<BODY>
<CENTER>
<APPLET CODE=&quot;HanengCharts_PRO_1.class&quot; WIDTH=460 HEIGHT=260 ALIGN=top>

<CFLOOP QUERY=&quot;Sales&quot;>
<CFOUTPUT>&quot;<</CFOUTPUT><CFOUTPUT>PARAM NAME=&quot;#ParameterName#&quot;  VALUE=&quot;#Value#&quot;</CFOUTPUT><CFOUTPUT>&quot;></CFOUTPUT>
</CFLOOP>

</APPLET>
</CENTER>
</BODY>
</HTML>

-JS
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top