Leigh, Thanks. We were on the same track, though I was slower. :)
I used the chart utility tool (c:\coldfusion8\lib\wc50.jar) to test out a few things till I came to the same place you suggested: <frame primaryYAxisPlacement="Right"/> Thanks again -- Michael Dinowitz On Wed, Oct 21, 2009 at 4:59 PM, Leigh <[email protected]> wrote: > >> ColdFusion MX used to have an attribute called rotate which >> would rotate a chart by 90 degrees. > > Try using a custom style. A quick test of the primaryYAxisPlacement attribute > seems to achieve the rotate effect. > > <cfsavecontent variable="style"> > <?xml version="1.0" encoding="UTF-8"?> > <frameChart> > <frame xDepth="12" yDepth="11" primaryYAxisPlacement="Right"/> > </frameChart> > </cfsavecontent> > <cfchart style="#style#"> > <cfchartseries type="bar"> > <cfchartdata item="ICD9" value="5.5"> > <cfchartdata item="ICD950" value="39.5"> > </cfchartseries> > </cfchart> > > -Leigh > > > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327480 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

