Sign in to follow this  
trojnfn

Stacked bar charts

Recommended Posts

I currently use ColdFusion and StackedColumn3D.swf to produce a stacked chart. The top bar shows total qty coming in and the bottom bar shows total qty going out, per month.

Here is part of the code I am using looks something like this :

<dataset seriesname = "Total Qty In">

<dataset seriesname = "Total Qty Out">

<cfloop query="qryName">

<category name="#month#">

<set value="#qyIN#">

<set value="#qtyOut#">

</cfloop>

<cfoutput>#renderChart("http://#cgi.SERVER_NAME#/Fusion/Charts/StackedColumn3D.swf", "", strXML, "chartID", 760, 600, false, false)#</cfoutput>

</cfoutput>

So far, this works, because I only use one query. However, I now need to use two queries, one to get the total qty coming in and the other to get the total qty going out.

Using two queries, how can still produce the stacked bar chart ?

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this