I think this error is unrelated to your original question. Are you setting the parseFunction of your axis? Can you show us that code? -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com
-----Original Message----- From: netdeep <[EMAIL PROTECTED]> Reply-To: [email protected] To: [email protected] Subject: [flexcoders] Re: appending to a dataprovider in actionscript Date: Fri, 21 Nov 2008 17:38:48 -0000 The code for the event listener is pretty much what was suggested previously: private function updateHandler(event:CollectionEvent):void { Alert.show(" updated"); } BindingUtils.bindProperty(lineSeries, "dataProvider", ser, "pointList"); // assignement to pointList which is the dataprovider ser.pointList.addEventListener(CollectionEvent.COLLECTION_CHANGE,updateHandler);

