jlewis

Members
  • Content count

    1
  • Joined

  • Last visited

About jlewis

  • Rank
    Forum Newbie
  1. The issue, while upgrading from FusionCharts v3.0 to v3.2: I have several charts on a page, each using JavaScript in the link='' parameter to execute some code. Not all of the graphs use the same arguments, so I made the argument an object to keep it simple. The function is called successfully when the charts are rendered in Flash, but in the JavaScript fall-back, the function isn't even called at all. sample: ... <set color='00FF00' value='4' toolText='933' showValue='0' link="JavaScript:showDrillDown({task:'default',pattern:'933'});" /> ... ... function showDrillDown(obj) { alert("task: " + obj.task + " pattern: " + obj.pattern); // do stuff } ... I have tried passing strings and numbers, this works; as soon as you switch to an object if fails. Is it odd that it works for Flash but not in the JavaScript fallback? Discovered during an upgrade from V3.0, any suggestions or solutions very welcome. Thanks, ~ Josh