0
我想在我的pieChart中顯示數據。如果我在我的數據提供中有多個字段(例如:EmployeeA,EmployeeB..etc),一切都很好。餡餅將被分成幾塊,並在每塊上顯示文字。Flash Builder:PieChart問題
但是,如果我的數據提供者只有一個字段(例如:EmployeeA)。 pieChart將顯示pieChart上沒有文本的整個餅圖。我想知道是否有任何方法在pieChart中顯示數據文本。非常感謝。
代碼:
<mx:PieChart id="piechart1" x="254" y="321" width="367" height="367"
dataProvider="{getHours.lastResult}">
<mx:series>
<mx:PieSeries id="pieSeries" labelFunction="pieFunction"
explodeRadius="0.05" field="EmployeeOverTime" labelPosition="inside"/>
</mx:series>
</mx:PieChart>
//EmployeeOverTime data will show on each pie pieces if I have multiple
//employees in the department but won't show if the department has only one employee.
ty克林特,我試過你的方法,但仍然沒有運氣。任何其他方式你可以想到的? +1雖然 – Rouge
看起來像PieSeries代碼中的錯誤......製作補丁。 – Clintm
非常感謝。 :d – Rouge