0
當我雙擊圖表上,我想改變的dataProvider數據提供程序:的Flex更改圖表
public function myListener(e:ChartItemEvent):void {
mainDataProvider = e.hitData.item.costsByNature;
pieSeries.nameField="natureLabel";
pieSeries.field="amount";
}
當我執行,我得到一個錯誤: 量屬性未在ProjectDTO發現沒有默認值。
以前的dataProvider是一個arrayCollection,其元素類型爲:ProjectDTO 但我想將其更改爲元素類型爲CostByNatureDTO的arrayCollection。
CostByNatureDTO擁有量作爲一個屬性
我該怎麼解決?
Plz,誰有解決方案? – junior