私はpieChartにデータを表示しようとしています。私のdataprovide(例:EmployeeA、EmployeeB..etc)に複数のフィールドがある場合、すべてがうまくいきます。パイは分割され、各部分にテキストが表示されます。Flash Builder:PieChartの問題
ただし、私のデータプロバイダには1つのフィールドしかない(例: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