> 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:327472
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to