Adobe 38043740 - ColdFusion Standard - Mac Development Manual page 1062

Developing applications
Hide thumbs Also See for 38043740 - ColdFusion Standard - Mac:
Table of Contents

Advertisement

DEVELOPING COLDFUSION 9 APPLICATIONS
Working with Documents, Charts, and Reports
<!--- The following code generates the third slide in the presentation, which contains a
pie chart with data extracted from the initial database query. ColdFusion runs the video
defined in the cfpresentationslide tag in place of the presenter image defined in the
cfpresenter tag. --->
<cfpresentationslide title="Total Artwork Sold" presenter="Aiden"
duration="5" video="video1.flv">
<h3>Total Sales</h3>
<cfchart format="jpg" chartwidth="500" show3d="yes">
<cfchartseries type="pie" query="artwork"
</cfchart>
</cfpresentationslide>
<!--- The following code generates the fourth slide in the presentation with
data extracted from the query of queries. --->
<cfpresentationslide title="Sales by Artist" presenter="Paul"
duration="5" audio="myAudio3.mp3">
<h3>Total Sales by Artist</h3>
<table border cellspacing=10 cellpadding=0>
<TR>
<TD>
<table border cellspacing=0 cellpadding=5>
<tr>
</tr>
<tr>
<cfoutput query="artistname">
<td>#FULLNAME#</td>
<td>#dollarFormat(totalSale)#</td>
</tr>
</cfoutput>
</table>
</td>
<td>
<cfchart format="jpg" xaxistitle="Artist" yaxistitle="Total Sales"
</cfchart>
</td>
</tr>
</table>
</cfpresentationslide>
<!--- The following code defines the final slide in the presentation. This slide does not
have a presenter assigned to it. --->
<cfpresentationslide title="Conclusion" duration="1" notes="Special thanks to Lori and
Jeff for contributing their art and expertise.">
<h1>Great Job Team!</h1>
<p><img src="../cfdocs/images/artgallery/paul05.jpg"></p>
</cfpresentationslide>
</cfpresentation>
colorlist="##00FFFF,##FF00FF" itemcolumn="issold"
valuecolumn="price"/>
<th>Artist Name</th>
<th>Total Sales</th>
chartwidth="400">
<cfchartseries type="bar" query="artistname"
itemcolumn="fullname" valuecolumn="totalSale"/>
Last updated 1/20/2012
1057

Advertisement

Table of Contents
loading

This manual is also suitable for:

Coldfusion 9

Table of Contents