when I double click on a chart, I want to change the dataProvider:
public function myListener(e:ChartItemEvent):void {
mainDataProvider = e.hitData.item.costsByNature;
pieSeries.nameField="natureLabel";
pieSeries.field="amount";
}
When I execute, I get an error : amount property is not found on ProjectDTO and there is no default value.
The previous dataProvider was an arrayCollection with element s type: ProjectDTO but I want to change it to an arrayCollection with element's type CostByNatureDTO.
CostByNatureDTO has amount as a property
how can I resolve that?
