Link to home
Start Free TrialLog in
Avatar of theideabulb
theideabulbFlag for United States of America

asked on

CFChart auto adjust width?

I am trying to use cfchart in CF10.  I have no problems creating the chart I need, but I need to be able to have it adjust with my page based on width.  It does not allow me to put width=100%.  Does anyone have suggestions on how to get the chart to be more of a dynamic width?
ASKER CERTIFIED SOLUTION
Avatar of dgrafx
dgrafx
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
CF 10 has shifted to ZINGCHART , you can use this builder http://www.zingchart.com/builder/ to get the JSON created for your charts.

Earlier version of CF (9,8..) used Webcharts3D, in which you could specify the XML style to say,

<?xml version="1.0" encoding="UTF-8"?>
<frameChart autoAdjust="true" is3D="false">
</frameChart>

-B