You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Flex India Community
Dear All,
I am using Pie chart for company sales info and XMLList as a data provider . Clicking on Pie chart slice I am using the the below code to get the data Object . This looks bit odd to me . Is there any simple way like for combobox we use combobox.SelectedItem.Model . So like this is there any simple way to the selected part .Example XML data is provided below
private function pieChart_itemClick(evt:ChartItemEvent):void { var item:PieSeriesItem = evt.hitData.chartItem as PieSeriesItem; var xml:XML=evt.hitData.item as XML; graphPie.dataProvider=xml.Model;