cfchart

Error #03091550

Recommended Posts

I am getting error #03091550 (Invalid event type specified to the parameter of removeEventListener() function. Refer to Event API reference for valid event names.) when using the following code for an event listener.

 

myChart.addEventListener ("Rendered" , setTimeout( function() { myEventListener( myParam1, myParam2 ); }, 2000) );

 

This worked in FusionCharts 3.1, but not in 3.2. Any ideas?

Share this post


Link to post
Share on other sites

Fixed.

 

myChart.addEventListener ("Rendered" , function(){		
	myListener( myParam1, myParam2);
});

 

It didn't like the setTimeout. No biggie. Handled it differently.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now