Mark_Exact Report post Posted March 23, 2010 I'd like to adjust the height of my chart and have it re-render based on the new height. I've put in code to adjust the height and the height changes, but when it re-renders it renders as if the height was still the original. Thus, I may change the height from 300 to 150 but the chart renders as if 300 so it is cut off at the 150. Share this post Link to post Share on other sites
shamasis Report post Posted March 29, 2010 Greetings, How are you dynamically adjusting the height of the chart using FusionCharts DOM? Share this post Link to post Share on other sites
Mark_Exact Report post Posted April 1, 2010 I had to make a mod to the DOM, but I finally made it work. I added an event, OnGetHeight="MyHeightFunc" to the chart declaration. Then added this to the DOM in method _FCD.processTag = function(a) if ((b.ongetheight) && (b.ongetheight != '')) { var ongetheighteval = 'b.height =' + b.ongetheight; eval(ongetheighteval); } MyHeightFunc varies depending which page I am on. Share this post Link to post Share on other sites
Guest Basundhara Ghosal Report post Posted April 1, 2010 Hi Mark, We are glad that your issue is resolved. Thanks for sharing the idea. Happy FusionCharting. Share this post Link to post Share on other sites