[flexcoders] Re: creating line chart using action script

2006-11-29 Thread troy.kakulupia
You may new a linechart firstly. var lineChart:LineChart = new LineChart(); set the properties here; this.addChild(lineChart); --- In flexcoders@yahoogroups.com, arpan srivastava <[EMAIL PROTECTED]> wrote: > > Hi , > I need to draw a linechart using only actionscript. I have done followin

[flexcoders] Re: rotation of vertical axis title

2006-11-29 Thread troy.kakulupia
Hi, I also met the same requirment. unfortunately, the answer is no. And I use the another way to instead: 1 set show vertical axis title to "false" 2 create a HBox containing both a TextField and the chart 3 set the position of the drawing TextField to vertical 4 refine the position. Anyone who

[flexcoders] Re: displaying an array result as a pop up dialog

2006-11-29 Thread troy.kakulupia
Hi, your can try popupManager sample code lists below: import mx.managers.PopUpManager; > public function onSendResult(result:Array):void{ > var str:String = result.toString(); > string_res.htmlText

[flexcoders] Re: Firing an event when clicking on a DataGridColumn

2006-11-28 Thread troy.kakulupia
Hi, the dropdown of dataGrid is ListBase, so you can easily add itemclick event just as below: private function onInit():void{ var myDataGrid:DataGrid = new DataGrid; myDataGrid.addEventListener(mx.events.ListEvent.ITEM_CLICK, onItemClick); } private function onItemClick(event:List