Actually that just creates a line chart that connects A -> B with a horizontal line. What I'm trying to do is create a vertical line that simply connects 40-50-60 along A. So A and B along the X axis would have nothing connecting them. I added a "wanted" image to better illustrate what I am hoping to find at http://test.g3.com/andrew/cfm/hof_test.cfm
Thanks again! Andrew >Sure, just duplicate your series as type line, as follows: ><cfchart format="jpg" scaleto="70"> > <cfchartseries type="scatter" datalabelstyle="none"> > <cfchartdata item="A" value="50"> > <cfchartdata item="B" value="25"> > </cfchartseries> > <cfchartseries type="scatter"> > <cfchartdata item="A" value="60"> > <cfchartdata item="B" value="35"> > </cfchartseries> > <cfchartseries type="scatter"> > <cfchartdata item="A" value="40"> > <cfchartdata item="B" value="15"> > </cfchartseries> > <cfchartseries type="line" datalabelstyle="none"> > <cfchartdata item="A" value="50"> > <cfchartdata item="B" value="25"> > </cfchartseries> > <cfchartseries type="line"> > <cfchartdata item="A" value="60"> > <cfchartdata item="B" value="35"> > </cfchartseries> > <cfchartseries type="line"> > <cfchartdata item="A" value="40"> > <cfchartdata item="B" value="15"> > </cfchartseries> ></cfchart> > >Rob > >On Tue, Oct 21, 2008 at 3:28 PM, Andrew Tegenkamp <[EMAIL PROTECTED]>wrote: > >> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314199 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

