Hello, with ColdFusion 8 this code produces duplicate stacked bars. The two chartseries are required to produce the stacked affect. One bar stack is labeled "Programs" and the second is labeled "Enrolled Programs". They are identical and both contain the data I wish to display so obviously I only want one of them. Suggestions? Thanks.
<cfchart format="flash" showlegend="yes"
chartheight="350"
chartwidth="350"
showxgridlines="no"
showygridlines="no"
showborder="no"
fontsize="12"
fontbold="no"
fontitalic="no"
xaxistitle=""
yaxistitle="Count"
show3d="yes"
rotated="no"
sortxaxis="no"
showmarkers="yes" seriesplacement="stacked">
<cfchartseries type="bar" query="qAllProgramsCount" seriescolor="blue" itemcolumn="title" valuecolumn="prgCount" serieslabel="Programs" >
<cfchartseries type="bar" query="qEnrolled" seriescolor="red" itemcolumn="title" valuecolumn="prgCount" serieslabel="Enrolled Programs" >
</cfchart>