I'm using (at least attempting to) a stacked rotated bar graph (now in CFMX7,
horizontalbar) with multiple cfchartseries to display a single segmented bar
with different series colors for each segment. This worked in CFMX 6.1 for
chartseries type="bar", but in CFMX7, works for neither type "bar" nor
"horizontalbar". With format="flash", it just draws an empty graph; with
show3d="yes", I do see that it just draws what could be described as a bar of
zero height (or width). With format="jpg" or "png", it just blows up with an
unhandled exception (debugger info indicates "object instantiation error").
With 2 or more items in each chart series, every thing works fine. Here's 2
samples (1st one works, 2nd one doesn't):

<!--- WORKS FINE --->
<cfchart format = "flash"
seriesplacement = "stacked"
chartwidth = "200"
chartheight = "200"
showlegend = "no">

<cfchartseries type="bar" seriescolor="blue">
<cfchartdata item="A" value="5">
<cfchartdata item="B" value="27">
</cfchartseries>
<cfchartseries type="bar" seriescolor="green">
<cfchartdata item="A" value="10">
<cfchartdata item="B" value="40">
</cfchartseries>
<cfchartseries type="bar" seriescolor="red">
<cfchartdata item="A" value="85">
<cfchartdata item="B" value="33">
</cfchartseries>

</cfchart>


<!---- DOESN"T WORK in CFMX 7 --->
<cfchart format = "flash"
seriesplacement = "stacked"
chartwidth = "200"
chartheight = "200"
showlegend = "no">

<cfchartseries type="bar" seriescolor="blue">
<cfchartdata item="A" value="5">
</cfchartseries>
<cfchartseries type="bar" seriescolor="green">
<cfchartdata item="A" value="10">
</cfchartseries>
<cfchartseries type="bar" seriescolor="red">
<cfchartdata item="A" value="85">
</cfchartseries>

</cfchart>

-------
Any Ideas? Thanks in advance for any help on this.
Kevin