Hi there,
Your question is a little vague; concerning the use-case. But, this
might help get you moving in the right direction:
import mx.charts.events.ChartItemEvent;
private function selectItem(e:ChartItemEvent) : void
{
myTextArea.text = e.hitData.item.myField.toString();
}
<mx:ColumnChart itemClick="selectItem(event)">
-TH
--- In [email protected], "mousikos2001" <[EMAIL PROTECTED]>
wrote:
>
> Hi all,
>
> I have a column chart and i want to access the columns values in order
> to display them in a textarea. How can i do this?
>
> Thanks in advance.
>